# This is a resource file, which generates some useful # information # To use it, rename it to "hello.rpy" and put it in the path of # any normally-configured Twisted web server. from twisted.web import static import time now = time.ctime() d = '''\ Hello Rpy

Hello World, It is Now %(now)s

''' resource = static.Data(d, 'text/html')