Update 02_production.ipynb

Microsoft updated 'Bing Image Search API' which made the previouse 'key: contentUrl' incompatible.

Correctly updated the correct 'key: thumbnailUrl' for accessing the image's URL.
This commit is contained in:
Darshit Solanki 2023-10-08 14:32:10 +05:30 committed by GitHub
parent 823b69e00a
commit 46fbfbd9ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -367,7 +367,7 @@
],
"source": [
"results = search_images_bing(key, 'grizzly bear')\n",
"ims = results.attrgot('contentUrl')\n",
"ims = results.attrgot('thumbnailUrl')\n",
"len(ims)"
]
},