gpt4 book ai didi

python - 在不破坏管道的情况下与进程多次通信?

转载 作者:IT老高 更新时间:2023-10-28 22:19:00 25 4
gpt4 key购买 nike

这不是我第一次遇到这个问题,而且真的很困扰我。每当我使用 Python subprocess 模块打开管道时,我只能与它 communicate 一次,如文档所述:从 stdout 和 stderr 读取数据,直到结束-of-file 到达

proc = sub.Popen("psql -h darwin -d main_db".split(),stdin=sub.PIPE,stdout=sub.PIPE)
print proc.communicate("select a,b,result from experiment_1412;\n")[0]
print proc.communicate("select theta,zeta,result from experiment_2099\n")[0]

这里的问题是第二次,Python 不高兴。的确,他决定在第一次沟通后关闭文件:

Traceback (most recent call last):
File "a.py", line 30, in <module>
print proc.communicate("select theta,zeta,result from experiment_2099\n")[0]
File "/usr/lib64/python2.5/subprocess.py", line 667, in communicate
return self._communicate(input)
File "/usr/lib64/python2.5/subprocess.py", line 1124, in _communicate
self.stdin.flush()
ValueError: I/O operation on closed file

是否允许多次通信?

最佳答案

我认为你误解了沟通......

http://docs.python.org/library/subprocess.html#subprocess.Popen.communicate

communicate 向另一个进程发送一个字符串,然后等待它完成......(就像你说的等待 EOF 监听 stdout 和 stderror)

你应该做的是:

proc.stdin.write('message')

# ...figure out how long or why you need to wait...

proc.stdin.write('message2')

(如果您需要获取 stdout 或 stderr,您可以使用 proc.stdout 或 proc.stderr)

关于python - 在不破坏管道的情况下与进程多次通信?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3065060/

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