On 26 March 2014 11:41, Victor Stinner <[email protected]> wrote: > > > I would like to know which WSGI implementations are compatible with > Tulip/asyncio (and maybe also Trollius!). >
pulsar has a wsgi server implementation compatible with WSGI 1.0.1 if the wsgi application handler is synchronous. In this respect, it can serve any standard web framework. In addition, it is able to serve asynchronous wsgi application handlers which conforms to pulsar wsgi specification described here: http://quantmind.github.io/pulsar/apps/wsgi/async.html#wsgi-async Both trollius and asyncio are supported thanks to a specialised Task class. The distribution has an example which shows how to run django and a websocket handler on the same server.
