Skip to content

Instantly share code, notes, and snippets.

@mmmaillot
Created May 28, 2019 09:45
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 mmmaillot/f96959bdb5cae4d8a1b435c68aba0814 to your computer and use it in GitHub Desktop.
Save mmmaillot/f96959bdb5cae4d8a1b435c68aba0814 to your computer and use it in GitHub Desktop.
from bottle import route, run, template
@route('/hello/<name>')
def index(name):
return template('<b>Hello {{name}}</b>!', name=name)
run(host='localhost', port=8080)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment