I want to capture stdout from a long-ish running process started via subprocess.Popen(...) so I\'m using stdout=PIPE as an arg.
subprocess.Popen(...)
stdout=PIPE
However, be
Can you simply print it as you read it from the pipe?
print