> > I've got a server process written in C++ running on Unix machine.
> > On the same box I'd like to run multiple Python scripts that will
> > communicate with this server.
> > 
> > Can you please suggest what would be best was to achieve this ?
As said before, there are many options. Here are some:
* protobuf, thrift, avro ...
* json/xml over http
   - Python has XMLRPC module
* zeromq
* ...

IMO investigate some time learning the options, code a simple api using one or 
two that you like and pick a winner.

For 10 calls/min you can go that wrong either way :)
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to