import cherrypy class Main: def helloworld(self): return "Hello World!" helloworld.exposed = True cherrypy.root = Main() cherrypy.server.start()