__init__.py 657 B

12345678910111213141516171819202122232425
  1. """wsgiref -- a WSGI (PEP 3333) Reference Library
  2. Current Contents:
  3. * util -- Miscellaneous useful functions and wrappers
  4. * headers -- Manage response headers
  5. * handlers -- base classes for server/gateway implementations
  6. * simple_server -- a simple BaseHTTPServer that supports WSGI
  7. * validate -- validation wrapper that sits between an app and a server
  8. to detect errors in either
  9. * types -- collection of WSGI-related types for static type checking
  10. To-Do:
  11. * cgi_gateway -- Run WSGI apps under CGI (pending a deployment standard)
  12. * cgi_wrapper -- Run CGI apps under WSGI
  13. * router -- a simple middleware component that handles URL traversal
  14. """