Skip to content

Instantly share code, notes, and snippets.

@fnielsen
Created October 2, 2012 13:16
Show Gist options
  • Save fnielsen/3819040 to your computer and use it in GitHub Desktop.
Save fnielsen/3819040 to your computer and use it in GitHub Desktop.
CherryPy Hello World
# http://docs.cherrypy.org/stable/concepts/basics.html
import cherrypy
class HelloWorld:
def index(self):
return "Hello world!"
index.exposed = True
cherrypy.quickstart(HelloWorld())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment