Add CherryPy (#1240)

* add cherry

* increase language count

* update readme file to unclude cherry
This commit is contained in:
The Peeps191
2022-01-20 15:01:25 -07:00
committed by GitHub
parent 19a269982e
commit 4350b90ce9
2 changed files with 9 additions and 0 deletions

8
c/Cherry.py Normal file
View File

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