`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?
`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?