9 lines
149 B
Python
Raw Normal View History

import cherrypy
class HelloWorld(object):
@cherrypy.expose
def index(self):
return "Hello World"
cherrypy.quickstart(HelloWorld())