diff --git a/02_production.ipynb b/02_production.ipynb index 0a9b1ec..1fe7a48 100644 --- a/02_production.ipynb +++ b/02_production.ipynb @@ -451,7 +451,7 @@ " dest = (path/o)\n", " dest.mkdir(exist_ok=True)\n", " results = search_images_bing(key, f'{o} bear')\n", - " download_images(dest, urls=results.attrgot('content_url'))" + " download_images(dest, urls=results.attrgot('contentUrl'))" ] }, { diff --git a/utils.py b/utils.py index 0a47692..6297537 100644 --- a/utils.py +++ b/utils.py @@ -28,9 +28,14 @@ def get_image_files_sorted(path, recurse=True, folders=None): return get_image_f from azure.cognitiveservices.search.imagesearch import ImageSearchClient as api from msrest.authentication import CognitiveServicesCredentials as auth -def search_images_bing(key, term, min_sz=128): - client = api('https://api.cognitive.microsoft.com', auth(key)) - return L(client.images.search(query=term, count=150, min_height=min_sz, min_width=min_sz).value) +def search_images_bing(key, term, min_sz=128, max_images=150): + params = {'q':term, 'count':max_images, 'min_height':min_sz, 'min_width':min_sz} + headers = {"Ocp-Apim-Subscription-Key":key} + search_url = "https://api.bing.microsoft.com/v7.0/images/search" + response = requests.get(search_url, headers=headers, params=params) + response.raise_for_status() + search_results = response.json() + return L(search_results['value']) # -