使用 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中文网其他相关文章!