Pagonic is an alpha Python ZIP toolkit focused on safe archive inspection, secure extraction, and repeatable local benchmarking. Its main idea is simple:
Inspect before you extract.
- A core library for inspecting, writing, reading, and validating ZIP archives.
- A
pagoniccommand-line interface for inspect, verify, safe extract, and ZIP utilities. - An optional PyQt6 GUI launched with
pagonic-gui.
This repository is currently prepared as an alpha-stage, test-backed public release. The import package remains Pagonic for compatibility; the distribution name is pagonic. No PyPI or TestPyPI package is published for this release; install from a local checkout.
Pagonic started more than a year ago as one of my earliest software-learning projects. Its first direction was much broader and more experimental: a ZIP/archive engine with compression, extraction, GUI ideas, benchmarking, and performance experiments.
After many iterations, I revised the project direction and narrowed the public scope into something clearer:
Pagonic is not trying to be another desktop archive manager. It is becoming a security-aware ZIP inspection and safe extraction toolkit.
This v0.3.0 release is the first cleaned-up public version of that new direction. It keeps the useful ZIP core, CLI, tests, and safety work, while moving the product message toward inspecting archives before extraction, reporting risk signals, and supporting safer automation workflows.
Pagonic is still evolving, but its purpose is now clearer: inspect first, extract safely.
No PyPI or TestPyPI package is published for this release, so install from a local checkout after cloning the repository.
For CLI-only use from a local checkout:
python -m pip install .For local development:
python -m pip install -e .[dev,gui]For CLI-only development with test dependencies:
python -m pip install -e .[dev]The GUI is optional. If PyQt6 is not installed, pagonic-gui exits with a clear install message.
pagonic --help
pagonic inspect suspicious.zip
pagonic inspect suspicious.zip --json
pagonic inspect suspicious.zip --markdown
pagonic verify release.zip
pagonic verify release.zip --max-risk medium
pagonic safe-extract upload.zip output/
pagonic safe-extract upload.zip output/ --dry-run
pagonic list archive.zip --tree
pagonic compress path/to/file.txt -o archive.zip
pagonic config listUse inspect before extraction for untrusted ZIP files. safe-extract applies
the inspection gate before writing files, supports --dry-run, and refuses ZIP
entries that use unsupported compression methods.
from Pagonic.core.formats.zip_writer import ZipWriter
from Pagonic.core.formats.zip_reader import ZipReader
writer = ZipWriter("archive.zip", compression_level=6)
writer.add_file("file.txt")
writer.finalize()
reader = ZipReader("archive.zip")
report = reader.inspect()
if report.risk_level in {"ok", "low"}:
reader.extract_all("output")Pagonic/ Python package
tests/ pytest suite
docs/ public documentation
examples/ small runnable examples
pyproject.toml package metadata and tool config
Inspection reports are deterministic and do not use runtime AI. Current risk flags include:
| Flag | Severity | Meaning |
|---|---|---|
path_traversal |
high |
Entry contains .. path segments. |
absolute_path |
high |
Entry uses a POSIX absolute path. |
windows_drive_path |
high |
Entry looks like a Windows drive path. |
hidden_file |
low |
Entry basename starts with .. |
empty_filename |
medium |
Entry cannot be mapped to a useful safe path. |
too_many_files |
high |
Archive exceeds the configured file-count limit. |
large_uncompressed_size |
high |
Archive exceeds the configured uncompressed-size limit. |
high_compression_ratio |
high |
Entry expands much more than its compressed size. |
unsupported_compression_method |
medium |
Entry uses a ZIP method Pagonic does not currently support; safe-extract refuses it. |
crc_or_structure_error |
critical |
ZIP structure or CRC validation failed. |
suspicious_extension |
medium |
Entry has an executable or script-like extension. |
pagonic inspect --json emits a stable alpha report with archive totals,
overall risk_level, top-level risk_flags, recommended_action, and per-entry
metadata. pagonic inspect --markdown renders the same inspection as a saved
human-readable report.
The current public release is 0.3.0: an alpha-stage, test-backed release with
security-aware ZIP inspection, gated safe extraction, core ZIP behavior, CLI
support, optional GUI packaging, MIT license, and CI-ready tests.
Pagonic is not intended for production-critical automation yet and is not positioned as a general multi-format desktop archive manager. The next work is stabilization, API polish, documentation tightening, and improving the Safe ZIP Inspector direction.