[问题] Popen印出讯息到stdout并存到变量

楼主: clanguage (C语言)   2024-04-15 12:50:05
请问 subprocess.Popen 呼叫另一个程式的问题
需求是呼叫另一个程式将程式执行过程印出到画面(stdout)之外
同时把执行过程存到变量里做后续判断
例子如下, hello.py 要求使用者输入资料并印出,另一个程式 test.py呼叫 hello.py
想要储存 hello.py 的执行过程,但是如果设定stdout=PIPE,执行过程就不会显示提示
要使用者输入资料
不知道该怎么设定?
hello.py
if __name__=='__main__':
name = input("please enter your name : ")
print("hello, "+name)
test.py
def run_cmd(cmd):
process = subprocess.Popen(cmd, universal_newlines=True, shell=True,
stdout=PIPE, stderr=PIPE)
stdout, stderr = process.communicate()
ret = process.returncode
return ret, stdout, stderr
def main():
retval, output, stderr = run_cmd("hello.py")
print(f"\nResult:\n{output}")
sys.exit(0)
作者: DaOppaiLoli (大欧派萝莉)   2024-04-15 12:56:00
应该是要改 stdin 把使用者输入丢进去我看懂你的意思了,你可以在 communicate 之前呼叫process.stdout.readline() 把输出行印出来但子程序要输出换行才行,也可以用 .read(5) 之类的大概会像这样import subprocess as spp = sp.Popen(["python", "a.py"], stdout=sp.PIPE)while p.poll() != 0:print(p.stdout.read(1), flush=True)res = p.communicate()print(res)
作者: lycantrope (阿宽)   2024-04-15 14:04:00
communicate就会poll了 为何还要一个for loop
楼主: clanguage (C语言)   2024-04-15 19:58:00
谢谢D大有方向了

Links booklink

Contact Us: admin [ a t ] ucptt.com