Skip to content

Instantly share code, notes, and snippets.

@mlynch
Created June 27, 2013 03:03
Show Gist options
  • Save mlynch/5873641 to your computer and use it in GitHub Desktop.
Save mlynch/5873641 to your computer and use it in GitHub Desktop.
Hello world
import web
urls = ("/.*", "hello")
app = web.application(urls, globals())
class hello:
def GET(self):
return 'Hello, world!'
if __name__ == "__main__":
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment