mirror of
https://github.com/fastai/fastbook.git
synced 2025-04-05 02:10:48 +00:00
Updating for new Bing API requirements. (#333)
This commit is contained in:
parent
1cdab1f23b
commit
d9a9be4d6a
@ -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'))"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
11
utils.py
11
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 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'])
|
||||||
|
|
||||||
|
|
||||||
# -
|
# -
|
||||||
|
Loading…
Reference in New Issue
Block a user