9 lines
149 B
Python
9 lines
149 B
Python
![]() |
import cherrypy
|
||
|
|
||
|
class HelloWorld(object):
|
||
|
@cherrypy.expose
|
||
|
def index(self):
|
||
|
return "Hello World"
|
||
|
|
||
|
cherrypy.quickstart(HelloWorld())
|