The Peeps191 4350b90ce9
Add CherryPy (#1240)
* add cherry

* increase language count

* update readme file to unclude cherry
2022-01-20 16:01:25 -06:00

9 lines
149 B
Python

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