Search
Sep 09, 2023, 1 min read
# 一个最小的 Flask 应用 app = Flask(__name__) @app.route('/') def index(): return '<h1>Hello Flask</h1>'