METADATA 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. Metadata-Version: 2.0
  2. Name: Flask
  3. Version: 0.11.1
  4. Summary: A microframework based on Werkzeug, Jinja2 and good intentions
  5. Home-page: http://github.com/pallets/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 :: 2
  17. Classifier: Programming Language :: Python :: 2.6
  18. Classifier: Programming Language :: Python :: 2.7
  19. Classifier: Programming Language :: Python :: 3
  20. Classifier: Programming Language :: Python :: 3.3
  21. Classifier: Programming Language :: Python :: 3.4
  22. Classifier: Programming Language :: Python :: 3.5
  23. Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
  24. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  25. Requires-Dist: Jinja2 (>=2.4)
  26. Requires-Dist: Werkzeug (>=0.7)
  27. Requires-Dist: click (>=2.0)
  28. Requires-Dist: itsdangerous (>=0.21)
  29. Flask
  30. -----
  31. Flask is a microframework for Python based on Werkzeug, Jinja 2 and good
  32. intentions. And before you ask: It's BSD licensed!
  33. Flask is Fun
  34. ````````````
  35. Save in a hello.py:
  36. .. code:: python
  37. from flask import Flask
  38. app = Flask(__name__)
  39. @app.route("/")
  40. def hello():
  41. return "Hello World!"
  42. if __name__ == "__main__":
  43. app.run()
  44. And Easy to Setup
  45. `````````````````
  46. And run it:
  47. .. code:: bash
  48. $ pip install Flask
  49. $ python hello.py
  50. * Running on http://localhost:5000/
  51. Links
  52. `````
  53. * `website <http://flask.pocoo.org/>`_
  54. * `documentation <http://flask.pocoo.org/docs/>`_
  55. * `development version
  56. <http://github.com/pallets/flask/zipball/master#egg=Flask-dev>`_