├── .changes ├── 0.0.1.json ├── 0.1.0.json ├── 0.1.1.json ├── 0.1.10.json ├── 0.1.11.json ├── 0.1.12.json ├── 0.1.13.json ├── 0.1.2.json ├── 0.1.3.json ├── 0.1.4.json ├── 0.1.5.json ├── 0.1.6.json ├── 0.1.7.json ├── 0.1.8.json ├── 0.1.9.json ├── 0.10.0.json ├── 0.10.1.json ├── 0.10.2.json ├── 0.10.3.json ├── 0.10.4.json ├── 0.11.0.json ├── 0.11.1.json ├── 0.11.2.json ├── 0.11.3.json ├── 0.11.4.json ├── 0.11.5.json ├── 0.12.0.json ├── 0.13.0.json ├── 0.13.1.json ├── 0.14.0.json ├── 0.15.0.json ├── 0.16.0.json ├── 0.2.0.json ├── 0.2.1.json ├── 0.3.0.json ├── 0.3.1.json ├── 0.3.2.json ├── 0.3.3.json ├── 0.3.4.json ├── 0.3.5.json ├── 0.3.6.json ├── 0.3.7.json ├── 0.4.0.json ├── 0.4.1.json ├── 0.4.2.json ├── 0.5.0.json ├── 0.5.1.json ├── 0.5.2.json ├── 0.6.0.json ├── 0.6.1.json ├── 0.6.2.json ├── 0.7.0.json ├── 0.8.0.json ├── 0.8.1.json ├── 0.8.2.json └── 0.9.0.json ├── .coveragerc ├── .github ├── SECURITY.md ├── codeql.yml └── workflows │ ├── codeql.yml │ ├── fail-master-prs.yml │ ├── lint.yml │ ├── run-crt-test.yml │ └── run-tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── ACCEPTANCE_TESTS.rst ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE.txt ├── MANIFEST.in ├── NOTICE.txt ├── README.rst ├── pyproject.toml ├── requirements-dev-lock.txt ├── requirements-dev.txt ├── requirements.txt ├── s3transfer ├── __init__.py ├── bandwidth.py ├── compat.py ├── constants.py ├── copies.py ├── crt.py ├── delete.py ├── download.py ├── exceptions.py ├── futures.py ├── manager.py ├── processpool.py ├── subscribers.py ├── tasks.py ├── upload.py └── utils.py ├── scripts ├── ci │ ├── install │ ├── install-dev-deps │ ├── run-crt-tests │ ├── run-integ-tests │ └── run-tests ├── new-change ├── performance │ ├── benchmark │ ├── benchmark-download │ ├── benchmark-upload │ ├── download-file │ ├── processpool-download │ ├── summarize │ └── upload-file └── stress │ └── timeout ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── functional │ ├── __init__.py │ ├── test_copy.py │ ├── test_crt.py │ ├── test_delete.py │ ├── test_download.py │ ├── test_manager.py │ ├── test_processpool.py │ ├── test_upload.py │ └── test_utils.py ├── integration │ ├── __init__.py │ ├── test_copy.py │ ├── test_crt.py │ ├── test_delete.py │ ├── test_download.py │ ├── test_processpool.py │ ├── test_s3transfer.py │ └── test_upload.py └── unit │ ├── __init__.py │ ├── test_bandwidth.py │ ├── test_compat.py │ ├── test_copies.py │ ├── test_crt.py │ ├── test_delete.py │ ├── test_download.py │ ├── test_futures.py │ ├── test_manager.py │ ├── test_processpool.py │ ├── test_s3transfer.py │ ├── test_subscribers.py │ ├── test_tasks.py │ ├── test_upload.py │ └── test_utils.py └── tox.ini /.changes/0.0.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.0.1.json -------------------------------------------------------------------------------- /.changes/0.1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.1.0.json -------------------------------------------------------------------------------- /.changes/0.1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.1.1.json -------------------------------------------------------------------------------- /.changes/0.1.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.1.10.json -------------------------------------------------------------------------------- /.changes/0.1.11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.1.11.json -------------------------------------------------------------------------------- /.changes/0.1.12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.1.12.json -------------------------------------------------------------------------------- /.changes/0.1.13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.1.13.json -------------------------------------------------------------------------------- /.changes/0.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.1.2.json -------------------------------------------------------------------------------- /.changes/0.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.1.3.json -------------------------------------------------------------------------------- /.changes/0.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.1.4.json -------------------------------------------------------------------------------- /.changes/0.1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.1.5.json -------------------------------------------------------------------------------- /.changes/0.1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.1.6.json -------------------------------------------------------------------------------- /.changes/0.1.7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.1.7.json -------------------------------------------------------------------------------- /.changes/0.1.8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.1.8.json -------------------------------------------------------------------------------- /.changes/0.1.9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.1.9.json -------------------------------------------------------------------------------- /.changes/0.10.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.10.0.json -------------------------------------------------------------------------------- /.changes/0.10.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.10.1.json -------------------------------------------------------------------------------- /.changes/0.10.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.10.2.json -------------------------------------------------------------------------------- /.changes/0.10.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.10.3.json -------------------------------------------------------------------------------- /.changes/0.10.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.10.4.json -------------------------------------------------------------------------------- /.changes/0.11.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.11.0.json -------------------------------------------------------------------------------- /.changes/0.11.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.11.1.json -------------------------------------------------------------------------------- /.changes/0.11.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.11.2.json -------------------------------------------------------------------------------- /.changes/0.11.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.11.3.json -------------------------------------------------------------------------------- /.changes/0.11.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.11.4.json -------------------------------------------------------------------------------- /.changes/0.11.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.11.5.json -------------------------------------------------------------------------------- /.changes/0.12.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.12.0.json -------------------------------------------------------------------------------- /.changes/0.13.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.13.0.json -------------------------------------------------------------------------------- /.changes/0.13.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.13.1.json -------------------------------------------------------------------------------- /.changes/0.14.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.14.0.json -------------------------------------------------------------------------------- /.changes/0.15.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.15.0.json -------------------------------------------------------------------------------- /.changes/0.16.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.16.0.json -------------------------------------------------------------------------------- /.changes/0.2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.2.0.json -------------------------------------------------------------------------------- /.changes/0.2.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.2.1.json -------------------------------------------------------------------------------- /.changes/0.3.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.3.0.json -------------------------------------------------------------------------------- /.changes/0.3.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.3.1.json -------------------------------------------------------------------------------- /.changes/0.3.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.3.2.json -------------------------------------------------------------------------------- /.changes/0.3.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.3.3.json -------------------------------------------------------------------------------- /.changes/0.3.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.3.4.json -------------------------------------------------------------------------------- /.changes/0.3.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.3.5.json -------------------------------------------------------------------------------- /.changes/0.3.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.3.6.json -------------------------------------------------------------------------------- /.changes/0.3.7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.3.7.json -------------------------------------------------------------------------------- /.changes/0.4.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.4.0.json -------------------------------------------------------------------------------- /.changes/0.4.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.4.1.json -------------------------------------------------------------------------------- /.changes/0.4.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.4.2.json -------------------------------------------------------------------------------- /.changes/0.5.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.5.0.json -------------------------------------------------------------------------------- /.changes/0.5.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.5.1.json -------------------------------------------------------------------------------- /.changes/0.5.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.5.2.json -------------------------------------------------------------------------------- /.changes/0.6.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.6.0.json -------------------------------------------------------------------------------- /.changes/0.6.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.6.1.json -------------------------------------------------------------------------------- /.changes/0.6.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.6.2.json -------------------------------------------------------------------------------- /.changes/0.7.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.7.0.json -------------------------------------------------------------------------------- /.changes/0.8.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.8.0.json -------------------------------------------------------------------------------- /.changes/0.8.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.8.1.json -------------------------------------------------------------------------------- /.changes/0.8.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.8.2.json -------------------------------------------------------------------------------- /.changes/0.9.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.changes/0.9.0.json -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/codeql.yml: -------------------------------------------------------------------------------- 1 | paths: 2 | - "s3transfer/" 3 | -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/fail-master-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.github/workflows/fail-master-prs.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/run-crt-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.github/workflows/run-crt-test.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /ACCEPTANCE_TESTS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/ACCEPTANCE_TESTS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- 1 | s3transfer 2 | Copyright 2016 Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/README.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev-lock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/requirements-dev-lock.txt -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/requirements.txt -------------------------------------------------------------------------------- /s3transfer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/s3transfer/__init__.py -------------------------------------------------------------------------------- /s3transfer/bandwidth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/s3transfer/bandwidth.py -------------------------------------------------------------------------------- /s3transfer/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/s3transfer/compat.py -------------------------------------------------------------------------------- /s3transfer/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/s3transfer/constants.py -------------------------------------------------------------------------------- /s3transfer/copies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/s3transfer/copies.py -------------------------------------------------------------------------------- /s3transfer/crt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/s3transfer/crt.py -------------------------------------------------------------------------------- /s3transfer/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/s3transfer/delete.py -------------------------------------------------------------------------------- /s3transfer/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/s3transfer/download.py -------------------------------------------------------------------------------- /s3transfer/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/s3transfer/exceptions.py -------------------------------------------------------------------------------- /s3transfer/futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/s3transfer/futures.py -------------------------------------------------------------------------------- /s3transfer/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/s3transfer/manager.py -------------------------------------------------------------------------------- /s3transfer/processpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/s3transfer/processpool.py -------------------------------------------------------------------------------- /s3transfer/subscribers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/s3transfer/subscribers.py -------------------------------------------------------------------------------- /s3transfer/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/s3transfer/tasks.py -------------------------------------------------------------------------------- /s3transfer/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/s3transfer/upload.py -------------------------------------------------------------------------------- /s3transfer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/s3transfer/utils.py -------------------------------------------------------------------------------- /scripts/ci/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/scripts/ci/install -------------------------------------------------------------------------------- /scripts/ci/install-dev-deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/scripts/ci/install-dev-deps -------------------------------------------------------------------------------- /scripts/ci/run-crt-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/scripts/ci/run-crt-tests -------------------------------------------------------------------------------- /scripts/ci/run-integ-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/scripts/ci/run-integ-tests -------------------------------------------------------------------------------- /scripts/ci/run-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/scripts/ci/run-tests -------------------------------------------------------------------------------- /scripts/new-change: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/scripts/new-change -------------------------------------------------------------------------------- /scripts/performance/benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/scripts/performance/benchmark -------------------------------------------------------------------------------- /scripts/performance/benchmark-download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/scripts/performance/benchmark-download -------------------------------------------------------------------------------- /scripts/performance/benchmark-upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/scripts/performance/benchmark-upload -------------------------------------------------------------------------------- /scripts/performance/download-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/scripts/performance/download-file -------------------------------------------------------------------------------- /scripts/performance/processpool-download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/scripts/performance/processpool-download -------------------------------------------------------------------------------- /scripts/performance/summarize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/scripts/performance/summarize -------------------------------------------------------------------------------- /scripts/performance/upload-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/scripts/performance/upload-file -------------------------------------------------------------------------------- /scripts/stress/timeout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/scripts/stress/timeout -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/functional/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/functional/__init__.py -------------------------------------------------------------------------------- /tests/functional/test_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/functional/test_copy.py -------------------------------------------------------------------------------- /tests/functional/test_crt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/functional/test_crt.py -------------------------------------------------------------------------------- /tests/functional/test_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/functional/test_delete.py -------------------------------------------------------------------------------- /tests/functional/test_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/functional/test_download.py -------------------------------------------------------------------------------- /tests/functional/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/functional/test_manager.py -------------------------------------------------------------------------------- /tests/functional/test_processpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/functional/test_processpool.py -------------------------------------------------------------------------------- /tests/functional/test_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/functional/test_upload.py -------------------------------------------------------------------------------- /tests/functional/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/functional/test_utils.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/integration/__init__.py -------------------------------------------------------------------------------- /tests/integration/test_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/integration/test_copy.py -------------------------------------------------------------------------------- /tests/integration/test_crt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/integration/test_crt.py -------------------------------------------------------------------------------- /tests/integration/test_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/integration/test_delete.py -------------------------------------------------------------------------------- /tests/integration/test_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/integration/test_download.py -------------------------------------------------------------------------------- /tests/integration/test_processpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/integration/test_processpool.py -------------------------------------------------------------------------------- /tests/integration/test_s3transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/integration/test_s3transfer.py -------------------------------------------------------------------------------- /tests/integration/test_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/integration/test_upload.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/unit/test_bandwidth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/unit/test_bandwidth.py -------------------------------------------------------------------------------- /tests/unit/test_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/unit/test_compat.py -------------------------------------------------------------------------------- /tests/unit/test_copies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/unit/test_copies.py -------------------------------------------------------------------------------- /tests/unit/test_crt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/unit/test_crt.py -------------------------------------------------------------------------------- /tests/unit/test_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/unit/test_delete.py -------------------------------------------------------------------------------- /tests/unit/test_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/unit/test_download.py -------------------------------------------------------------------------------- /tests/unit/test_futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/unit/test_futures.py -------------------------------------------------------------------------------- /tests/unit/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/unit/test_manager.py -------------------------------------------------------------------------------- /tests/unit/test_processpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/unit/test_processpool.py -------------------------------------------------------------------------------- /tests/unit/test_s3transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/unit/test_s3transfer.py -------------------------------------------------------------------------------- /tests/unit/test_subscribers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/unit/test_subscribers.py -------------------------------------------------------------------------------- /tests/unit/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/unit/test_tasks.py -------------------------------------------------------------------------------- /tests/unit/test_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/unit/test_upload.py -------------------------------------------------------------------------------- /tests/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tests/unit/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boto/s3transfer/HEAD/tox.ini --------------------------------------------------------------------------------