url leri bir text dosyasına eklerseniz
with open('adresler.txt') as temp_file1: AdresListesi = [(line.rstrip('n')) for line in temp_file1]
burada size AdresListesi adında bir array verir
for i in AdresListesi:
print (i)
#burada ne yapmak istiyorsaniz o
# en başa
import requests
# indirmek için
with open("yaz.jpg", "wb") as out:
.....out.write(requests.get(i).content)