Flask Web Framework Introduction

Flask Overview

Flask is a lightweight Python web framework, perfect for rapid web application development.

Quick Start

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
from flask import Flask

app = Flask(__name__)

@app.route('/')
def hello():
    return 'Hello, World!'

if __name__ == '__main__':
    app.run(debug=True)

Route Configuration

Flask uses decorators to define routes, which is very clean and simple.