stouputils.archive.cli module#

archive_cli() None[source]#

Main entry point for command line usage.

Examples:

# Repair a corrupted zip file
python -m stouputils.archive repair /path/to/corrupted.zip /path/to/repaired.zip

# Create a zip archive
python -m stouputils.archive make /path/to/source /path/to/destination.zip

# Create a zip archive with ignore patterns
python -m stouputils.archive make /path/to/source /path/to/destination.zip --ignore "*.pyc,__pycache__"