gpt4 book ai didi

python - 如何获取子进程的 stderr 流输出的最后 N 行?

转载 作者:行者123 更新时间:2023-11-28 23:06:26 30 4
gpt4 key购买 nike

我是一名 Python 新手,正在编写一个 Python (2.7) 脚本,该脚本需要执行许多外部应用程序,其中一个应用程序将大量输出写入其 stderr 流。我试图找出一种简洁明了的方法(在 Python 中)从该子进程的 stderr 输出流中获取最后 N 行。

目前,我正在从我的 Python 脚本运行该外部应用程序,如下所示:

p = subprocess.Popen('/path/to/external-app.sh', stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, stderr = p.communicate()

if p.returncode != 0:
print "ERROR: External app did not complete successfully (error code is " + str(p.returncode) + ")"
print "Error/failure details: ", stderr
status = False
else:
status = True

我想捕获 stderr 流中的最后 N 行输出,以便将它们写入日志文件或通过电子邮件发送等。

最佳答案

N = 3 # for 3 lines of output
p = subprocess.Popen(['/path/to/external-app.sh'],
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, stderr = p.communicate()

if p.returncode != 0:
print ("ERROR: External app did not complete successfully "
"(error code is %s)" % p.returncode)
print "Error/failure details: ", '\n'.join(stderr.splitlines()[-N:])
status = False
else:
status = True

关于python - 如何获取子进程的 stderr 流输出的最后 N 行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4995095/

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