├── .gitignore ├── .readthedocs.yml ├── .travis.yml ├── LICENSE ├── Makefile ├── README.rst ├── django_selectel_storage ├── __init__.py ├── apps.py ├── compat.py ├── exceptions.py ├── selectel.py ├── storage.py └── utils.py ├── docs ├── Makefile ├── source │ ├── changelog.rst │ ├── conf.py │ ├── configuration.rst │ ├── index.rst │ ├── install.rst │ └── introduction.rst └── usage.rst ├── poetry.lock ├── pyproject.toml ├── setup.cfg ├── setup.py └── tests ├── conftest.py ├── storage_api_methods ├── test_delete.py ├── test_exists.py ├── test_list_dir.py ├── test_open.py ├── test_save.py ├── test_size.py └── test_url.py ├── test_selectel.py └── test_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/README.rst -------------------------------------------------------------------------------- /django_selectel_storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/django_selectel_storage/__init__.py -------------------------------------------------------------------------------- /django_selectel_storage/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/django_selectel_storage/apps.py -------------------------------------------------------------------------------- /django_selectel_storage/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/django_selectel_storage/compat.py -------------------------------------------------------------------------------- /django_selectel_storage/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/django_selectel_storage/exceptions.py -------------------------------------------------------------------------------- /django_selectel_storage/selectel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/django_selectel_storage/selectel.py -------------------------------------------------------------------------------- /django_selectel_storage/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/django_selectel_storage/storage.py -------------------------------------------------------------------------------- /django_selectel_storage/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/django_selectel_storage/utils.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/docs/source/changelog.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/docs/source/configuration.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/docs/source/introduction.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/storage_api_methods/test_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/tests/storage_api_methods/test_delete.py -------------------------------------------------------------------------------- /tests/storage_api_methods/test_exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/tests/storage_api_methods/test_exists.py -------------------------------------------------------------------------------- /tests/storage_api_methods/test_list_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/tests/storage_api_methods/test_list_dir.py -------------------------------------------------------------------------------- /tests/storage_api_methods/test_open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/tests/storage_api_methods/test_open.py -------------------------------------------------------------------------------- /tests/storage_api_methods/test_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/tests/storage_api_methods/test_save.py -------------------------------------------------------------------------------- /tests/storage_api_methods/test_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/tests/storage_api_methods/test_size.py -------------------------------------------------------------------------------- /tests/storage_api_methods/test_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/tests/storage_api_methods/test_url.py -------------------------------------------------------------------------------- /tests/test_selectel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/tests/test_selectel.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marazmiki/django-selectel-storage/HEAD/tests/test_utils.py --------------------------------------------------------------------------------