I need to use a library which depends on the Tornado Python Web Framework, but I cannot have it dependent on Tornado.
Does anyone have any advice when converting code over from this framework?
Has anything similar bee开发者_如何学JAVAn attempted before (and the result published)?
The normal way to create web-server-independent Python web apps is to code it to WSGI, optionally using a web framework. This way it can be used with any WSGI container.
精彩评论