__init__.py 502 B

1234567891011121314151617181920
  1. """
  2. werkzeug
  3. ~~~~~~~~
  4. Werkzeug is the Swiss Army knife of Python web development.
  5. It provides useful classes and functions for any WSGI application to
  6. make the life of a Python web developer much easier. All of the provided
  7. classes are independent from each other so you can mix it with any other
  8. library.
  9. :copyright: 2007 Pallets
  10. :license: BSD-3-Clause
  11. """
  12. from .serving import run_simple
  13. from .test import Client
  14. from .wrappers import Request
  15. from .wrappers import Response
  16. __version__ = "1.0.1"