Re: Python process communication

2008-08-17 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: I'd like to write a script that will connect to another already running process, pipe some data to it's input and receive data from it's output. I can create another process using subprocess module, but how do I connect to already running process? Maybe there is a bett

Python process communication

2008-08-17 Thread projects . gg . aaron
Hi, I'd like to write a script that will connect to another already running process, pipe some data to it's input and receive data from it's output. I can create another process using subprocess module, but how do I connect to already running process? Maybe there is a better solution for process