gitextract_02v9aofl/ ├── .gitignore ├── .isort.cfg ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── aiohttp_apispec/ │ ├── __init__.py │ ├── aiohttp_apispec.py │ ├── decorators/ │ │ ├── __init__.py │ │ ├── docs.py │ │ ├── request.py │ │ └── response.py │ ├── middlewares.py │ ├── static/ │ │ ├── index.html │ │ ├── oauth2-redirect.html │ │ ├── swagger-ui-bundle.js │ │ ├── swagger-ui-standalone-preset.js │ │ ├── swagger-ui.css │ │ └── swagger-ui.js │ └── utils.py ├── dev-requirements.txt ├── docs/ │ ├── api.rst │ ├── conf.py │ ├── index.rst │ ├── install.rst │ └── usage.rst ├── example/ │ ├── __init__.py │ ├── app.py │ ├── routes.py │ ├── schemas.py │ └── views.py ├── example_app.py ├── pyproject.toml ├── readthedocs.yaml ├── requirements.txt ├── setup.py └── tests/ ├── __init__.py ├── conftest.py ├── pytest.ini ├── test_decorators.py ├── test_documentation.py └── test_web_app.py