たとえば、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.