Skip to content

Commit

Permalink
Fri, Aug 2, 2024, 9:58 PM +03:00
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdoullahBougataya committed Aug 2, 2024
1 parent 88ac861 commit 5170779
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion images_scrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 5170779

Please sign in to comment.