Skip to main content

All Questions

-1 votes
1 answer
545 views

Django and channels, expose model data via websockets after save

I am new to websocket and channel with django. In my django project i would to expose saved data after a post_save event occur in a specific model via websocket. I have django 3.2 and i install: ...
Manuel Santi's user avatar
  • 1,122
0 votes
0 answers
535 views

Websocket connection failed in Django and user matching query does not exist error

I am trying to create a one on one chat application using django channels,websockets and Redis.Tried implementing django channels from (https://youtu.be/RVH05S1qab8) but getting errors like this (from ...
Raunak Jain's user avatar
1 vote
0 answers
97 views

Django and Django channels

I have one django project, which uses django channels as well. Now I want to separate django channels into a separate project. Means, one applicaton will have two django projects, Django for http ...
Abhinav verma's user avatar
4 votes
1 answer
3k views

How to use Django channels to push newly created data to client side without reloading and not completely changing the existing normal view code

Hey guys I am quite new to django and django channels. I have a small doubt related to channels. For example, if I have a post model and I created a post, for the user to view the post, they need to ...
prehistoricbeast's user avatar
0 votes
1 answer
737 views

Django Channels and Web Socket with 3rd party database

I want to create one Dashboard to show users count for my ML project where I'm updating users count in MongoDB on friction of seconds. I need to show that count in dashboard with real time sockets. ...
Jay Darji's user avatar
0 votes
1 answer
2k views

Django Channel web sockets - append message to Model.objects

Lately, I've been investigating onto integrating web sockets into Django. According to the documentation, using Channels is the way to go. Given an illustrative model Query class Request(models....
dsafa's user avatar
  • 793