Code: Select all
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:
Code: Select all
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
Mobile version