Hi everyone,
I found this library that does not require a key to query images from Bing : https://pypi.org/project/bing-image-downloader/
It is very simple to use and at least is free for more than 7 days.
!pip install bing-image-downloader
from bing_image_downloader import downloader
for q in [âgrizzlyâ, âblack bearâ, âteddy bearâ]:
downloader.download(q, limit=20, output_dir=âbearsâ, adult_filter_off=True, force_replace=False, timeout=5)
Hope it helps !
Charles