最小 Flask 实例

 

2022-11-23

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