I am using bottle to do routing like this. I want to do something similar to this using eventlet.Any ideas?
from bottle import route, run
@route('/:name')
def index(name='World'):
return '<b>Hello %s!</b>' % name
run(host='localhost', port=8080)