Process intercommunication

Paul Rubin phr-n2001d at nightsong.com
Mon Nov 5 12:46:06 EST 2001


Mikael Olofsson <mikael at isy.liu.se> writes:
> I feel that I am in quick sand here. I haven't got the slightest idea
> how to do this. Any help is welcome. 

The simplest way is probably with the SocketServer module.  A is a
server that listens on a unix domain socket.  B is a client that
connects to the socket and sends the data to A.  If you use the
ThreadingMixin or ForkingMixin features, A can talk to multiple
B's simultaneously.




More information about the Python-list mailing list