Answers for "how to print stdout while processing the execution in python"

0

how to print stdout while processing the execution in python

from subprocess import Popen, PIPE, CalledProcessError

with Popen(cmd, stdout=PIPE, bufsize=1, universal_newlines=True) as p:
    for b in p.stdout:
        print(b, end='') # b is the byte from stdout

if p.returncode != 0:
    raise CalledProcessError(p.returncode, p.args)
Posted by: Guest on June-04-2020

Code answers related to "how to print stdout while processing the execution in python"

Python Answers by Framework

Browse Popular Code Answers by Language