├── .codecov.yml ├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── codespell.yml │ ├── docs.yml │ ├── main.yml │ ├── pre-commit-detect-outdated.yml │ └── pre-commit.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── _static │ ├── vcr.png │ └── vcr.svg ├── advanced.rst ├── api.rst ├── changelog.rst ├── conf.py ├── configuration.rst ├── contributing.rst ├── debugging.rst ├── index.rst ├── installation.rst ├── requirements.txt └── usage.rst ├── pyproject.toml ├── runtests.sh ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── assertions.py ├── fixtures │ ├── migration │ │ ├── new_cassette.json │ │ ├── new_cassette.yaml │ │ ├── not_cassette.txt │ │ ├── old_cassette.json │ │ └── old_cassette.yaml │ └── wild │ │ └── domain_redirect.yaml ├── integration │ ├── __init__.py │ ├── aiohttp_utils.py │ ├── cassettes │ │ ├── gzip_httpx_old_format.yaml │ │ ├── gzip_requests.yaml │ │ └── test_httpx_test_test_behind_proxy.yml │ ├── test_aiohttp.py │ ├── test_basic.py │ ├── test_boto3.py │ ├── test_config.py │ ├── test_disksaver.py │ ├── test_filter.py │ ├── test_http │ ├── test_httplib2.py │ ├── test_httpx.py │ ├── test_ignore.py │ ├── test_matchers.py │ ├── test_multiple.py │ ├── test_proxy.py │ ├── test_record_mode.py │ ├── test_register_matcher.py │ ├── test_register_persister.py │ ├── test_register_serializer.py │ ├── test_request.py │ ├── test_requests.py │ ├── test_stubs.py │ ├── test_tornado.py │ ├── test_tornado_exception_can_be_caught.yaml │ ├── test_tornado_with_decorator_use_cassette.yaml │ ├── test_urllib3.py │ └── test_wild.py └── unit │ ├── test_cassettes.py │ ├── test_errors.py │ ├── test_filters.py │ ├── test_json_serializer.py │ ├── test_matchers.py │ ├── test_migration.py │ ├── test_persist.py │ ├── test_request.py │ ├── test_response.py │ ├── test_serialize.py │ ├── test_stubs.py │ ├── test_unittest.py │ ├── test_util.py │ ├── test_vcr.py │ └── test_vcr_import.py ├── vcr.png └── vcr ├── __init__.py ├── _handle_coroutine.py ├── cassette.py ├── config.py ├── errors.py ├── filters.py ├── matchers.py ├── migration.py ├── patch.py ├── persisters ├── __init__.py └── filesystem.py ├── record_mode.py ├── request.py ├── serialize.py ├── serializers ├── __init__.py ├── compat.py ├── jsonserializer.py └── yamlserializer.py ├── stubs ├── __init__.py ├── aiohttp_stubs.py ├── boto3_stubs.py ├── compat.py ├── httpcore_stubs.py ├── httplib2_stubs.py ├── requests_stubs.py ├── tornado_stubs.py └── urllib3_stubs.py ├── unittest.py └── util.py /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codespell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/.github/workflows/codespell.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit-detect-outdated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/.github/workflows/pre-commit-detect-outdated.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/vcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/docs/_static/vcr.png -------------------------------------------------------------------------------- /docs/_static/vcr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/docs/_static/vcr.svg -------------------------------------------------------------------------------- /docs/advanced.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/docs/advanced.rst -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/docs/configuration.rst -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/debugging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/docs/debugging.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/runtests.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/assertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/assertions.py -------------------------------------------------------------------------------- /tests/fixtures/migration/new_cassette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/fixtures/migration/new_cassette.json -------------------------------------------------------------------------------- /tests/fixtures/migration/new_cassette.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/fixtures/migration/new_cassette.yaml -------------------------------------------------------------------------------- /tests/fixtures/migration/not_cassette.txt: -------------------------------------------------------------------------------- 1 | This is not a cassette 2 | -------------------------------------------------------------------------------- /tests/fixtures/migration/old_cassette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/fixtures/migration/old_cassette.json -------------------------------------------------------------------------------- /tests/fixtures/migration/old_cassette.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/fixtures/migration/old_cassette.yaml -------------------------------------------------------------------------------- /tests/fixtures/wild/domain_redirect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/fixtures/wild/domain_redirect.yaml -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/aiohttp_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/aiohttp_utils.py -------------------------------------------------------------------------------- /tests/integration/cassettes/gzip_httpx_old_format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/cassettes/gzip_httpx_old_format.yaml -------------------------------------------------------------------------------- /tests/integration/cassettes/gzip_requests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/cassettes/gzip_requests.yaml -------------------------------------------------------------------------------- /tests/integration/cassettes/test_httpx_test_test_behind_proxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/cassettes/test_httpx_test_test_behind_proxy.yml -------------------------------------------------------------------------------- /tests/integration/test_aiohttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_aiohttp.py -------------------------------------------------------------------------------- /tests/integration/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_basic.py -------------------------------------------------------------------------------- /tests/integration/test_boto3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_boto3.py -------------------------------------------------------------------------------- /tests/integration/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_config.py -------------------------------------------------------------------------------- /tests/integration/test_disksaver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_disksaver.py -------------------------------------------------------------------------------- /tests/integration/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_filter.py -------------------------------------------------------------------------------- /tests/integration/test_http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_http -------------------------------------------------------------------------------- /tests/integration/test_httplib2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_httplib2.py -------------------------------------------------------------------------------- /tests/integration/test_httpx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_httpx.py -------------------------------------------------------------------------------- /tests/integration/test_ignore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_ignore.py -------------------------------------------------------------------------------- /tests/integration/test_matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_matchers.py -------------------------------------------------------------------------------- /tests/integration/test_multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_multiple.py -------------------------------------------------------------------------------- /tests/integration/test_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_proxy.py -------------------------------------------------------------------------------- /tests/integration/test_record_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_record_mode.py -------------------------------------------------------------------------------- /tests/integration/test_register_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_register_matcher.py -------------------------------------------------------------------------------- /tests/integration/test_register_persister.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_register_persister.py -------------------------------------------------------------------------------- /tests/integration/test_register_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_register_serializer.py -------------------------------------------------------------------------------- /tests/integration/test_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_request.py -------------------------------------------------------------------------------- /tests/integration/test_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_requests.py -------------------------------------------------------------------------------- /tests/integration/test_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_stubs.py -------------------------------------------------------------------------------- /tests/integration/test_tornado.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_tornado.py -------------------------------------------------------------------------------- /tests/integration/test_tornado_exception_can_be_caught.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_tornado_exception_can_be_caught.yaml -------------------------------------------------------------------------------- /tests/integration/test_tornado_with_decorator_use_cassette.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_tornado_with_decorator_use_cassette.yaml -------------------------------------------------------------------------------- /tests/integration/test_urllib3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_urllib3.py -------------------------------------------------------------------------------- /tests/integration/test_wild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/integration/test_wild.py -------------------------------------------------------------------------------- /tests/unit/test_cassettes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/unit/test_cassettes.py -------------------------------------------------------------------------------- /tests/unit/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/unit/test_errors.py -------------------------------------------------------------------------------- /tests/unit/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/unit/test_filters.py -------------------------------------------------------------------------------- /tests/unit/test_json_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/unit/test_json_serializer.py -------------------------------------------------------------------------------- /tests/unit/test_matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/unit/test_matchers.py -------------------------------------------------------------------------------- /tests/unit/test_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/unit/test_migration.py -------------------------------------------------------------------------------- /tests/unit/test_persist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/unit/test_persist.py -------------------------------------------------------------------------------- /tests/unit/test_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/unit/test_request.py -------------------------------------------------------------------------------- /tests/unit/test_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/unit/test_response.py -------------------------------------------------------------------------------- /tests/unit/test_serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/unit/test_serialize.py -------------------------------------------------------------------------------- /tests/unit/test_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/unit/test_stubs.py -------------------------------------------------------------------------------- /tests/unit/test_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/unit/test_unittest.py -------------------------------------------------------------------------------- /tests/unit/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/unit/test_util.py -------------------------------------------------------------------------------- /tests/unit/test_vcr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/unit/test_vcr.py -------------------------------------------------------------------------------- /tests/unit/test_vcr_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/tests/unit/test_vcr_import.py -------------------------------------------------------------------------------- /vcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr.png -------------------------------------------------------------------------------- /vcr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/__init__.py -------------------------------------------------------------------------------- /vcr/_handle_coroutine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/_handle_coroutine.py -------------------------------------------------------------------------------- /vcr/cassette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/cassette.py -------------------------------------------------------------------------------- /vcr/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/config.py -------------------------------------------------------------------------------- /vcr/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/errors.py -------------------------------------------------------------------------------- /vcr/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/filters.py -------------------------------------------------------------------------------- /vcr/matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/matchers.py -------------------------------------------------------------------------------- /vcr/migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/migration.py -------------------------------------------------------------------------------- /vcr/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/patch.py -------------------------------------------------------------------------------- /vcr/persisters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vcr/persisters/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/persisters/filesystem.py -------------------------------------------------------------------------------- /vcr/record_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/record_mode.py -------------------------------------------------------------------------------- /vcr/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/request.py -------------------------------------------------------------------------------- /vcr/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/serialize.py -------------------------------------------------------------------------------- /vcr/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vcr/serializers/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/serializers/compat.py -------------------------------------------------------------------------------- /vcr/serializers/jsonserializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/serializers/jsonserializer.py -------------------------------------------------------------------------------- /vcr/serializers/yamlserializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/serializers/yamlserializer.py -------------------------------------------------------------------------------- /vcr/stubs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/stubs/__init__.py -------------------------------------------------------------------------------- /vcr/stubs/aiohttp_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/stubs/aiohttp_stubs.py -------------------------------------------------------------------------------- /vcr/stubs/boto3_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/stubs/boto3_stubs.py -------------------------------------------------------------------------------- /vcr/stubs/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/stubs/compat.py -------------------------------------------------------------------------------- /vcr/stubs/httpcore_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/stubs/httpcore_stubs.py -------------------------------------------------------------------------------- /vcr/stubs/httplib2_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/stubs/httplib2_stubs.py -------------------------------------------------------------------------------- /vcr/stubs/requests_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/stubs/requests_stubs.py -------------------------------------------------------------------------------- /vcr/stubs/tornado_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/stubs/tornado_stubs.py -------------------------------------------------------------------------------- /vcr/stubs/urllib3_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/stubs/urllib3_stubs.py -------------------------------------------------------------------------------- /vcr/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/unittest.py -------------------------------------------------------------------------------- /vcr/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin1024/vcrpy/HEAD/vcr/util.py --------------------------------------------------------------------------------