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
3 Answers
+ 3
Try to post it as a code bit...
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