รหัสช่วยให้ฉันดาวน์โหลดรูปภาพมากมายจาก 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 Evaluating ... กำลังเริ่มดาวน์โหลด ...
น่าเสียดายที่ไม่สามารถดาวน์โหลดทั้ง 4 ภาพได้เพราะบางภาพไม่สามารถดาวน์โหลดได้ 0 คือทั้งหมดที่เราได้รับสำหรับตัวกรองการค้นหานี้!
ข้อผิดพลาด: 0
หมายเลขสินค้า: 1 -> ชื่อรายการ = Orange Evaluating ... กำลังเริ่มดาวน์โหลด ...
น่าเสียดายที่ไม่สามารถดาวน์โหลดทั้ง 4 ภาพได้เพราะบางภาพไม่สามารถดาวน์โหลดได้ 0 คือทั้งหมดที่เราได้รับสำหรับตัวกรองการค้นหานี้!
ข้อผิดพลาด: 0
หมายเลขสินค้า: 1 -> ชื่อรายการ = การประเมินองุ่น ... เริ่มต้นดาวน์โหลด ...
น่าเสียดายที่ไม่สามารถดาวน์โหลดทั้ง 4 ภาพได้เพราะบางภาพไม่สามารถดาวน์โหลดได้ 0 คือทั้งหมดที่เราได้รับสำหรับตัวกรองการค้นหานี้!
ข้อผิดพลาด: 0
หมายเลขสินค้า: 1 -> ชื่อรายการ = แตงโมการประเมิน ... เริ่มต้นดาวน์โหลด ...
น่าเสียดายที่ไม่สามารถดาวน์โหลดทั้ง 4 ภาพได้เพราะบางภาพไม่สามารถดาวน์โหลดได้ 0 คือทั้งหมดที่เราได้รับสำหรับตัวกรองการค้นหานี้!
ข้อผิดพลาด: 0
นี่เป็นการสร้างโฟลเดอร์ แต่ไม่มีภาพอยู่ในนั้น