Answers for "python subprocess print stdout while process running"

0

python subprocess print stdout while process running

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 "python subprocess print stdout while process running"

Python Answers by Framework

Browse Popular Code Answers by Language