Reputation: 150
I am working on a chat application, and I am wondering what are the benefits of for example using django-channels instead of making the chat in "raw" django? Thank you in advance.
Upvotes: 1
Views: 453
Reputation: 998
django-channels is an abstraction to make building realtime applications easier. Django itself does not come with baked in websocket features so you could use raw Django and your own web sockets but it will be a lot harder and you will be reinventing lot of what django-channels does.
Upvotes: 2