gpt4 book ai didi

python - 处理标准输入和标准输出

转载 作者:行者123 更新时间:2023-11-30 23:35:41 25 4
gpt4 key购买 nike

我正在尝试使用subprocess来处理流。我需要将数据写入流,并能够异步从中读取数据(在程序终止之前,因为我的程序需要几分钟才能完成,但它会产生输出)。

对于学习案例,我一直在使用 Windows 7 中的timeout 命令:

import subprocess
import time

args = ['timeout', '5']
p = subprocess.Popen(args, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=False)
p.stdin.write('\n') # this is supposed to mimic Enter button pressed event.

while True:
print p.stdout.read() # expected this to print output interactively. This actually hungs.
time.sleep(1)

我哪里错了?

最佳答案

这一行:

print p.stdout.read() # expected this to print output interactively. This actually hungs.

挂起,因为read()意味着“读取所有数据直到EOF”。请参阅the documentation 。看起来您可能想一次读一行:

print p.stdout.readline()

关于python - 处理标准输入和标准输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17146465/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com