[solved] Confederate and connecting computers
I need to connect two computers so that they can communicate with each other during an experiment. I was told to use pyzmq (zeroMQ python bindings) and was wondering if anyone could explain this further. There are very few guides on something like this. Is there a precedent for using 0MQ or even using an external script to connect computers. Help appreciated.

Comments
Why not simply use the socket module? Connect two computers with an ethernet cable (or to the same network), and you can use the socket module to exchange strings.
You might want to have a look at this thread, which contains sample code.
Thank you! I am new to this. The socket should work.
Good luck!