PHP前端开发

如何在 Python 中非阻塞方式执行多个外部命令?

百变鹏仔 4天前 #Python
文章标签 中非

非阻塞方式在 python 中执行外部命令

在控制台下执行多个命令时,通常会使用后台运行 (>) 和重定向 (>) 等操作符。python 提供了类似的功能,可以使用 subprocess.popen 在一个新进程中执行命令,并控制输出重定向和阻塞行为。

代码实现

import subprocess# 启动命令 asubprocess.popen(["./a", "-a", "1"], stdout=subprocess.pipe, stderr=subprocess.pipe)# 启动命令 bsubprocess.popen(["./b", "-a", "2"], stdout=subprocess.pipe, stderr=subprocess.pipe)# 启动命令 csubprocess.popen(["./c", "-a", "3"], stdout=subprocess.pipe, stderr=subprocess.pipe)# 非阻塞执行

通过设置 stdout 和 stderr 参数为 subprocess.pipe,可以捕获命令输出并将其关联到 python 管道中。这样,三个子进程将在 python 脚本的控制下启动并运行,但不会阻塞脚本执行。

立即学习“Python免费学习笔记(深入)”;

注意:

与控制台下的命令执行不同,使用 subprocess.popen 启动的子进程在 python 脚本结束后会自动终止。因此,如果您希望子进程在 python 脚本结束后继续运行,需要对子进程进行额外的处理,例如:

import subprocess# 启动命令 Aproc_a = subprocess.Popen(["./A", "-a", "1"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)# 启动命令 Bproc_b = subprocess.Popen(["./B", "-a", "2"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)# 启动命令 Cproc_c = subprocess.Popen(["./C", "-a", "3"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)# 保持子进程运行while True:    # 如果脚本结束,则退出循环    if not proc_a.poll() and not proc_b.poll() and not proc_c.poll():        break