程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

python異常自動重試--retrying

編輯:Python

通常為了防止程序出現異常而終止,我們會采用try來獲取異常。
列如調用第三方API,設備狀態心跳上報網絡不穩定都可能發生異常。
我們希望當程序發生異常時能自動重復調用或者指定調用次數等。
python retrying庫,完美的實現這個需求。
retrying 提供一個裝飾器函數 retry,被裝飾的函數會在運行失敗的情況下重新執行,默認一直報錯就一直重試。

安裝庫 pip install retrying

from retrying import retry
import time

1.無限重試

@retry()
def run():
print('重復調用')
time.sleep(1)
raise Exception

2.最大重試次數 stop_max_attempt_number

@retry(stop_max_attempt_number=5)
def run():
print('重復調用')
time.sleep(1)
raise Exception

3.最大重試時間 stop_max_delay 單位毫秒

@retry(stop_max_delay=5000)
def run():
print('重復調用')
time.sleep(1)
raise Exception

4.重試間隔時間 wait_fixed 單位毫秒

@retry(wait_fixed=5000)
def run():
print('重復調用')
raise Exception

5.重試同時調用其他方法 stop_func

#參數 attempts, delay必填項
def log_error(attempts, delay):
print('記錄異常')
#指定異常重復調用函數
@retry(stop_func=log_error)
def run():
print('重復調用')
time.sleep(1)
raise Exception
if __name__ == '__main__':
run()


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved