tags:

views:

136

answers:

3

What is the easiest way to implement HTTP push (comet) on Django?

Are there any existing frameworks?

Simple examples would be great.

+2  A: 

Try Oribited -- see example here and also this

stevejalim
+1  A: 

try with this to http://code.google.com/p/django-orbited/

eos87
+1  A: 

Beacon is also an option. It's a cloud-hosted push service, meaning you don't have to install anything. Supports both WebSockets and traditional long-poll.

Has a Python client too.

cgbystrom