Skip to content

Instantly share code, notes, and snippets.

@baojie
Created January 23, 2014 01:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save baojie/8571398 to your computer and use it in GitHub Desktop.
Save baojie/8571398 to your computer and use it in GitHub Desktop.
from bottle import route, run
@route('/hello')
def hello():
return "Hello World!"
run(host='localhost', port=8080, debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment