Request Count

Posted almost 4 years ago by Vinay Mehendiratta

Post a topic
V
Vinay Mehendiratta

If i send request to the website by using this format

import requests

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 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