gitextract_w5t8afxl/ ├── .all-contributorsrc ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ ├── feature_request.md │ │ └── question.md │ ├── dependabot.yml │ ├── pull_request_template.md │ ├── scripts/ │ │ └── check_pr_title.py │ └── workflows/ │ ├── check-gitignored-files.yml │ ├── create-github-release.yaml │ ├── github-ci.yaml │ ├── publish-to-pypi.yaml │ ├── release.yaml │ └── title-check.yml ├── .gitignore ├── .gitmodules ├── .isort.cfg ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .typos.toml ├── CHANGELOG.md ├── CONTRIBUTORS.md ├── LICENSE ├── Makefile ├── README.md ├── dependabot.yml ├── docs/ │ ├── Makefile │ ├── conf.py │ ├── dev/ │ │ ├── intro.md │ │ └── testing.md │ ├── index.rst │ ├── make.bat │ ├── meta/ │ │ └── project-governance.md │ └── user/ │ ├── installation.md │ ├── subcommand-2-up.md │ ├── subcommand-booklet.md │ ├── subcommand-cat.md │ ├── subcommand-check-sign.md │ ├── subcommand-compress.md │ ├── subcommand-extract-annotated-pages.md │ ├── subcommand-extract-images.md │ ├── subcommand-extract-text.md │ ├── subcommand-meta.md │ ├── subcommand-pagemeta.md │ ├── subcommand-rm.md │ ├── subcommand-rotate.md │ ├── subcommand-sign.md │ ├── subcommand-uncompress.md │ ├── subcommand-update-offsets.md │ └── subcommand-x2pdf.md ├── make_release.py ├── mypy.ini ├── pdfly/ │ ├── __init__.py │ ├── __main__.py │ ├── _utils.py │ ├── _version.py │ ├── booklet.py │ ├── cat.py │ ├── check_sign.py │ ├── cli.py │ ├── compress.py │ ├── extract_annotated_pages.py │ ├── extract_images.py │ ├── metadata.py │ ├── pagemeta.py │ ├── rm.py │ ├── rotate.py │ ├── sign.py │ ├── uncompress.py │ ├── up2.py │ ├── update_offsets.py │ └── x2pdf.py ├── pylock.toml ├── pyproject.toml ├── renovate.json ├── resources/ │ ├── demo2_ca.root.crt.pem │ ├── signing-certificate.crt │ └── signing-certificate.p12 ├── setup.cfg ├── setup.py └── tests/ ├── __init__.py ├── conftest.py ├── test_booklet.py ├── test_cat.py ├── test_check_sign.py ├── test_cli.py ├── test_compress.py ├── test_extract_annotated_pages.py ├── test_extract_images.py ├── test_pagemeta.py ├── test_rm.py ├── test_rotate.py ├── test_sign.py ├── test_uncompress.py ├── test_up2.py ├── test_update_offsets.py └── test_x2pdf.py