PKG-INFO 1.7 KB

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