Quantcast
Channel: Communication between Python processes - Stack Overflow
Browsing index pages (2 articles)

Communication between Python processes

I want to implement a "bus" over which python processes can communicate.The "bus" B shall run as a python process. Other Python processes C1, C2, ...Cn shall be able to register to the bus by a name....

View Article


Answer by Arnial for Communication between Python processes

If you want to start all processes (c1,c2,bus) separately. Then you should use FIFOs or Unix Sockets to communicate. Pipes and Queues in multiprocessing package, applicable only if you can send copy of...

View Article

Browsing index pages (2 articles)


Latest Images