If i send request to the website by using this format
importrequests
url ="http://www.indeed.com"
proxy_host ="proxy.crawlera.com"
proxy_port ="8010"
proxy_auth ="<CRAWLERA API KEY>:"# Make sure to include ':' at the end
proxies = {"https": "https://{}@{}:{}/".format(proxy_auth, proxy_host, proxy_port),
"http": "http://{}@{}:{}/".format(proxy_auth, proxy_host, proxy_port)}
r = requests.get(url, proxies=proxies,
verify=False)
If i send request to the website by using this format
0 Votes
0 Comments
Login to post a comment