From ecb4e8a39f97e9582c5b03b23995cc3cd98b9588 Mon Sep 17 00:00:00 2001 From: AbdoullahBougataya Date: Fri, 2 Aug 2024 18:48:31 +0000 Subject: [PATCH] Fri, Aug 2, 2024, 9:48 PM +03:00 --- images_scrapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images_scrapper.py b/images_scrapper.py index 8e973ac..7ffb27f 100644 --- a/images_scrapper.py +++ b/images_scrapper.py @@ -8,5 +8,5 @@ r = requests.get(goog_search) soup = BeautifulSoup(r.text, "html.parser") -search_result = soup.find_all("div") +search_result = soup.find("div", { "id" : "search" }) print(search_result)