Listing 2. Spawning a Basic CherryPy Server # From the CherryPy Docs at # https://cherrypy.readthedocs.org/en/latest/tutorials.html import cherrypy # import the cherrypy module class HelloWorld(object): # @cherrypy.expose # Make the function available def index(self): # Create a function for each request return "Hello world!" # Returned value is sent to the browser if __name__ == '__main__': cherrypy.quickstart(HelloWorld()) # start the CherryPy server # and pass the class handle # to handle request