I've built my application in python (using greenthreads from eventlent) and I was supposed to use Orbited as comet server to pass requests from user-end javascript code to my application.

Sadly, I found that Orbited is dead, site is down for a few weeks and it lack python 2.7 support.

Could you recommend some good replacements?

link|improve this question

possible duplicate of Python Comet Server – Senthil Kumaran Jun 25 '11 at 1:07
2  
it's outdated, as I said, Orbited is dead and seems like StreamHub doesn't work in Chrome – Andrew Jun 25 '11 at 1:09
1  
Thanks for clarifying that. – Senthil Kumaran Jun 25 '11 at 1:17
feedback

3 Answers

You could build a comet server using gevent, meinheld, mongrel2, tornado, twisted, or uwsgi, all of which have long-polling examples. This list isn't exhaustive. You could also consider using WebSockets instead, several have WebSocket examples as well.

link|improve this answer
but the reason why I've created this topic is that I'm not willing to create it by hand and looking for some out-the-box solution (which Orbited was) – Andrew Jun 25 '11 at 2:29
@Andrew I think you are overestimating the complexity of writing a comet app. This answer has a simple example of long-polling code. Also check out tornado's chat example. – zeekay Jun 25 '11 at 3:34
feedback

http://meteorserver.org/

Probably that won't register as an answer as you are looking for a server written in Python. Still, I would recommend this efficient server written in Perl. After all, IMHO, as an out-of-the-box/off-the-shelf solution it's as good as any other Python-based server can get.

link|improve this answer
feedback

I haven't used it personally, but it seems that CometD has a Twisted-based implementation of its protocol.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.