diff --git a/images_scrapper.py b/images_scrapper.py index 5af12a5..dd01eb2 100644 --- a/images_scrapper.py +++ b/images_scrapper.py @@ -8,5 +8,7 @@ r = requests.get(goog_search) soup = BeautifulSoup(r.text, "html.parser") -search_result = soup.find_all("a", {"data-ved" : "2ahUKEwj21_Cf_daHAxVL1zgGHWfiDjAQFnoECAsQAg"}) +search_result = soup.find_all("a") +for i in range(len(search_result)): + if "" print(search_result)