Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

File metadata and controls

31 lines (22 loc) · 1.01 KB

Automated-Web-Scraper-For-Amazon.com

In this tutorial we will build an Automated Web Scraper to extract data from amazon.com that we can use for any data analysis,data science or machine learning project.

Before we get started let me make it clear that Amazon has a tight security for their platform and some of the things you can easily do on other webpages wont work on Amozon platform.

Previously, we could have used Beautiful Soup and Request to easily get titles from the page, but things have changed little bit. We will still use Beautiful Soup but in a different way.

Prerequisites

Installation

We will be using:

  1. Selenium
  2. BeautifulSoup
  3. Webdrivers
pip install selenium 
pip install bs4 
pip install msedge-selenium-tools 
pip install chromedriver_binary==87.0.4280.88    #install the version that corresponds to the version of your browser 

Run

# Running Scraper File.. 
Automated Web Scraper For Amazon.com.ipynb