python 逐行读取管道输出
我正在使用 popen 在 python 中运行子进程。我需要在输出时读取子进程输出的每一行,而不是在进程终止后获取所有内容。我已经尝试了在谷歌上能找到的一切,但没有成功。任何帮助将不胜感激。
I'm using popen to run a subprocess in python. I need to read each line the subprocess outputs as it is being outputted, rather then getting everything once the process terminates. I've tried everything I could find on Google with no success. Any help would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
subprocess.Popen
文档描述了其调用的可用参数。您希望将
bufsize
参数设置为1
(行缓冲输入/输出)。The
subprocess.Popen
documentation describes the available arguments to its call.You want to set the
bufsize
argument to1
(line-buffered input/output).