Prakash Nath Jha
11/07/2024, 7:49 AMPrakash Nath Jha
11/07/2024, 7:52 AMPrakash Nath Jha
11/07/2024, 7:53 AMresponse = requests.get("<https://example.com/other/thing>", timeout=10, verify=False, proxies=proxies)
proxies
proxies = {
"http": os.getenv("HTTP_PROXY"),
"https": os.getenv("HTTPS_PROXY"),
}
this is in pythonPrakash Nath Jha
11/07/2024, 7:53 AMPrakash Nath Jha
11/07/2024, 7:55 AMPrakash Nath Jha
11/07/2024, 7:58 AMPrakash Nath Jha
11/07/2024, 8:19 AM"--enable-browser-proxying"
this flag was needed to make it workTom
11/07/2024, 2:28 PM