Il codice mi ha aiutato a scaricare un sacco di immagini da Google. Funzionava qualche giorno fa e ora all'improvviso il codice si rompe.
Codice :
# 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()
Registro di output:
Articolo n .: 1 -> Nome articolo = valutazione Apple ... Avvio download ...
Purtroppo non è stato possibile scaricare tutti e 4 perché alcune immagini non erano scaricabili. 0 è tutto ciò che abbiamo per questo filtro di ricerca!
Errori: 0
Articolo n .: 1 -> Nome articolo = valutazione arancione ... Avvio download ...
Purtroppo non è stato possibile scaricare tutti e 4 perché alcune immagini non erano scaricabili. 0 è tutto ciò che abbiamo per questo filtro di ricerca!
Errori: 0
Numero articolo: 1 -> Nome articolo = Valutazione uva ... Avvio download ...
Purtroppo non è stato possibile scaricare tutti e 4 perché alcune immagini non erano scaricabili. 0 è tutto ciò che abbiamo per questo filtro di ricerca!
Errori: 0
Articolo n .: 1 -> Nome articolo = anguria Valutazione ... Avvio del download ...
Purtroppo non è stato possibile scaricare tutti e 4 perché alcune immagini non erano scaricabili. 0 è tutto ciò che abbiamo per questo filtro di ricerca!
Errori: 0
Questo in realtà crea una cartella ma non contiene immagini.