利用具有超时功能的子进程模块
在编程中经常会出现子进程需要在预定义的时间范围内完成其执行的情况。虽然 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中文网其他相关文章!