I\'m new to python tornado server, and I were evaluating python tornado for my next project that has to work on real time environment. I\'ve run a sample code from github wi
You'll need the tornado.web.Application's add_handlers method; use it like this:
tornado.web.Application
app.add_handlers( r".*", # match any host [ ( r"/foo/([^/]*)", FooHandler ), ( r"/bar/([^/]*)", BarHandler ), ] )
Judging by its code, it does not block anything.