I am using the subprocess module to run binaries from python.
To capture the output produced by the binary, I am using:
proc = subprocess.Popen (command_
Simply don't send the output to a pipe:
proc = subprocess.Popen (command_args, shell=False) proc.communicate()