You are not logged in Log in Join
You are here: Home » Members » adytumsolutions » PyCon2004 » TestWebCGIServer » wikipage_view

Log in
Name

Password

 
 
Zope2 Sprint »

TestWebCGIServer

Code:

 from twisted.internet import reactor
 from twisted.web import static, server, twcgi

 docroot = "/Users/oubiwann/scripts/python/zope_twisted"
 cgibin = docroot + '/cgibin'
 root = static.File(docroot)
 root.putChild("cgi-bin", twcgi.CGIDirectory(cgibin))
 reactor.listenTCP(6969, server.Site(root))
 reactor.run()