Skip to content

Latest commit

 

History

History
43 lines (23 loc) · 1.64 KB

README.md

File metadata and controls

43 lines (23 loc) · 1.64 KB

Python_Web_Scrapping

This is a flipkart web scrapping project using python, that allows users to retrieve datasets of the products(mobiles under 50000) listed on flipkart for the given product and saved in .CSV file.

What is Web Scrapping?

Web scrapping is a technique to automate the extraction process of a large amount of data from the website. The data present on the websites will be in unstructured format but with the help of web scrapping,you can scrape,access and store the data in a much more structured and clean format for your further analysis.

How to perform web scrapping in python?

Web scrapping can be performed only on the websites which provide permissions before scrapping,please check the policies of the website.

Features

I have scrapped the below contents:-

  • Product Name
  • Product Price
  • Product Description
  • Product Reviews

Steps to Scrape Flipkart Data using Python:

Step 1: Install the necessary libraries like BeautifulSoup and Requests.

libraries

Step 2: Choose the data you need to extract.

data_extract

Step 3: Send HTTP request to the URL of the page you want to scrape.

HTTP_request

Step 4: Inspect the page and write codes for extraction.

inspect_page