scraping a page: using bs4 and requests [closed]
trying to gather the data form the page "https://clutch.co/il/it-services"
and that said i - think that there are probably several options to do that
a. using bs4 and requests
b. using pandas
this first approach uses a.
import requests
from bs4 import BeautifulSoup
import pandas as pd
url = "https://clutch.co/il/it-services"
response = requests.get(url)
soup = BeautifulSoup(response.content, "html.parser")
company_names = soup.find_all("h3", class_="company-name")
locations =...