gpt4 book ai didi

python - 脚本/子进程按时间顺序输出

转载 作者:行者123 更新时间:2023-11-28 17:34:06 25 4
gpt4 key购买 nike

我正在开发一个以两种方式生成图像的 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 ***

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

代码流程如下(一般):

# 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. Sebastian 的回答,该回答也有效。不过,我正在通过外部工具配置运行脚本,因此 -u 需要进入那里。

旧的(在争论中):

script.py ${folder_prompt}

新:

-u script.py ${folder_prompt}

关于python - 脚本/子进程按时间顺序输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32128752/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com