通常為了防止程序出現異常而終止,我們會采用try來獲取異常。
列如調用第三方API,設備狀態心跳上報網絡不穩定都可能發生異常。
我們希望當程序發生異常時能自動重復調用或者指定調用次數等。
python retrying庫,完美的實現這個需求。
retrying 提供一個裝飾器函數 retry,被裝飾的函數會在運行失敗的情況下重新執行,默認一直報錯就一直重試。
安裝庫 pip install retrying
from retrying import retry
import time
@retry()
def run():
print('重復調用')
time.sleep(1)
raise Exception
@retry(stop_max_attempt_number=5)
def run():
print('重復調用')
time.sleep(1)
raise Exception
@retry(stop_max_delay=5000)
def run():
print('重復調用')
time.sleep(1)
raise Exception
@retry(wait_fixed=5000)
def run():
print('重復調用')
raise Exception
#參數 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()
python opencv How to real
List of articles 0 Preface 1 T