在 Python 中,如果您想使用 subprocess 调用生成大量输出的 Linux 实用程序,可能会带来挑战增量地捕获并处理输出。
在父进程中,proc.stdout 语句中的 for 行在迭代之前读取整个输入 它。这可能会导致在生成大量输出之前,输出不会出现在您的应用程序中。
要解决此问题,请改用 proc.stdout.readline():
import subprocess proc = subprocess.Popen(['python', 'fake_utility.py'], stdout=subprocess.PIPE) while True: line = proc.stdout.readline() if not line: break #the real code does filtering here print "test:", line.rstrip()
This解决方案允许您过滤并打印子流程中可用的每一行输出。请记住,您可能仍然需要考虑子进程的缓冲行为。
以上是如何在Python中高效地逐行读取和处理子进程输出?的详细内容。更多信息请关注PHP中文网其他相关文章!