Scraping data from site

I’ve tried to scrape some data from a site using BeauitfulSoup, I’ve scraped some of the data successfully some others like (phone, website) I get errors with those data. https://yellowpages.com.eg/en/search/spas/3231 this is the link to the site I try to scrape. from bs4 import BeautifulSoup import requests url = ‘https://yellowpages.com.eg/en/search/spas/3231’ r = requests.get(url) soup =BeautifulSoup(r.content,… Read More Scraping data from site