from bottle import run, Bottle if __name__ == '__main__': myapp = Bottle() @myapp.route('/hello/:name/:count#\\d+#') def hello2(name, count): #start_response('200 OK', [('Content-Type', 'text/html')]) return name + "----" + str(count) @myapp.route('/maybe/:name3/:count#\\d+#') @myapp.route('/cool/kk/:name3/:count#\\d+#') def maybe(name3, count): #start_response('200 OK', [('Content-Type', 'text/html')]) return {123:name3 + "----" + str(count)} run(host='localhost', port=8080, app=myapp)