From 46fbfbd9ce1cb96826ea718b3078fb8d50a30b36 Mon Sep 17 00:00:00 2001 From: Darshit Solanki Date: Sun, 8 Oct 2023 14:32:10 +0530 Subject: [PATCH] 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. --- 02_production.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02_production.ipynb b/02_production.ipynb index 245f46988..9ceaaafc6 100644 --- a/02_production.ipynb +++ b/02_production.ipynb @@ -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)" ] },