├── .github ├── dependabot.yml └── workflows │ ├── check-docs.yml │ ├── lint.yml │ ├── publish-docs.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── Taskfile.yaml ├── docs ├── api.md ├── examples.md ├── guide.md ├── img │ └── respx.png ├── index.md ├── migrate.md ├── mocking.md ├── stylesheets │ └── slate.css ├── upgrade.md └── versions │ └── 0.14.0 │ ├── api.md │ └── mocking.md ├── flake.lock ├── flake.nix ├── mkdocs.yaml ├── noxfile.py ├── respx ├── __init__.py ├── __version__.py ├── api.py ├── fixtures.py ├── handlers.py ├── mocks.py ├── models.py ├── patterns.py ├── plugin.py ├── py.typed ├── router.py ├── transports.py ├── types.py └── utils.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── test_api.py ├── test_mock.py ├── test_patterns.py ├── test_plugin.py ├── test_remote.py ├── test_router.py ├── test_stats.py ├── test_transports.py └── test_utils.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/check-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/.github/workflows/check-docs.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/publish-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/.github/workflows/publish-docs.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/README.md -------------------------------------------------------------------------------- /Taskfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/Taskfile.yaml -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/docs/guide.md -------------------------------------------------------------------------------- /docs/img/respx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/docs/img/respx.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/migrate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/docs/migrate.md -------------------------------------------------------------------------------- /docs/mocking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/docs/mocking.md -------------------------------------------------------------------------------- /docs/stylesheets/slate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/docs/stylesheets/slate.css -------------------------------------------------------------------------------- /docs/upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/docs/upgrade.md -------------------------------------------------------------------------------- /docs/versions/0.14.0/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/docs/versions/0.14.0/api.md -------------------------------------------------------------------------------- /docs/versions/0.14.0/mocking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/docs/versions/0.14.0/mocking.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/flake.nix -------------------------------------------------------------------------------- /mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/mkdocs.yaml -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/noxfile.py -------------------------------------------------------------------------------- /respx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/respx/__init__.py -------------------------------------------------------------------------------- /respx/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.22.0" 2 | -------------------------------------------------------------------------------- /respx/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/respx/api.py -------------------------------------------------------------------------------- /respx/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/respx/fixtures.py -------------------------------------------------------------------------------- /respx/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/respx/handlers.py -------------------------------------------------------------------------------- /respx/mocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/respx/mocks.py -------------------------------------------------------------------------------- /respx/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/respx/models.py -------------------------------------------------------------------------------- /respx/patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/respx/patterns.py -------------------------------------------------------------------------------- /respx/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/respx/plugin.py -------------------------------------------------------------------------------- /respx/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /respx/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/respx/router.py -------------------------------------------------------------------------------- /respx/transports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/respx/transports.py -------------------------------------------------------------------------------- /respx/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/respx/types.py -------------------------------------------------------------------------------- /respx/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/respx/utils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/tests/test_mock.py -------------------------------------------------------------------------------- /tests/test_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/tests/test_patterns.py -------------------------------------------------------------------------------- /tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/tests/test_plugin.py -------------------------------------------------------------------------------- /tests/test_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/tests/test_remote.py -------------------------------------------------------------------------------- /tests/test_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/tests/test_router.py -------------------------------------------------------------------------------- /tests/test_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/tests/test_stats.py -------------------------------------------------------------------------------- /tests/test_transports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/tests/test_transports.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lundberg/respx/HEAD/tests/test_utils.py --------------------------------------------------------------------------------