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)
then how many request it will count
thenĀ
0 Votes
1 Comments
J
Jake Krzepposted
almost 3 years ago
Replying because I am also interested and this has yet to be answered almost a year later..
If i send request to the website by using this format
thenĀ
0 Votes
1 Comments
Jake Krzep posted almost 3 years ago
Replying because I am also interested and this has yet to be answered almost a year later..
0 Votes
Login to post a comment