Skip to content
Gabe De edited this page Jun 4, 2013 · 21 revisions


Bottle is a fast and simple micro-framework for small web-applications.

Example

from bottle import route, run
@route('/hello/<name>')
def hello(name):
    return 'Hello, %s' % name
run(host='localhost', port=8080)
# --> http://localhost:8080/hello/world

Links

Clone this wiki locally