Skip to content

Instantly share code, notes, and snippets.

@mlalevic
Created October 13, 2013 18:12
Show Gist options
  • Save mlalevic/6965441 to your computer and use it in GitHub Desktop.
Save mlalevic/6965441 to your computer and use it in GitHub Desktop.
Simple hello world example for web.py
import web
urls = (
'/', 'index'
)
class index:
def GET(self):
return "Hello, world!"
if __name__ == "__main__":
app = web.application(urls, globals())
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment