pipe using python

Jerry Hill malaclypse2 at gmail.com
Sat Oct 16 10:55:52 EDT 2010


On Sat, Oct 16, 2010 at 5:42 AM, hiral <hiralsmaillist at gmail.com> wrote:
> Like we 'named pipes', how we can achieve comminication between more
> than two processes.
> And how it can be scaled to remote machines?
> Any idea?

Have you looked at the multiprocessing module?  It handles
communication between processes both locally and remotely, with an
interface very similar to the threading module.
http://docs.python.org/library/multiprocessing.html

Or perhaps pyro? http://www.xs4all.nl/~irmen/pyro3/manual/1-intro.html

-- 
Jerry



More information about the Python-list mailing list