Product Scraper
Service
Web Scraper, Automation
Tools
Python, BeautifulSoup4, SQLite
Timeline
1 day
Project Goal
Create a scraper that collects data from the local grocery store. This project is for educational purposes only.

Solution
Target website don't have any protection so here I used library request to get all content from this website.
The parser consists of several stages:
Connect to the database and create table if its does not exists.
Preparing and start scraping all necessary data in specific function. Such as name, price, id and link.
Then these data will be commited to database table.
Repeat all steps in above if user have another links from this website (like another products to scrap).