Getting The Bing Image Search key

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. :slight_smile:
!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

13 Likes