Ada
Ada

Reputation: 1796

Converting code from the Tornado python web framework to work independently

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 been attempted before (and the result published)?

Upvotes: 1

Views: 260

Answers (1)

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 798764

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.

Upvotes: 3

Related Questions