首页 > 后端开发 > Python教程 > 如何在 Python 中同时捕获和显示子进程的实时输出?

如何在 Python 中同时捕获和显示子进程的实时输出?

Susan Sarandon
发布: 2024-12-03 21:58:15
原创
118 人浏览过

How Can I Simultaneously Capture and Display Live Output from a Subprocess in Python?

在存储子进程命令输出的同时打印实时输出

使用 subprocess.Popen 调用子进程时,我们可以同时存储其输出用于日志记录并将其实时显示在终端。

可能的解决方案

选项 1:使用迭代器

import subprocess
import sys

with open("test.log", "wb") as f:
    process = subprocess.Popen(your_command, stdout=subprocess.PIPE)
    for c in iter(lambda: process.stdout.read(1), b""):
        sys.stdout.buffer.write(c)
        f.buffer.write(c)
登录后复制

选项 2:使用读取器和写入器

import io
import time
import subprocess
import sys

filename = "test.log"
with io.open(filename, "wb") as writer, io.open(filename, "rb", 1) as reader:
    process = subprocess.Popen(command, stdout=writer)
    while process.poll() is None:
        sys.stdout.write(reader.read())
        time.sleep(0.5)
    # Read the remaining
    sys.stdout.write(reader.read())
登录后复制

选项 3:自定义解决方案

ret_val = subprocess.Popen(run_command,
                            stdout=log_file,
                            stderr=subprocess.PIPE,
                            shell=True)
while not ret_val.poll():
    log_file.flush()
登录后复制

在另一个终端, run:

tail -f log.txt
登录后复制

使用这些方法,您可以捕获子进程输出,同时实时显示它,确保日志记录和进度监控。

以上是如何在 Python 中同时捕获和显示子进程的实时输出?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板