-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathrequests__append_attempts.py
94 lines (70 loc) · 3.43 KB
/
requests__append_attempts.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
__author__ = "ipetrash"
import functools
import time
import requests
from requests.exceptions import RequestException
def attempts(
max_number: int = 5,
sleep: int = 30,
ignored_exceptions: tuple[type(Exception)] = (Exception,),
):
def actual_decorator(func):
@functools.wraps(func)
def wrapped(*args, **kwargs):
number = 0
while True:
try:
print("\nGO", args, kwargs)
return func(*args, **kwargs)
except Exception as e:
number += 1
print(f"ERROR on {number}/{max_number}: {e}")
if number >= max_number or not isinstance(e, ignored_exceptions):
raise e
print(f"Sleep {sleep} seconds")
time.sleep(sleep)
return wrapped
return actual_decorator
@attempts(
max_number=3,
sleep=5,
ignored_exceptions=(RequestException,),
)
def do_get(url: str, *args, **kwargs) -> requests.Response:
rs = requests.get(url, *args, **kwargs)
rs.raise_for_status()
return rs
print(do_get("https://google.com"))
"""
GO ('https://google.com',) {}
<Response [200]>
"""
print(do_get("http://sdfsdfs.dfsdf"))
"""
GO ('http://sdfsdfs.dfsdf',) {}
ERROR on 1/3: HTTPConnectionPool(host='sdfsdfs.dfsdf', port=80): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x00000165C2C555D0>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed'))
Sleep 5 seconds
GO ('http://sdfsdfs.dfsdf',) {}
ERROR on 2/3: HTTPConnectionPool(host='sdfsdfs.dfsdf', port=80): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x00000165C2C55D20>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed'))
Sleep 5 seconds
GO ('http://sdfsdfs.dfsdf',) {}
ERROR on 3/3: HTTPConnectionPool(host='sdfsdfs.dfsdf', port=80): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x00000165C2C56080>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed'))
Traceback (most recent call last):
...
socket.gaierror: [Errno 11001] getaddrinfo failed
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
...
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x00000165C2C56080>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
...
urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='sdfsdfs.dfsdf', port=80): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x00000165C2C56080>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
...
raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPConnectionPool(host='sdfsdfs.dfsdf', port=80): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x00000165C2C56080>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed'))
"""