Added price checker App

pull/461/head
AdvaitDhingra 4 years ago
parent b47cf8261f
commit d963b3c805

@ -0,0 +1,21 @@
# Amazon Price Alerter
**Tier:** 1-Beginner
This simple yet useful app will check the price of a product on Amazon, check if it is under a given budget and send you an email if that is the case. It is a good entry into web scraping and can be modified to check multiple products or perform more complex comparisons. The program is a simple <100 line Python script.
## User Stories
- [ ] User can enter the link of the desired product
- [ ] User can enter a gmail app-password to automate emails
- [ ] User can make the Python program run on startup
- [ ] User can wait for the email and purchase the desired product at the desired price
## Useful links and resources
- [BeautifulSoup to fetch the price](https://beautiful-soup-4.readthedocs.io/en/latest/)
- [SMTPLib to send the email](https://docs.python.org/3/library/smtplib.html)
## Example projects
- [An example of this project made by me](https://github.com/AdvaitDhingra/python_projects/blob/master/get_price.py)
Loading…
Cancel
Save