├── LocalFunctionProj ├── .gitignore ├── .vscode │ └── extensions.json ├── function_app.py ├── host.json └── requirements.txt ├── README.md ├── Screenshots ├── azure through terminal.png ├── azure through website.png ├── flasgger parameters .png ├── flasgger.png ├── flask hello.png └── flask home.png ├── app_basic.py └── app_flasgger.py /LocalFunctionProj/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunny-IQ/Flask-API-Management/HEAD/LocalFunctionProj/.gitignore -------------------------------------------------------------------------------- /LocalFunctionProj/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunny-IQ/Flask-API-Management/HEAD/LocalFunctionProj/.vscode/extensions.json -------------------------------------------------------------------------------- /LocalFunctionProj/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunny-IQ/Flask-API-Management/HEAD/LocalFunctionProj/function_app.py -------------------------------------------------------------------------------- /LocalFunctionProj/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunny-IQ/Flask-API-Management/HEAD/LocalFunctionProj/host.json -------------------------------------------------------------------------------- /LocalFunctionProj/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunny-IQ/Flask-API-Management/HEAD/LocalFunctionProj/requirements.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunny-IQ/Flask-API-Management/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/azure through terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunny-IQ/Flask-API-Management/HEAD/Screenshots/azure through terminal.png -------------------------------------------------------------------------------- /Screenshots/azure through website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunny-IQ/Flask-API-Management/HEAD/Screenshots/azure through website.png -------------------------------------------------------------------------------- /Screenshots/flasgger parameters .png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunny-IQ/Flask-API-Management/HEAD/Screenshots/flasgger parameters .png -------------------------------------------------------------------------------- /Screenshots/flasgger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunny-IQ/Flask-API-Management/HEAD/Screenshots/flasgger.png -------------------------------------------------------------------------------- /Screenshots/flask hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunny-IQ/Flask-API-Management/HEAD/Screenshots/flask hello.png -------------------------------------------------------------------------------- /Screenshots/flask home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunny-IQ/Flask-API-Management/HEAD/Screenshots/flask home.png -------------------------------------------------------------------------------- /app_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunny-IQ/Flask-API-Management/HEAD/app_basic.py -------------------------------------------------------------------------------- /app_flasgger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunny-IQ/Flask-API-Management/HEAD/app_flasgger.py --------------------------------------------------------------------------------