Can you make a python subprocess output stdout and stderr as usual, but also capture the output as a string?(你能像往常一样制作一个python子进程输出stdout和stderr,但也可以将输出捕获为字符串吗?)
问题描述
可能重复:
包装子进程'stdout/stderr
在这个问题中,hanan-n 询问是否有可能有一个 python 子进程输出到标准输出,同时还将输出保存在一个字符串中以供以后处理.这种情况下的解决方案是遍历每个输出行并手动打印它们:
In this question, hanan-n asked whether it was possible to have a python subprocess that outputs to stdout while also keeping the output in a string for later processing. The solution in this case was to loop over every output line and print them manually:
output = []
p = subprocess.Popen(["the", "command"], stdout=subprocess.PIPE)
for line in iter(p.stdout.readline, ''):
print(line)
output.append(line)
但是,此解决方案并不适用于您希望同时为 stdout 和 stderr 执行此操作的情况,同时满足以下条件:
However, this solution doesn't generalise to the case where you want to do this for both stdout and stderr, while satisfying the following:
- stdout/stderr 的输出应该分别到父进程的stdout/stderr
- 输出应尽可能实时完成(但我只需要访问最后的字符串)
- 不应更改 stdout 和 stderr 行之间的顺序(我不太确定如果子进程以不同的时间间隔刷新其 stdout 和 stderr 缓存,这将如何工作;让我们现在假设我们将所有内容都放在很好的块中包含完整的行?)
我查看了 子流程文档,但找不到任何可以做到这一点.我能找到的最接近的方法是添加 stderr=subprocess.stdout
并使用与上面相同的解决方案,但是我们失去了常规输出和错误之间的区别.有任何想法吗?我猜测解决方案 - 如果有的话 - 将涉及对 p.stdout
和 p.stderr
进行异步读取.
I looked through the subprocess documentation, but couldn't find anything that can achieve this. The closest I could find is to add stderr=subprocess.stdout
and use the same solution as above, but then we lose the distinction between regular output and errors. Any ideas? I'm guessing the solution - if there is one - will involve having asynchronous reads to p.stdout
and p.stderr
.
这是我想做的一个例子:
Here is an example of what I would like to do:
p = subprocess.Popen(["the", "command"])
p.wait() # while p runs, the command's stdout and stderr should behave as usual
p_stdout = p.stdout.read() # unfortunately, this will return '' unless you use subprocess.PIPE
p_stderr = p.stderr.read() # ditto
[do something with p_stdout and p_stderr]
推荐答案
这个例子似乎对我有用:
This example seems to work for me:
# -*- Mode: Python -*-
# vi:si:et:sw=4:sts=4:ts=4
import subprocess
import sys
import select
p = subprocess.Popen(["find", "/proc"],
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout = []
stderr = []
while True:
reads = [p.stdout.fileno(), p.stderr.fileno()]
ret = select.select(reads, [], [])
for fd in ret[0]:
if fd == p.stdout.fileno():
read = p.stdout.readline()
sys.stdout.write('stdout: ' + read)
stdout.append(read)
if fd == p.stderr.fileno():
read = p.stderr.readline()
sys.stderr.write('stderr: ' + read)
stderr.append(read)
if p.poll() != None:
break
print 'program ended'
print 'stdout:', "".join(stdout)
print 'stderr:', "".join(stderr)
一般来说,在任何情况下,如果您想同时处理多个文件描述符并且您不知道哪个有内容供您阅读,您应该使用 select 或类似的东西(例如 Twisted reactor).
In general, any situation where you want to do stuff with multiple file descriptors at the same time and you don't know which one will have stuff for you to read, you should use select or something equivalent (like a Twisted reactor).
这篇关于你能像往常一样制作一个python子进程输出stdout和stderr,但也可以将输出捕获为字符串吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:你能像往常一样制作一个python子进程输出stdout和stderr,但也可以将输出捕获为字符串吗?
基础教程推荐
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 筛选NumPy数组 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01