2010-05-30 14:36:06 -04:00

11 lines
233 B
Python

import cherrypy
cherrypy.config.update({'environment': 'embedded'})
class Root(object):
def index(self):
return 'Hello World!'
index.exposed = True
app = cherrypy.Application(Root(), script_name=None, config=None)