From 735708456be371d93d45e9c72e8cd885cdcbdfd6 Mon Sep 17 00:00:00 2001 From: AbdoullahBougataya Date: Fri, 2 Aug 2024 18:31:56 +0000 Subject: [PATCH] Fri, Aug 2, 2024, 9:31 PM +03:00 --- images_scrapper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images_scrapper.py b/images_scrapper.py index 109f6ad..8e973ac 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("div", { "id" : "search" }) -print(soup.prettify()) +search_result = soup.find_all("div") +print(search_result)