What's the simple way to implement a chat system in Django?
54 views
Skip to first unread message
Kishore Srinivas
unread,
Oct 2, 2017, 3:39:48 PM10/2/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django users
I want to make a chat system in Django, but all those channel stuffs looks difficult , so are there any other simpler way to implement a chat system, thanks
Samuel Muiruri
unread,
Oct 2, 2017, 5:37:04 PM10/2/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django users
You'll end up needing to use sockets to get a "live chat" and channels is one of the quickest way to get there.
Ryan Nowakowski
unread,
Oct 5, 2017, 3:41:36 AM10/5/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Kishore Srinivas, Django users
You could have each client poll for new messages using good old http get. It won't be quite as responsive or performant though.
Alex Chiaranda
unread,
Oct 5, 2017, 1:14:03 PM10/5/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message