Package t.w.channel

Part of twisted.web2 View Source

Various backend channel implementations for web2.
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:

Function startCGI Call this as the last thing in your CGI python script in order to
Class SCGIFactory No class docstring; 1/2 methods documented
Class HTTPFactory Factory for HTTP server.
Class FastCGIFactory No class docstring; 1/2 methods documented
def startCGI(site): (source)

Call this as the last thing in your CGI python script in order to hook up your site object with the incoming request.

E.g.: >>> from twisted.web2 import channel, server >>> if __name__ == '__main__': ... channel.startCGI(server.Site(myToplevelResource))
API Documentation for twisted, generated by pydoctor.