Kod, Google'dan bir sürü resim indirmeme yardımcı oldu. Eskiden birkaç gün önce çalışırdı ve şimdi aniden kod kırılıyor.
Kod:
# importing google_images_download module
from google_images_download import google_images_download
# creating object
response = google_images_download.googleimagesdownload()
search_queries = ['Apple', 'Orange', 'Grapes', 'water melon']
def downloadimages(query):
# keywords is the search query
# format is the image file format
# limit is the number of images to be downloaded
# print urs is to print the image file url
# size is the image size which can
# be specified manually ("large, medium, icon")
# aspect ratio denotes the height width ratio
# of images to download. ("tall, square, wide, panoramic")
arguments = {"keywords": query,
"format": "jpg",
"limit":4,
"print_urls":True,
"size": "medium",
"aspect_ratio": "panoramic"}
try:
response.download(arguments)
# Handling File NotFound Error
except FileNotFoundError:
arguments = {"keywords": query,
"format": "jpg",
"limit":4,
"print_urls":True,
"size": "medium"}
# Providing arguments for the searched query
try:
# Downloading the photos based
# on the given arguments
response.download(arguments)
except:
pass
# Driver Code
for query in search_queries:
downloadimages(query)
print()
Çıktı günlüğü:
Ürün no .: 1 -> Ürün adı = Apple Değerlendiriliyor ... İndirmeye Başlanıyor ...
Maalesef bazı resimler indirilemediği için 4 dosya da indirilemedi. Bu arama filtresi için elimizde sadece 0!
Hatalar: 0
Ürün no .: 1 -> Ürün adı = Turuncu Değerlendiriliyor ... İndiriliyor Başlıyor ...
Maalesef bazı resimler indirilemediği için 4 dosya da indirilemedi. Bu arama filtresi için elimizde sadece 0!
Hatalar: 0
Ürün no .: 1 -> Ürün adı = Üzüm Değerlendiriliyor ... İndirme başlıyor ...
Maalesef bazı resimler indirilemediği için 4 dosya da indirilemedi. Bu arama filtresi için elimizde sadece 0!
Hatalar: 0
Ürün no .: 1 -> Ürün adı = karpuz Değerlendiriliyor ... İndiriliyor ...
Maalesef bazı resimler indirilemediği için 4 dosya da indirilemedi. Bu arama filtresi için elimizde sadece 0!
Hatalar: 0
Bu aslında bir klasör oluşturur ancak içinde görüntü yoktur.