Skip to content

Instantly share code, notes, and snippets.

@fmasanori
Created July 3, 2013 21:23
Show Gist options
  • Save fmasanori/5922942 to your computer and use it in GitHub Desktop.
Save fmasanori/5922942 to your computer and use it in GitHub Desktop.
tutorial bottle 02
import bottle
@bottle.route('/')
def home_page():
mythings = ['apple', 'orange', 'banana', 'peach']
return bottle.template('hello_world', {'username':'Masanori',
'things':mythings})
bottle.debug(True)
bottle.run(host='localhost', port = 8080)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment