So I'm getting all the values I need from yelp API but it doesn't give you details about the business website, in order to get the URL I'm trying to scrape each item but I don't find the correct way to do so.
I saw this answer but doesn't print any link.
Any idea of how to get this info?
my code:
from bs4 import BeautifulSoup
import requests
resp = requests.get("https://www.yelp.com/biz/casa-d-paco-newark")
soup = BeautifulSoup(resp.content, 'lxml')
for link in soup.findAll('a', href=True):
print(link['href'])
Sample URL: https://www.yelp.com/biz/casa-d-paco-newark