On Wednesday 05 April 2006 09:54, Normand Savard wrote: > Example of script: > > #!/usr/bin/env python > > print 'Allo'
I think this should be:
---
from twisted.web import resource
class AlloResource(resource.Resource):
def render(self, request):
return "Allo"
resource = AlloResource()
---
Mike.
_______________________________________________
Twisted-web mailing list
[email protected]
http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-web
