Python自動重試HTTP串連裝飾器

來源:互聯網
上載者:User

Python自動重試HTTP串連裝飾器

   這篇文章主要介紹了Python自動重試HTTP串連裝飾器,有時候我們要去別的介面取資料,可能因為網路原因偶爾失敗,為了能自動重試,寫了這麼一個裝飾器,可以實現自動重連2次,需要的朋友可以參考下

  有時候我們要去別的介面取資料,可能因為網路原因偶爾失敗,為了能自動重試,寫了這麼一個裝飾器。

  這個是python2.7x 的版本,python3.x可以用 nonlocal 來重寫。

  ?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

#-*- coding: utf-8 -*-

#all decorators in this tool file

#author: orangleliu

 

############################################################

#http串連有問題時候,自動重連

def conn_try_again(function):

RETRIES = 0

#重試的次數

count = {"num": RETRIES}

def wrapped(*args, **kwargs):

try:

return function(*args, **kwargs)

except Exception, err:

if count['num'] < 2:

count['num'] += 1

return wrapped(*args, **kwargs)

else:

raise Exception(err)

return wrapped

  用法很的簡單,下面是一個程式片段。

  ?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

@conn_try_again

def post_query_bandwidth_for_bandwidth(self, contract_no, data_month, product_code):

#根據webluker介面情況擷取計費資料

try:

post_data = {'contract':contract_no, 'month': data_month, 'code':product_code}

params = urllib.urlencode(post_data)

response = urllib2.urlopen(WEBLUKER_BANDWITH_API + "?" +params)

billdata = {}

billdata = response.read()

if not billdata:

billdata = {}

return billdata

except Exception, err:

err = u'與webluker介面間通訊異常'

raise Exception(err)

  如果try塊中有異常,就會自動重試2次。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.