django-socketio
django-socketio copied to clipboard
WebSockets for Django
"Errors should never pass silently" https://github.com/stephenmcd/django-socketio/blob/master/django_socketio/urls.py#L11 Plz put after SocketIOServer running on 0.0.0.0:8080 Events loaded from apps: , Because i seen the socket recived but no the response, I pass...
Would be great to be able to run selenium tests fro django-socketio.
example_project russian words sended but doesn't appears.
I've setup the libraries as instructed (installed the Ubuntu dependencies, installed `django_socketio` via PIP, added in the URLconf, put `django_socketio` into my settings.py's `INSTALLED_APPS` and run `manage.py collectstatic`). I'm not...
I'm trying to broadcast a message to all clients listening on a channel whenever a new db entry is created for a particular model. I've added a post save hook...
Hi! Is there any chance to get channel inside function decorated by: @on_message(channel="^room-") def my_chat_handler(request, socket, context, message): # TODO: How can I get channel ... I can get all...
Hi, I'm trying to implement Redis with django-socketio in a chat. So here is what I did: ``` def listener(self): r = redis.StrictRedis() r = r.pubsub() r.subscribe('chat') for m in...
I just noticed that when I run 'runserver_socketio', my language setting of my settings.py is not respected anymore. The language is back to english. Do you have any idea on...
I wanna deploy my app with django_socketio on the nginx. I refer this article http://www.stephendiehl.com/?p=309. It is great.Anything is fine. I run it on Firefox 11.0 debian squezze. BUT, the...
Socket.io provides the method: socket.emit(event_name, params, callback) where callback is a function that received data sent by the server with the ack message. This is used by [backbone.iosync](http://alogicalparadox.com/backbone.iobind/#iosync) to populate...