This is the code from my web scraping guide on youtube. It includes two scrapers. One with Node.js and Puppeteer and one with Python and Beautiful Soup.
We scrape the website https://books.toscrape.com/ but you can change the code to scrape something else.
Install dependencies
cd web-scraper-node
npm installRun the file
node scrapeInstall dependencies
cd web-scraper-python
pip install -r requirements.txtRun the file
python scrape.py