real time subprocess.Popen via stdout and PIPE

Your interpreter is buffering. Add a call to sys.stdout.flush() after your print statement.

Leave a Comment