├── .codecov.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── dev-requirements.txt ├── docs ├── Makefile ├── api_reference.rst ├── changelog.rst ├── conf.py ├── index.rst ├── install.rst ├── license.rst ├── make.bat ├── requirements.txt └── usage.rst ├── examples └── petstore.py ├── flask_apispec ├── __init__.py ├── annotations.py ├── apidoc.py ├── extension.py ├── paths.py ├── templates │ └── swagger-ui.html ├── utils.py ├── views.py └── wrapper.py ├── package.json ├── pytest.ini ├── setup.cfg ├── setup.py ├── tasks.py ├── tests ├── __init__.py ├── conftest.py ├── test_extension.py ├── test_openapi.py ├── test_paths.py ├── test_utils.py └── test_views.py └── tox.ini /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/README.rst -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/docs/api_reference.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. _changelog: 2 | 3 | .. include:: ../CHANGELOG.rst 4 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /examples/petstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/examples/petstore.py -------------------------------------------------------------------------------- /flask_apispec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/flask_apispec/__init__.py -------------------------------------------------------------------------------- /flask_apispec/annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/flask_apispec/annotations.py -------------------------------------------------------------------------------- /flask_apispec/apidoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/flask_apispec/apidoc.py -------------------------------------------------------------------------------- /flask_apispec/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/flask_apispec/extension.py -------------------------------------------------------------------------------- /flask_apispec/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/flask_apispec/paths.py -------------------------------------------------------------------------------- /flask_apispec/templates/swagger-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/flask_apispec/templates/swagger-ui.html -------------------------------------------------------------------------------- /flask_apispec/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/flask_apispec/utils.py -------------------------------------------------------------------------------- /flask_apispec/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/flask_apispec/views.py -------------------------------------------------------------------------------- /flask_apispec/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/flask_apispec/wrapper.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/package.json -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/setup.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/tests/test_extension.py -------------------------------------------------------------------------------- /tests/test_openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/tests/test_openapi.py -------------------------------------------------------------------------------- /tests/test_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/tests/test_paths.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/tests/test_views.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcarp/flask-apispec/HEAD/tox.ini --------------------------------------------------------------------------------