1# 一个最小的 Flask 应用2app = Flask(__name__)3 4@app.route('/')5def index():6 return '<h1>Hello Flask</h1>'