RiddlerQ / simple_image_download

Python script that lets you auto download images from google images using tags
MIT License
145 stars 54 forks source link

Only 33/100 queries returned #12

Closed tbetth01 closed 3 years ago

tbetth01 commented 3 years ago

`from simple_image_download import simple_image_download as simp

response = simp.simple_image_download queries = candidates['scientificName'].tolist() for query in queries: response().download(query, 1) print(response().urls(query, 1))`

Does Google block an IP after so many calls? I have a for loop that attempts to get pictures from 100 queries, but there is only 33 returned.....Is there something I am missing?