12 lines
245 B
Python
12 lines
245 B
Python
|
# from http://flask.pocoo.org/ tutorial
|
||
|
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()
|