Flask Introduction — a practical guide to Flask introduction with clear examples you can reuse in real projects.
Python Tutorial Series (65/95). Prefer one article? Read the complete Python tutorial.
Short description
Flask gives you routing and responses with minimal setup. Extend it with extensions as you grow.
Tiny Flask app
from flask import Flask
app = Flask(__name__)
@app.get('/')
def home():
return 'Hello Flask'
# flask --app app run