├── .codeclimate.yml ├── .github └── workflows │ ├── lint.yaml │ ├── release.yaml │ ├── test-suite-unreleased-django.yaml │ └── test-suite.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── collectfasta ├── __init__.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── collectstatic.py ├── py.typed ├── settings.py ├── strategies │ ├── __init__.py │ ├── azure.py │ ├── base.py │ ├── boto3.py │ ├── filesystem.py │ ├── gcloud.py │ └── hashing.py └── tests │ ├── __init__.py │ ├── command │ ├── __init__.py │ ├── test_command.py │ ├── test_disable.py │ ├── test_post_process.py │ └── utils.py │ ├── conftest.py │ ├── settings.py │ ├── strategies │ ├── __init__.py │ ├── test_caching_hash_strategy.py │ └── test_hash_strategy.py │ ├── test_settings.py │ └── utils.py ├── conftest.py ├── docker-compose.yml ├── localstack └── init.sh ├── manage.py ├── setup.cfg ├── setup.py └── test-requirements.txt /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test-suite-unreleased-django.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/.github/workflows/test-suite-unreleased-django.yaml -------------------------------------------------------------------------------- /.github/workflows/test-suite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/.github/workflows/test-suite.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/README.md -------------------------------------------------------------------------------- /collectfasta/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.3.1" 2 | -------------------------------------------------------------------------------- /collectfasta/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collectfasta/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collectfasta/management/commands/collectstatic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/collectfasta/management/commands/collectstatic.py -------------------------------------------------------------------------------- /collectfasta/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collectfasta/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/collectfasta/settings.py -------------------------------------------------------------------------------- /collectfasta/strategies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/collectfasta/strategies/__init__.py -------------------------------------------------------------------------------- /collectfasta/strategies/azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/collectfasta/strategies/azure.py -------------------------------------------------------------------------------- /collectfasta/strategies/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/collectfasta/strategies/base.py -------------------------------------------------------------------------------- /collectfasta/strategies/boto3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/collectfasta/strategies/boto3.py -------------------------------------------------------------------------------- /collectfasta/strategies/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/collectfasta/strategies/filesystem.py -------------------------------------------------------------------------------- /collectfasta/strategies/gcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/collectfasta/strategies/gcloud.py -------------------------------------------------------------------------------- /collectfasta/strategies/hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/collectfasta/strategies/hashing.py -------------------------------------------------------------------------------- /collectfasta/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collectfasta/tests/command/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collectfasta/tests/command/test_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/collectfasta/tests/command/test_command.py -------------------------------------------------------------------------------- /collectfasta/tests/command/test_disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/collectfasta/tests/command/test_disable.py -------------------------------------------------------------------------------- /collectfasta/tests/command/test_post_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/collectfasta/tests/command/test_post_process.py -------------------------------------------------------------------------------- /collectfasta/tests/command/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/collectfasta/tests/command/utils.py -------------------------------------------------------------------------------- /collectfasta/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/collectfasta/tests/conftest.py -------------------------------------------------------------------------------- /collectfasta/tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/collectfasta/tests/settings.py -------------------------------------------------------------------------------- /collectfasta/tests/strategies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collectfasta/tests/strategies/test_caching_hash_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/collectfasta/tests/strategies/test_caching_hash_strategy.py -------------------------------------------------------------------------------- /collectfasta/tests/strategies/test_hash_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/collectfasta/tests/strategies/test_hash_strategy.py -------------------------------------------------------------------------------- /collectfasta/tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/collectfasta/tests/test_settings.py -------------------------------------------------------------------------------- /collectfasta/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/collectfasta/tests/utils.py -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/conftest.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /localstack/init.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | awslocal s3 mb s3://collectfasta 3 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/manage.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasongi/collectfasta/HEAD/test-requirements.txt --------------------------------------------------------------------------------