METADATA 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. Metadata-Version: 2.0
  2. Name: Flask
  3. Version: 0.10.1
  4. Summary: A microframework based on Werkzeug, Jinja2 and good intentions
  5. Home-page: http://github.com/mitsuhiko/flask/
  6. Author: Armin Ronacher
  7. Author-email: armin.ronacher@active-4.com
  8. License: BSD
  9. Platform: any
  10. Classifier: Development Status :: 4 - Beta
  11. Classifier: Environment :: Web Environment
  12. Classifier: Intended Audience :: Developers
  13. Classifier: License :: OSI Approved :: BSD License
  14. Classifier: Operating System :: OS Independent
  15. Classifier: Programming Language :: Python
  16. Classifier: Programming Language :: Python :: 3
  17. Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
  18. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  19. Requires-Dist: Werkzeug (>=0.7)
  20. Requires-Dist: Jinja2 (>=2.4)
  21. Requires-Dist: itsdangerous (>=0.21)
  22. Flask
  23. -----
  24. Flask is a microframework for Python based on Werkzeug, Jinja 2 and good
  25. intentions. And before you ask: It's BSD licensed!
  26. Flask is Fun
  27. ````````````
  28. .. code:: python
  29. from flask import Flask
  30. app = Flask(__name__)
  31. @app.route("/")
  32. def hello():
  33. return "Hello World!"
  34. if __name__ == "__main__":
  35. app.run()
  36. And Easy to Setup
  37. `````````````````
  38. .. code:: bash
  39. $ pip install Flask
  40. $ python hello.py
  41. * Running on http://localhost:5000/
  42. Links
  43. `````
  44. * `website <http://flask.pocoo.org/>`_
  45. * `documentation <http://flask.pocoo.org/docs/>`_
  46. * `development version
  47. <http://github.com/mitsuhiko/flask/zipball/master#egg=Flask-dev>`_