Part of twisted.web2 View Source
| Module | cgi | Undocumented |
| Module | fastcgi | Twisted.web2 FastCGI backend support. |
| Module | http | No module docstring; 4/6 classes, 0/1 functions documented |
| Module | scgi | Undocumented |
From the __init__.py module:
| Class | FastCGIFactory | Undocumented |
| Class | HTTPFactory | Factory for HTTP server. |
| Class | SCGIFactory | Undocumented |
| Function | startCGI | Call this as the last thing in your CGI python script in order to |
E.g.: >>> from twisted.web2 import channel, server >>> if __name__ == '__main__': ... channel.startCGI(server.Site(myToplevelResource))