I am storing pictures to work with an object detection model, and to save time, I was looking for methods to download multiple images. Among the methods that I found I chose simple_image_download (because its simplicity). However, I never got more than 70 different images and more than 50% of the downloaded files are repeated images, despite that google image shows much more images.
I use the code provided in the example of simple_image_package
Cs = ["fish","worm","fisherman"]
response = simp.simple_image_download
for rep in Cs:
response().download(Cs, 300)