├── .github └── workflows │ └── test-suite.yml ├── .gitignore ├── AUTHORS ├── ChangeLog ├── LICENSE ├── MANIFEST.in ├── README.md ├── automated_test.py ├── cloudfiles ├── __init__.py ├── cloudfiles.py ├── compression.py ├── connectionpools.py ├── exceptions.py ├── gcs.py ├── interfaces.py ├── lib.py ├── monitoring.py ├── paths.py ├── resumable_tools.py ├── scheduler.py ├── secrets.py ├── threaded_queue.py └── typing.py ├── cloudfiles_cli ├── LICENSE ├── __init__.py └── cloudfiles_cli.py ├── requirements.txt ├── setup.cfg └── setup.py /.github/workflows/test-suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/.github/workflows/test-suite.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/AUTHORS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/README.md -------------------------------------------------------------------------------- /automated_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/automated_test.py -------------------------------------------------------------------------------- /cloudfiles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/cloudfiles/__init__.py -------------------------------------------------------------------------------- /cloudfiles/cloudfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/cloudfiles/cloudfiles.py -------------------------------------------------------------------------------- /cloudfiles/compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/cloudfiles/compression.py -------------------------------------------------------------------------------- /cloudfiles/connectionpools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/cloudfiles/connectionpools.py -------------------------------------------------------------------------------- /cloudfiles/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/cloudfiles/exceptions.py -------------------------------------------------------------------------------- /cloudfiles/gcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/cloudfiles/gcs.py -------------------------------------------------------------------------------- /cloudfiles/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/cloudfiles/interfaces.py -------------------------------------------------------------------------------- /cloudfiles/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/cloudfiles/lib.py -------------------------------------------------------------------------------- /cloudfiles/monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/cloudfiles/monitoring.py -------------------------------------------------------------------------------- /cloudfiles/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/cloudfiles/paths.py -------------------------------------------------------------------------------- /cloudfiles/resumable_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/cloudfiles/resumable_tools.py -------------------------------------------------------------------------------- /cloudfiles/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/cloudfiles/scheduler.py -------------------------------------------------------------------------------- /cloudfiles/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/cloudfiles/secrets.py -------------------------------------------------------------------------------- /cloudfiles/threaded_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/cloudfiles/threaded_queue.py -------------------------------------------------------------------------------- /cloudfiles/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/cloudfiles/typing.py -------------------------------------------------------------------------------- /cloudfiles_cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/cloudfiles_cli/LICENSE -------------------------------------------------------------------------------- /cloudfiles_cli/__init__.py: -------------------------------------------------------------------------------- 1 | from .cloudfiles_cli import * -------------------------------------------------------------------------------- /cloudfiles_cli/cloudfiles_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/cloudfiles_cli/cloudfiles_cli.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seung-lab/cloud-files/HEAD/setup.py --------------------------------------------------------------------------------