翼度科技»论坛 编程开发 python 查看内容

Python 超时请求或计算的处理方案

5

主题

5

帖子

15

积分

新手上路

Rank: 1

积分
15
超时机制

一般应用于处理阻塞问题
场景:

  • 复杂度较大的计算(解析)某个数值、加解密计算等
  • 请求中遇到阻塞,避免长时间等待
  • 网络波动,避免长时间请求,浪费时间

1. requests 请求超时机制

reqeusts 依赖中的Post请求中自带 timeout 参数,可以直接设置
  1. response = requests.post(url,
  2.                                                 data=request_body,
  3.                                                 headers=headers,
  4.                                                 timeout=timeout)
复制代码
2. 其他函数时间超时机制

自定义一个超时函数 timeout()
  1. import signal
  2. from functools import wraps
  3. import errno
  4. import os
  5. class TimeoutError(Exception):
  6.     pass
  7. def timeout(seconds=10, error_message=os.strerror(errno.ETIME)):
  8.     def decorator(func):
  9.         def _handle_timeout(signum, frame):
  10.             raise TimeoutError(error_message)
  11.         def wrapper(*args, **kwargs):
  12.             signal.signal(signal.SIGALRM, _handle_timeout)
  13.             signal.alarm(seconds)
  14.             try:
  15.                 result = func(*args, **kwargs)
  16.             finally:
  17.                 signal.alarm(0)
  18.             return result
  19.         return wraps(func)(wrapper)
  20.     return decorator
  21. @timeout(5)
  22. def long_running_function():
  23.     # 这里是可能会长时间运行的代码
  24.     # 例如,可以使用 time.sleep 来模拟长时间运行的操作
  25.     import time
  26.     time.sleep(10)
  27. try:
  28.     long_running_function()
  29. except TimeoutError as e:
  30.     print("Function call timed out")
复制代码
注:
timeout() 函数的编写借鉴 ChatGPT4.0
到此这篇关于Python 超时请求或计算的处理的文章就介绍到这了,更多相关Python 超时请求内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

来源:https://www.jb51.net/python/3221801m2.htm
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具