Re: Using Socket Programmaing with django(for a chat room web app)

2016-10-26 Thread Daniel Furman
I'm a fan of socket.io I've done this in PHP using laravel and redis. There are python pub/sub providers as well so swapping the laravel/PHP for Django and Python should be very doable. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsub

Re: Using Socket Programmaing with django(for a chat room web app)

2016-10-25 Thread Rafael E. Ferrero
Maybe you can use Tornado for the websockets Rafael E. Ferrero 2016-10-25 10:08 GMT-03:00 CHAITANYA BHATIA < chaitanya.bhatia.cs...@itbhu.ac.in>: > I want to create a chat room web application without using django Chains > (i.e. I need to use the socket module provided by Python by default). I

Using Socket Programmaing with django(for a chat room web app)

2016-10-25 Thread CHAITANYA BHATIA
I want to create a chat room web application without using django Chains (i.e. I need to use the socket module provided by Python by default). I am facing a difficulty in submitting the input from the html page to the client function.The only way I know of submitting the input from the webpage