Script/subprocess 按时间顺序输出

Script/subprocess output in time order

我正在开发一个 python 脚本,该脚本以两种方式生成图像:首先创建基础图像,然后创建新图像与原始图像进行比较,如果两者之间存在差异则输出.主脚本调用第二个脚本,该脚本进行实际比较。

我 运行 遇到的问题是两个脚本的输出没有按顺序排列。例如,这里是 运行 比较的输出:

DIFFERENTIAL RUNNING NOW 16:52:02.062000
*** image05.jpg MATCHES ***
MARKER ONE: Differential happened yet? 16:51:51.821000
MARKER TWO: Where's the Diff? 16:51:51.824000
==== Test\Dir ====
Copy Input
Start Comparison
Doing Comparison

我想要的格式更像这样:

MARKER ONE: Differential happened yet? 16:51:51.821000
MARKER TWO: Where's the Diff? 16:51:51.824000
==== Test\Dir ====
Copy Input
Start Comparison
Doing Comparison
DIFFERENTIAL RUNNING NOW 16:52:02.062000
*** image05.jpg MATCHES ***

所以我得到了我需要的输出,但是查看时间戳,它们是乱序的(为了正确组织,结果需要在 "Doing Comparison" 部分之后出现)

代码流程是这样的(一般):

# Imports, arguments
.
.
MARKER ONE
.
.
==== Test\Dir ====
.
.
if creating:
    # create the images here
    # 3 Subprocess are called here, but have no output (that I care about)
    # Images are copied to their home directory
    print "Copy Input"
else: (comparison)
    print "Start Comparison"
    # create new images to be compared
    # Repeat same 3 subprocesses
    print "Doing Comparison"
    # Comparison Subprocess

这是第二个 python 脚本启动的地方,它比较两张图像(主目录中的一张和同名临时目录中的一张)之间的像素并报告返回有多少像素不同,将它们存储在 .txt 文件中,然后打印到控制台:

if os.path.isfile(tempImg):
        try:
            ouput = Popen(command, shell=True)
            stdout, stderr = output.communicate()
             if stdout is not None:
                 print stdout
             if stderr is not None:
                 print "Error occurred during execution:"
                 print stderr
        except OSError as e:
            print "Execution failed: " + e
        with open(output) as r:
            result = r.read()
        if result == '0':
            print "*** {} MATCHES ***".format(Base)
        else:
            message = "*** {0} DOES NOT MATCH: {1} pixels differ***".format(Base, result)
            print message
            out = open("{}\img_errs.txt".format(temp), "a")
            out.write(message + "\n")
    else:
        message = "*** {} DOES NOT EXIST ***".format(tempImg)
        print message
        out = open("{}\img_errs.txt".format(temp), "a")
        out.write(message + "\n")

父脚本中的子进程由此处显示的相同 try/except 格式的函数完成。我试过使用 subprocess.call() 代替 Popen/.communicate() 部分,以及 Popen.wait()。 stdout 没有任何结果,输出只是打印语句,但它们似乎优先于父脚本并首先打印,即使时间戳证明父行首先出现。

有什么方法可以让父脚本的打印语句显示在子进程之前?这一切都是在 Eclipse Mars 中使用 Python 2.7.

完成的

这个在评论里已经回答了,但是我想把它放在这里更容易看到。第一部分的功劳来自 CasualDemon 的评论(这是我最终使用的评论):

在此处添加 flush() 行:

else: (comparison)
    print "Start Comparison"
    # create new images to be compared
    # Repeat same 3 subprocesses
    print "Doing Comparison"
    sys.stdout.flush()   <-- new
    # Comparison Subprocess

给了我需要的打印序列(按时间顺序)。

第二部分归功于 J.F。塞巴斯蒂安的回答也有效。我是 运行 通过外部工具配置的脚本,所以 -u 需要进入那里。

旧(有争议):

script.py ${folder_prompt}

新:

-u script.py ${folder_prompt}