from flask import Flask app = Flask(__name__) @app.route('/hello') def hello(): return 'hello world!' app.run(debug=True)
相关分类