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.