def getInternet():
try:
try:
requests.get('https://www.google.com')
except requests.ConnectTimeout:
requests.get('http://1.1.1.1')
return True
except requests.ConnectionError:
return False
lock = threading.Lock()
if getInternet() == True:
dictionary = requests.get(
'https://mail.ru').text.strip().split('\n')
else:
pass
def getNew(addr):
try:
response = requests.get(
f'https://ya.ru')
return (
response.json()
)
Помогите добавить в код прокси. Нужно чтобы запрос который идёт на
https://ya.ru шел через прокси.