1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import cherrypy class Server(): def __init__(self): pass @cherrypy.expose def index(self,quote="nothing"): return "<html><body><h1>Hi</h1><p>you said %s</p></body></html>" %quote @cherrypy.expose def default(self,*path,**kwargs): return "Hello world"