METADATA 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. Metadata-Version: 2.0
  2. Name: Werkzeug
  3. Version: 0.10.4
  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 :: 3
  17. Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
  18. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  19. Werkzeug
  20. ========
  21. Werkzeug started as simple collection of various utilities for WSGI
  22. applications and has become one of the most advanced WSGI utility
  23. modules. It includes a powerful debugger, full featured request and
  24. response objects, HTTP utilities to handle entity tags, cache control
  25. headers, HTTP dates, cookie handling, file uploads, a powerful URL
  26. routing system and a bunch of community contributed addon modules.
  27. Werkzeug is unicode aware and doesn't enforce a specific template
  28. engine, database adapter or anything else. It doesn't even enforce
  29. a specific way of handling requests and leaves all that up to the
  30. developer. It's most useful for end user applications which should work
  31. on as many server environments as possible (such as blogs, wikis,
  32. bulletin boards, etc.).
  33. Details and example applications are available on the
  34. `Werkzeug website <http://werkzeug.pocoo.org/>`_.
  35. Features
  36. --------
  37. - unicode awareness
  38. - request and response objects
  39. - various utility functions for dealing with HTTP headers such as
  40. `Accept` and `Cache-Control` headers.
  41. - thread local objects with proper cleanup at request end
  42. - an interactive debugger
  43. - A simple WSGI server with support for threading and forking
  44. with an automatic reloader.
  45. - a flexible URL routing system with REST support.
  46. - fully WSGI compatible
  47. Development Version
  48. -------------------
  49. The Werkzeug development version can be installed by cloning the git
  50. repository from `github`_::
  51. git clone git@github.com:mitsuhiko/werkzeug.git
  52. .. _github: http://github.com/mitsuhiko/werkzeug