Start a new topic

Request Count

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Ā 

1 Comment

Replying because I am also interested and this has yet to be answered almost a year later..

Login to post a comment