कोड ने मुझे Google से छवियों का गुच्छा डाउनलोड करने में मदद की। यह कुछ दिन पहले काम करता था और अब अचानक कोड टूट जाता है।
कोड:
# 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()
आउटपुट लॉग:
आइटम नंबर .: 1 -> आइटम का नाम = सेब का मूल्यांकन ... डाउनलोड शुरू ...
दुर्भाग्य से सभी 4 को डाउनलोड नहीं किया जा सका क्योंकि कुछ चित्र डाउनलोड करने योग्य नहीं थे। 0 हम सब इस खोज फ़िल्टर के लिए मिला है!
त्रुटियां: 0
आइटम नंबर .: 1 -> आइटम का नाम = नारंगी का मूल्यांकन ... डाउनलोड शुरू ...
दुर्भाग्य से सभी 4 को डाउनलोड नहीं किया जा सका क्योंकि कुछ चित्र डाउनलोड करने योग्य नहीं थे। 0 हम सब इस खोज फ़िल्टर के लिए मिला है!
त्रुटियां: 0
आइटम नंबर .: 1 -> आइटम का नाम = अंगूर का मूल्यांकन ... प्रारंभ डाउनलोड ...
दुर्भाग्य से सभी 4 को डाउनलोड नहीं किया जा सका क्योंकि कुछ चित्र डाउनलोड करने योग्य नहीं थे। 0 हम सब इस खोज फ़िल्टर के लिए मिला है!
त्रुटियां: 0
आइटम नंबर .: 1 -> आइटम का नाम = पानी तरबूज का मूल्यांकन ... डाउनलोड शुरू ...
दुर्भाग्य से सभी 4 को डाउनलोड नहीं किया जा सका क्योंकि कुछ चित्र डाउनलोड करने योग्य नहीं थे। 0 हम सब इस खोज फ़िल्टर के लिए मिला है!
त्रुटियां: 0
यह वास्तव में एक फ़ोल्डर बनाता है लेकिन इसमें कोई चित्र नहीं है।