What are modern Comet servers written in Python?

I created my application in python (using greenthreads from eventlent) and I had to use Orbited as a comet server to transfer requests from user javascript code to my application.

Unfortunately, I found that Orbited is dead, the site has been running for several weeks, and it lacks python 2.7 support.

Could you recommend some good replacements?

+5
source share
4 answers

It seems that at the moment, the best option is to use Socket.io , which offer a simple and feature-rich software interface both on the server and on the client side. Python options:

0
source

You can create a comet server using gevent , meinheld , mongrel2 , tornado , twisted or uwsgi , all of which are examples of lengthy polls. This list is not exhaustive. You may also consider using WebSockets, several have WebSocket examples.

+1
source

, , CometD .

+1

http://meteorserver.org/

This will probably not be recorded as an answer, as you are looking for a server written in Python. However, I would recommend this efficient server written in Perl. In the end, IMHO, as a ready-made / ready-to-release solution, is as good as any other Python-based server.

-1
source

All Articles