Updating for new Bing API requirements. (#333)

This commit is contained in:
Josh Kraft 2020-11-29 09:27:35 -05:00 committed by GitHub
parent 1cdab1f23b
commit d9a9be4d6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 4 deletions

View File

@ -451,7 +451,7 @@
" dest = (path/o)\n", " dest = (path/o)\n",
" dest.mkdir(exist_ok=True)\n", " dest.mkdir(exist_ok=True)\n",
" results = search_images_bing(key, f'{o} bear')\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'))"
] ]
}, },
{ {

View File

@ -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 azure.cognitiveservices.search.imagesearch import ImageSearchClient as api
from msrest.authentication import CognitiveServicesCredentials as auth from msrest.authentication import CognitiveServicesCredentials as auth
def search_images_bing(key, term, min_sz=128): def search_images_bing(key, term, min_sz=128, max_images=150):
client = api('https://api.cognitive.microsoft.com', auth(key)) params = {'q':term, 'count':max_images, 'min_height':min_sz, 'min_width':min_sz}
return L(client.images.search(query=term, count=150, min_height=min_sz, min_width=min_sz).value) 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'])
# - # -