officehours/main.py

12 lines
245 B
Python
Raw Normal View History

2016-02-07 19:15:39 +00:00
# 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()