Flask开撸

python 3.x

安装 Flask

pip install Flask

 

 

from flask import Flask
app = Flask(__name__)
 
@app.route("/") # take note of this decorator syntax, it's a common pattern
def hello():
    return "Hello World!"
 
if __name__ == "__main__":
    app.run()
posted @ 2018-02-26 13:27  伙小  阅读(147)  评论(2)    收藏  举报