-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Home
carlaskill edited this page Nov 11, 2022
·
4 revisions
Bottle is a fast and simple micro-framework for small web-applications.
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
Documentation - Blog - Wiki