在Python中,我们通过使用标准库中的subprocess模块来fork一个子进程,并运行一个外部的程序(类似于在linux中fork一个子进程,然后在子进程中exec另外一个程序)。
这一模块中提供了多种方法:
1
|
subprocess.call(args, *, stdin=None, stdout=None, stderr=None, shell=False)
|
1
|
subprocess.check_call(args, *, stdin=None, stdout=None, stderr=None, shell=False)
|
1
|
subprocess.check_output(args, *, stdin=None, stderr=None, shell=False, universal_newlines=False)
|
1
|
subprocess.Popen(args, bufsize=0, executable=None, stdin=None, stdout=None, stderr=None, preexec_fn=None, close_fds=False, shell=False, cwd=None, env=None, universal_newlines=False, startupinfo=None, creationflags=0)
|
导致死锁
的情况。所以官方建议使用
Popen.communicate()
方法,因为子进程的输出是直接写入系统内存空间,一般不会超出内存上限。
subprocess模块学习-call, checkall, check_output, Popen
Popen communicate() 和wait()使用上的区别