Files
cherrypy_sqlite_restapi/examples/cherry_hello_world.py
2019-06-17 11:45:33 +02:00

11 lines
152 B
Python

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