-1
私は100のURLと言うリストを持っています。 10個のURLごとにIPを変更したい。多くのループの後でプロキシを変更する
私は自分のプロキシをそれぞれ10個のURLの後に使いたいとしましょう。 リクエストにそのプロキシをどのように使用しますか?ここで
list = [100URLS items]
proxies ['ip:port','ip:port']
for urls in list:
try:
##request 10 URLS here then it might throw me error.
except:
#After it throws me error, I want to be able to use proxies inside a list something like this and reiterate the same request with a new proxy using requests.