最小 Flask 实例

2022-11-23
# 一个最小的 Flask 应用
app = Flask(__name__)
@app.route('/')
def index():
return '<h1>Hello Flask</h1>'