Skip to content

Instantly share code, notes, and snippets.

@myersjustinc
Created July 9, 2013 21:30
Show Gist options
  • Select an option

  • Save myersjustinc/5961459 to your computer and use it in GitHub Desktop.

Select an option

Save myersjustinc/5961459 to your computer and use it in GitHub Desktop.
A quick test application in Flask
#!/usr/bin/env python
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return 'Hello, world!'
if __name__ == '__main__':
app.run()
Flask==0.10.1
Jinja2==2.7
MarkupSafe==0.18
Werkzeug==0.9.1
gunicorn==17.5
itsdangerous==0.22
wsgiref==0.1.2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment