__init__.py 500 B

12345678910111213141516171819202122
  1. """
  2. Middleware
  3. ==========
  4. A WSGI middleware is a WSGI application that wraps another application
  5. in order to observe or change its behavior. Werkzeug provides some
  6. middleware for common use cases.
  7. .. toctree::
  8. :maxdepth: 1
  9. proxy_fix
  10. shared_data
  11. dispatcher
  12. http_proxy
  13. lint
  14. profiler
  15. The :doc:`interactive debugger </debug>` is also a middleware that can
  16. be applied manually, although it is typically used automatically with
  17. the :doc:`development server </serving>`.
  18. """