Yuval Adam
Yuval Adam

Reputation: 165172

Comet framework for Django

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

Are there any existing frameworks?

Simple examples would be great.

Upvotes: 3

Views: 2214

Answers (3)

Steve Jalim
Steve Jalim

Reputation: 12195

Try Oribited -- see example here and also this (No longer available)

Upvotes: 2

cgbystrom
cgbystrom

Reputation: 1987

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.

Upvotes: 3

eos87
eos87

Reputation: 9353

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

Upvotes: 1

Related Questions