Skip to content

Instantly share code, notes, and snippets.

@adimania
Created September 17, 2015 10:07
Show Gist options
  • Save adimania/c454e2e839fcb20605a3 to your computer and use it in GitHub Desktop.
Save adimania/c454e2e839fcb20605a3 to your computer and use it in GitHub Desktop.
Flask Hello World application
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello World!'
if __name__ == '__main__':
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment