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