├── .github └── workflows │ └── pythonpublish.yml ├── MANIFEST.in ├── README.md ├── README.template.md ├── data └── swagger.html ├── embed_code_sample_into_readme.sh ├── flaskswaggertypes.py ├── sample_app.py ├── setup.py └── swagger.html /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/flask-swagger-types/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include data/swagger.html 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/flask-swagger-types/HEAD/README.md -------------------------------------------------------------------------------- /README.template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/flask-swagger-types/HEAD/README.template.md -------------------------------------------------------------------------------- /data/swagger.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /embed_code_sample_into_readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/flask-swagger-types/HEAD/embed_code_sample_into_readme.sh -------------------------------------------------------------------------------- /flaskswaggertypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/flask-swagger-types/HEAD/flaskswaggertypes.py -------------------------------------------------------------------------------- /sample_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/flask-swagger-types/HEAD/sample_app.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/flask-swagger-types/HEAD/setup.py -------------------------------------------------------------------------------- /swagger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/flask-swagger-types/HEAD/swagger.html --------------------------------------------------------------------------------