Python教程

python 错误重试

本文主要是介绍python 错误重试,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

一、安装

pip install tenacity

 

使用规则:

  • 同一个参数,多个值用 |(或),+(与)进行组合使用
  • 不同参数之间,只有组合使用,通过关键字参数传参即可

 

@retry()

@retry()
# 【无条件重试】, 只要抛出异常就会重试,直到执行不抛异常
def test_demo():
    print('执行 test_demo')
    raise Exception('手动抛出异常')


test_demo()

 

@retry(stop=stop_after_attempt(3))

@retry(stop=stop_after_attempt(3))
# 指定【重试的次数】,如 3 次
# 重试 3 次后停止
def test_demo():
    print('执行 test_demo')
    raise Exception('手动抛出异常')


test_demo()

  

@retry(stop=stop_after_delay(5))

@retry(stop=stop_after_delay(5))
# 指定【重试多长时候后停止】,如5秒
# 重试 5 秒后停止
def test_demo():
    print('执行 test_demo')
    raise Exception('手动抛出异常')


test_demo()

 

@retry(stop=(stop_after_delay(2) | stop_after_attempt(50)))
# stop_after_delay()和 stop_after_attempt()组合使用,只要其中一个条件满足,任务就停止
# 重试2秒或者重试50次停止
def test_demo():
    print('执行 test_demo')
    raise Exception('手动抛出异常')


test_demo()

 

这篇关于python 错误重试的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!