WebSocket Django Python

I have to add real time data update in my Django project.I have to send data from one project and receive it in another project. I would like to add web socket in my first project and send data from it and listen that request in another project using Javascript to show real time update on dashboard. How is it possible to send data when we call an function from first project using web socket and listen that request in another project to update data .

Thanks

I have created Web socket connection in my first project but got stucked while sending data from that connection . We need to send data when an function call .

Back to Top