Код: Выделить всё
OSError: [Errno 101] Network is unreachable
During handling of the above exception, another exception occurred:
....
During handling of the above exception, another exception occurred:
...
During handling of the above exception, another exception occurred:
Код: Выделить всё
try:
response = requests.get(url, timeout=10)
except requests.Timeout as e:
print(e)
return 0
if response.status_code == 200:
my_data = response.json()
# do some stuff
return my_data
else:
return 0
Подробнее здесь: https://stackoverflow.com/questions/798 ... quests-get
Мобильная версия