我想用程序启动几个子进程,即模块foo.py启动bar.py的几个实例.
由于我有时必须手动终止进程,因此我需要进程id来执行kill命令.
即使整个设置非常“脏”,如果通过os.system启动进程,是否有一个很好的pythonic方法来获取进程’pid?
foo.py:
import os
import time
os.system("python bar.py \"{0}\ &".format(str(argument)))
time.sleep(3)
pid = ???
os.system("kill -9 {0}".format(pid))
bar.py:
import time
print("bla")
time.sleep(10) % within this time,the process should be killed
print("blubb")
最佳答案
os.system返回退出代码.它不提供子进程的pid.
原文链接:https://www.f2er.com/linux/440314.html使用subprocess
模块.
import subprocess
import time
argument = '...'
proc = subprocess.Popen(['python','bar.py',argument],shell=True)
time.sleep(3) # <-- There's no time.wait,but time.sleep.
pid = proc.pid # <--- access `pid` attribute to get the pid of the child process.
要终止进程,可以使用terminate
方法或kill
.(无需使用外部kill程序)
proc.terminate()