I'm new to subprocessing.

I just need a really simple win32 example of communicate() between a parent.py and child.py. A string sent from parent.py to child.py, altered by child.py and sent back to parent.py for print() from parent.py.

I'm posting this because examples I have found end up either not being win32 or not using a child which just confuses me.

Thanks for you help.

link|improve this question

78% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Here is a simple example as per your requirements. This example is Python 3.x (slight modifications are required for 2.x).

parent.py

import subprocess
import sys

s = "test"
p = subprocess.Popen([sys.executable, "child.py"],
                     stdin=subprocess.PIPE,
                     stdout=subprocess.PIPE)
out, _ = p.communicate(s.encode())
print(out.decode())

child.py

s = input()
s = s.upper()
print(s)

I wrote and tested this on Mac OS X. There is no platform-specific code here, so there is no reason why it won't work on Win32 also.

link|improve this answer
thanks for the quick response. It does not seem to be accepting raw_input. probably because I'm using python 3. I tried to change it to input but this raised another error 'EOFError: EOF when reading a line'. – Rhys Dec 28 '11 at 6:58
Ok, I'll modify the example for Python 3.x. – Greg Hewgill Dec 28 '11 at 7:00
i still seem to get ... self.stdin.write(input) ... TypeError: must be bytes or buffer, not str – Rhys Dec 28 '11 at 7:06
You will need p.communicate(s.encode()) as I wrote above. This is because Python 3 strings are Unicode and must be encoded before writing to a pipe (and decoded after reading). – Greg Hewgill Dec 28 '11 at 7:07
ahh i see now. needed to refresh page. thanks a million. unfortunatly i cant give you that many reps but it looks like you have plenty :P – Rhys Dec 28 '11 at 7:09
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.