python : simplest http server with cherrypy
in the browser, return a "Hello world!" at http://localhost:8080(/index)
1 2 from cherrypy import cpg 3 4 class HelloWorld: 5 6 @cpg.expose 7 def index(self): 8 return "Hello world!" 9 10 cpg.root = HelloWorld() 11 cpg.server.start()