保持子进程处于活动状态并继续向其发出命令? Python
如果我使用给定的命令在 python 中生成一个新的 subprocess
(假设我使用 python
命令启动 python 解释器),我如何将新数据发送到该进程(通过标准输入)?
If I spawn a new subprocess
in python with a given command (let's say I start the python interpreter with the python
command), how can I send new data to the process (via STDIN)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用标准 subprocess 模块。您使用 subprocess.Popen() 启动该进程,它将在后台运行(即与您的 Python 程序同时运行)。当您调用 Popen() 时,您可能希望将 stdin、stdout 和 stderr 参数设置为 subprocess.PIPE。然后,您可以使用返回对象上的 stdin、stdout 和 stderr 字段来写入和读取数据。
未经测试的示例代码:
Use the standard subprocess module. You use subprocess.Popen() to start the process, and it will run in the background (i.e. at the same time as your Python program). When you call Popen(), you probably want to set the stdin, stdout and stderr parameters to subprocess.PIPE. Then you can use the stdin, stdout and stderr fields on the returned object to write and read data.
Untested example code:
不。
如果要将命令发送到子进程,请创建一个 pty,然后分叉该子进程,并将 pty 的一端附加到其 STDIN。
这是我的一些代码的片段:
在这段代码中,pty 附加到 stderr,因为它接收错误消息而不是发送命令,但原理是相同的。
Don't.
If you want to send commands to a subprocess, create a pty and then fork the subprocess with one end of the pty attached to its STDIN.
Here is a snippet from some of my code:
In this code, the pty is attached to stderr because it receives error messages rather than sending commands, but the principle is the same.