Skip to content

Instantly share code, notes, and snippets.

@itsbth
Created December 12, 2014 00:09
Show Gist options
  • Save itsbth/58941e6ad15a7087f96e to your computer and use it in GitHub Desktop.
Save itsbth/58941e6ad15a7087f96e to your computer and use it in GitHub Desktop.
from bottle import route, run, template
@route('/')
def index():
return template(*['<h1>Hello, {{subject}}!</h1>'], **{'subject': 'World', })
run(*[], **{'host': '0.0.0.0', 'port': '8080', })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment