python 逐行读取管道输出

发布于 2024-11-14 20:39:10 字数 103 浏览 2 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天煞孤星 2024-11-21 20:39:10

subprocess.Popen文档描述了其调用的可用参数。

您希望将 bufsize 参数设置为 1(行缓冲输入/输出)。

The subprocess.Popen documentation describes the available arguments to its call.

You want to set the bufsize argument to 1 (line-buffered input/output).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文