I have problem with usage proxies servers with cloudscraper.
Simple program:
proxy_list = {"http": "http://username:[email protected]:port"}
scraper = cloudscraper.create_scraper()
print(scraper.get("https://api.ipify.org/", proxies=proxy_list))
exit()
This simple program always showing my IP address not used proxy server. Why? I try multiple (working) proxy servers, no errors when running, and always not working. Any suggestions?
I change:
and all now working fine, but I don know why.