Skip to content

Instantly share code, notes, and snippets.

@tatiana
Created March 13, 2014 09:06
Show Gist options
  • Save tatiana/9524811 to your computer and use it in GitHub Desktop.
Save tatiana/9524811 to your computer and use it in GitHub Desktop.
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hi from Flask!"
if __name__ == "__main__":
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment