首页 > 后端开发 > Python教程 > 如何在 Python 中为子进程调用添加超时?

如何在 Python 中为子进程调用添加超时?

DDD
发布: 2024-12-14 02:33:09
原创
175 人浏览过

How Can I Add a Timeout to Subprocess Calls in Python?

利用具有超时功能的子进程模块

在编程中经常会出现子进程需要在预定义的时间范围内完成其执行的情况。虽然 subprocess 模块提供了强大的执行命令机制,但它本质上缺乏超时功能。

为了解决此限制,Python 3.3 及以后在 subprocess 模块中提供了 check_output 函数。此函数不仅从命令中获取 stdout 数据,还会在进程超过指定超时时引发异常。

from subprocess import STDOUT, check_output

# Set the timeout in seconds
timeout = 5

try:
    # Execute the command with the specified timeout
    output = check_output(cmd, stderr=STDOUT, timeout=timeout)
except CalledProcessError as e:
    # Handle the error if the process fails with a non-zero exit status
    pass

# Process the merged stdout/stderr data contained in the output variable
登录后复制

在此代码中,超时变量确定命令允许的最大执行时间。 check_output 确保进程在指定的时间范围内终止并返回组合的 stdout/stderr 输出。

或者,对于 Python 2.x 用户,子进程模块的 subprocess32 向后移植提供相同的功能。此向后移植提供了与 check_output 等效的解决方案,允许在 Python 2.x 下执行超时感知命令。

以上是如何在 Python 中为子进程调用添加超时?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板