Skip to content

Instantly share code, notes, and snippets.

@lucian303
Created December 22, 2012 05:19
Show Gist options
  • Save lucian303/4357608 to your computer and use it in GitHub Desktop.
Save lucian303/4357608 to your computer and use it in GitHub Desktop.
flask hello world
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello World!"
@app.route('/lucian/<name>')
def lucian(name):
"""my controller"""
return "Lucian " + name
if __name__ == "__main__":
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment