Can someone help with code to scrape links in google search results been having issues with the code | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can someone help with code to scrape links in google search results been having issues with the code

How to scrape blog from Google search

30th Nov 2020, 4:53 AM
Abiodun
Abiodun - avatar
3 Answers
+ 3
Try to post it as a code bit...
30th Nov 2020, 5:52 AM
Steve Sajeev
Steve Sajeev - avatar
0
#from selenium import webdriver import requests from bs4 import BeautifulSoup url = 'https://www.geeksforgeeks.org/etl-process-in-data-warehouse/#:~:text=ETL%20is%20a%20process%20in,into%20the%20Data%20Warehouse%20system.' r = requests.get(url) html_content = r.text soup = BeautifulSoup(html_content, 'html.parser') #links=[] link = soup.find_all('a').text print(link) Here's my code
30th Nov 2020, 4:54 AM
Abiodun
Abiodun - avatar