Created
July 9, 2013 21:30
-
-
Save myersjustinc/5961459 to your computer and use it in GitHub Desktop.
A quick test application in Flask
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| from flask import Flask | |
| app = Flask(__name__) | |
| @app.route('/') | |
| def index(): | |
| return 'Hello, world!' | |
| if __name__ == '__main__': | |
| app.run() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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