├── .github ├── dependabot.yml └── workflows │ └── build-release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── AUTHORS.rst ├── CHANGELOG.rst ├── LICENSE ├── README.rst ├── RELEASING.md ├── pyproject.toml ├── src └── apispec_webframeworks │ ├── __init__.py │ ├── aiohttp.py │ ├── bottle.py │ ├── flask.py │ ├── py.typed │ └── tornado.py ├── tests ├── __init__.py ├── test_ext_aiohttp.py ├── test_ext_bottle.py ├── test_ext_flask.py ├── test_ext_tornado.py └── utils.py └── tox.ini /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/apispec-webframeworks/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/apispec-webframeworks/HEAD/.github/workflows/build-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/apispec-webframeworks/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/apispec-webframeworks/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/apispec-webframeworks/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/apispec-webframeworks/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/apispec-webframeworks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/apispec-webframeworks/HEAD/README.rst -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/apispec-webframeworks/HEAD/RELEASING.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/apispec-webframeworks/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/apispec_webframeworks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/apispec_webframeworks/aiohttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/apispec-webframeworks/HEAD/src/apispec_webframeworks/aiohttp.py -------------------------------------------------------------------------------- /src/apispec_webframeworks/bottle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/apispec-webframeworks/HEAD/src/apispec_webframeworks/bottle.py -------------------------------------------------------------------------------- /src/apispec_webframeworks/flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/apispec-webframeworks/HEAD/src/apispec_webframeworks/flask.py -------------------------------------------------------------------------------- /src/apispec_webframeworks/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/apispec_webframeworks/tornado.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/apispec-webframeworks/HEAD/src/apispec_webframeworks/tornado.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_ext_aiohttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/apispec-webframeworks/HEAD/tests/test_ext_aiohttp.py -------------------------------------------------------------------------------- /tests/test_ext_bottle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/apispec-webframeworks/HEAD/tests/test_ext_bottle.py -------------------------------------------------------------------------------- /tests/test_ext_flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/apispec-webframeworks/HEAD/tests/test_ext_flask.py -------------------------------------------------------------------------------- /tests/test_ext_tornado.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/apispec-webframeworks/HEAD/tests/test_ext_tornado.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/apispec-webframeworks/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshmallow-code/apispec-webframeworks/HEAD/tox.ini --------------------------------------------------------------------------------