We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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