examples added

This commit is contained in:
2019-06-17 11:45:33 +02:00
parent 3f604d8a46
commit 3531d493d8
3 changed files with 78 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import cherrypy
class HelloWorld(object):
@cherrypy.expose
def index(self):
return "Hello World!"
cherrypy.quickstart(HelloWorld())