このコードは、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->アイテム名= Apple評価中...ダウンロードを開始しています...
残念ながら、ダウンロードできない画像があったため、4つすべてをダウンロードできませんでした。この検索フィルターで取得できるのは0だけです。
エラー:0
アイテム番号:1->アイテム名= Orange評価中...ダウンロードを開始しています...
残念ながら、ダウンロードできない画像があったため、4つすべてをダウンロードできませんでした。この検索フィルターで取得できるのは0だけです。
エラー:0
品目番号:1->品目名=ブドウ評価中...ダウンロードを開始しています...
残念ながら、ダウンロードできない画像があったため、4つすべてをダウンロードできませんでした。この検索フィルターで取得できるのは0だけです。
エラー:0
アイテム番号:1->アイテム名=ウォーターメロン評価中...ダウンロードを開始しています...
残念ながら、ダウンロードできない画像があったため、4つすべてをダウンロードできませんでした。この検索フィルターで取得できるのは0だけです。
エラー:0
これは実際にはフォルダーを作成しますが、その中に画像はありません。