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)
link|improve this question

73% accept rate
You code is from bottlepy.org/docs/dev so why don't you read the tutorial on bottle? What's the question anyway? – Ber Apr 19 '11 at 7:16
I want to implement something using eventlet.. I have some routing similar to this. i want to do the same on eventlet – Abdul Kader Apr 19 '11 at 8:26
Bind the decorate to a function and return out? – Jakob Bowyer Apr 19 '11 at 9:02
Ya . somewhat similar to it.. – Abdul Kader Apr 19 '11 at 9:43
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.