Python的subprocess模块是python自带的,它能让我们生成子进程,连接到子进程的输入/输出/错误流,并获得它们的返回值。这个模块是为了替代os.system
和os.spawn
函数而存在的
The subprocess module allows you to spawn new processes, connect to their input/output/error pipes, and obtain their return codes. This module intends to replace several older modules and functions1
os.system
os.spawn*
在使用Python的subprocess模块的时候,想要创建非阻塞的子进程时,会使用subprocess.Popen
对象。在构建这个对象的时候可以通过传递stdin
,stdout
,stderr
参数来指定该进程各种流的目标。但是,运行子python进程的时候输出流的内容只会在子进程运行结束之后才会写入对应的文件,我暂时没发现其它
用个代码举例说明一下
# main.py
import subprocess
# out = open("out.txt", "wb+")
out = subprocess.PIPE
p = subprocess.Popen(["python", "sub.py"], stdout=out)
while p.poll(