Part of twisted.web2.channel View Source
Class | BaseCGIChannelRequest | No class docstring; 1/11 methods documented |
Class | CGIChannelRequest | Undocumented |
Function | startCGI | Call this as the last thing in your CGI python script in order to hook up your site object with the incoming request. |
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))