Re: Communicate between Python and Node.js

2014-01-15 Thread Chris Angelico
On Thu, Jan 16, 2014 at 4:12 AM, Manish wrote: > At first I thought to use the requests library to GET/POST data to node, but > I googled around and it seems lots of people think TCP sockets are the way to > go. I tried implementing my own using several examples I have found online. > It *kind

Communicate between Python and Node.js

2014-01-15 Thread Manish
I've been tasked to write a module that sends data from Django to a Node.js server running on the same machine. Some magic happens in node and I recv the results back, which are then rendered using Django templates. At first I thought to use the requests library to GET/POST data to node, but I