কোডটি আমাকে গুগল থেকে গুচ্ছের চিত্রগুলি ডাউনলোড করতে সহায়তা করেছে। এটি কয়েক দিন আগে কাজ করত এবং এখন হঠাৎ করে কোডটি ভেঙে যায়।
কোড:
# 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!
ত্রুটি: 0
আইটেম নম্বর: 1 -> আইটেমের নাম = কমলা মূল্যায়ন হচ্ছে ... ডাউনলোড শুরু হচ্ছে ...
দুর্ভাগ্যক্রমে সমস্ত 4 টি ডাউনলোড করা যায়নি কারণ কিছু চিত্র ডাউনলোডযোগ্য ছিল না। 0 এই অনুসন্ধান ফিল্টারটির জন্য আমরা পেয়েছি 0!
ত্রুটি: 0
আইটেম নম্বর: 1 -> আইটেমের নাম = আঙ্গুর মূল্যায়ন হচ্ছে ... ডাউনলোড শুরু হচ্ছে ...
দুর্ভাগ্যক্রমে সমস্ত 4 টি ডাউনলোড করা যায়নি কারণ কিছু চিত্র ডাউনলোডযোগ্য ছিল না। 0 এই অনুসন্ধান ফিল্টারটির জন্য আমরা পেয়েছি 0!
ত্রুটি: 0
আইটেম নম্বর: 1 -> আইটেমের নাম = জলের তরমুজ মূল্যায়ন হচ্ছে ... ডাউনলোড শুরু হচ্ছে ...
দুর্ভাগ্যক্রমে সমস্ত 4 টি ডাউনলোড করা যায়নি কারণ কিছু চিত্র ডাউনলোডযোগ্য ছিল না। 0 এই অনুসন্ধান ফিল্টারটির জন্য আমরা পেয়েছি 0!
ত্রুটি: 0
এটি আসলে একটি ফোল্ডার তৈরি করে তবে এতে কোনও চিত্র নেই।