If you get HTTP code 429 (Too Many Requests) , it means that you are making too many requests to a certain site and that site is blocking you
Daily Archives: February 19, 2018
How to use the proxies in python
import requests https=”https://user:pass@IP:port” http=”http://user:pass@IP:port” proxies = {“https”: https, “http”: http} url = ‘https://ipinfo.io’ r = requests.get(url, proxies=proxies) print (r.content)