Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lakshayd02/web_scraping_python

A program that extracts product information, such as names, prices and ratings from an online ecommerce website and stores the data in a structured format like a CSV file.
https://github.com/lakshayd02/web_scraping_python

beautifulsoup csv csv-parser python python3 pythonlibrarires web-scraper web-scraping

Last synced: about 2 months ago
JSON representation

A program that extracts product information, such as names, prices and ratings from an online ecommerce website and stores the data in a structured format like a CSV file.

Awesome Lists containing this project

README

        

# Web_Scraping_Python
A program that extracts product information, such as names, prices and ratings from an online ecommerce website and stores the data in a structured format like a CSV file.

You provide the URL of the e-commerce website you want to scrape.
A GET request is sent to the URL to retrieve the HTML content of the page.
BeautifulSoup is used to parse the HTML and extract product information. You will need to inspect the HTML structure of the website and adjust the selectors accordingly.
The extracted data is stored in a list, and then it's written to a CSV file ('product_data.csv').