gitextract_jov9st3v/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── README.md ├── docs/ │ ├── .gitignore │ ├── Makefile │ ├── conf.py │ ├── configuration.md │ ├── contributing.md │ ├── create.md │ ├── help.md │ ├── index.md │ ├── localserver.md │ ├── other-commands.md │ ├── policy-documents.md │ └── requirements.txt ├── pyproject.toml ├── s3_credentials/ │ ├── __init__.py │ ├── cli.py │ ├── localserver.py │ └── policies.py └── tests/ ├── conftest.py ├── test_dry_run.py ├── test_integration.py ├── test_localserver.py └── test_s3_credentials.py