METADATA 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. Metadata-Version: 2.0
  2. Name: Werkzeug
  3. Version: 0.11.11
  4. Summary: The Swiss Army knife of Python web development
  5. Home-page: http://werkzeug.pocoo.org/
  6. Author: Armin Ronacher
  7. Author-email: armin.ronacher@active-4.com
  8. License: BSD
  9. Platform: any
  10. Classifier: Development Status :: 5 - Production/Stable
  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. Werkzeug
  26. ========
  27. Werkzeug started as simple collection of various utilities for WSGI
  28. applications and has become one of the most advanced WSGI utility
  29. modules. It includes a powerful debugger, full featured request and
  30. response objects, HTTP utilities to handle entity tags, cache control
  31. headers, HTTP dates, cookie handling, file uploads, a powerful URL
  32. routing system and a bunch of community contributed addon modules.
  33. Werkzeug is unicode aware and doesn't enforce a specific template
  34. engine, database adapter or anything else. It doesn't even enforce
  35. a specific way of handling requests and leaves all that up to the
  36. developer. It's most useful for end user applications which should work
  37. on as many server environments as possible (such as blogs, wikis,
  38. bulletin boards, etc.).
  39. Details and example applications are available on the
  40. `Werkzeug website <http://werkzeug.pocoo.org/>`_.
  41. Features
  42. --------
  43. - unicode awareness
  44. - request and response objects
  45. - various utility functions for dealing with HTTP headers such as
  46. `Accept` and `Cache-Control` headers.
  47. - thread local objects with proper cleanup at request end
  48. - an interactive debugger
  49. - A simple WSGI server with support for threading and forking
  50. with an automatic reloader.
  51. - a flexible URL routing system with REST support.
  52. - fully WSGI compatible
  53. Development Version
  54. -------------------
  55. The Werkzeug development version can be installed by cloning the git
  56. repository from `github`_::
  57. git clone git@github.com:mitsuhiko/werkzeug.git
  58. .. _github: http://github.com/mitsuhiko/werkzeug