1 2 3 4 5 6 7 8 9 10 11 12 13
import cherrypy class Server(): def __init__(self): pass @cherrypy.expose def default(self): return "Hello world"