Hi, I have written the following function, but I cant get it working.
The lists 'reviews' and 'firmaer' is empty. The tages and classes should be right.
Can you help me?
`firmaer = []
reviews = []
def scraper(url):
trin1 = requests.get(url)
trin2 = BeautifulSoup(trin1.text, 'html.parser')
firmaer.append(trin2.find_all('h3', {'class': 'category-business-card__header'}))
temp_url = trin2.find_all('a', {'class': 'category-business-card card'})
for review in temp_url:
reviews.append(url + review['href'])
scraper('https://www.trustpilot.com/categories/social_club')`