Flask Demo - 01

Simple Demo using couple of end points

Run the script python3 api_demo/flask_01_simple_app.py

Open the browser and visit http://127.0.0.1:5001

@app, @api, and @auth are decorators specific to Flask and Flask-RESTful libraries. They are used to define routes, API endpoints, and authentication rules.

Last updated