This Python script tracks prices of products on Amazon and notifies users via email when a product's price drops below a specified threshold.
- Monitors product prices on Amazon using product links.
- Sends email notifications when a product's price drops below a specified threshold.
- Easy setup and configuration.
- Clone the repository: git clone https://github.com/your-username/amazon-price-tracker.git
- Install dependencies: pip install -r requirements.txt
- Set up your email credentials and desired product link and price threshold in
main.py
. - Run the script:
- python main.py
To configure the Amazon Price Tracker, edit the main.py
file with the following details:
- Product URL: Replace
product_url
with the Amazon product URL you want to track.product_url = 'https://www.amazon.com/dp/B07VFFC1Q3/'
- Target Price: Set target_price to the price threshold below which you want to receive notifications.
- Email Settings: Update sender_email, receiver_email, and email_password with appropriate values.