Skip to content

Latest commit

Β 

History

History
33 lines (25 loc) Β· 1007 Bytes

File metadata and controls

33 lines (25 loc) Β· 1007 Bytes

πŸ›’ Amazon Web Scraper with Price Alert System Using Python

A Python-based project that scrapes product information from Amazon, stores it in a CSV file, and sends email alerts when the product price changes.
This project demonstrates web scraping, data storage, and automated email notifications.


πŸ“Œ Project Overview

The goal of this project is to:

  • Scrape product details from an Amazon product page
  • Extract useful information such as:
    • Product Title
    • Product Price
    • Date of extraction
  • Store the data in a CSV file
  • Send an email alert when the product price drops or changes

This project is useful for:

  • Price tracking
  • Learning web scraping
  • Automating alerts using Python

πŸ› οΈ Technologies Used

  • Python
  • BeautifulSoup (bs4) – for parsing HTML
  • Requests – for sending HTTP requests
  • CSV module – for storing scraped data
  • smtplib – for sending email alerts
  • Jupyter Notebook – for development and testing