├── .gitignore ├── LICENSE ├── README.md ├── changelog.md ├── example-graphs ├── Marshall Stanmore II{5}.png ├── NETGEAR Nighthawk Sm{3}.png └── Official Kala Learn {4}.png ├── requirements.txt └── tracker ├── communication.py ├── data.py ├── data ├── data.csv └── itemNum.txt ├── graphs └── .graphs.txt ├── item-csv └── .item-csv.txt ├── main.py ├── sender_password.key ├── settings.py ├── templates ├── price_drop_email.html └── price_drop_text.txt └── tracker.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Den4200/amazon-price-tracker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Den4200/amazon-price-tracker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Den4200/amazon-price-tracker/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Den4200/amazon-price-tracker/HEAD/changelog.md -------------------------------------------------------------------------------- /example-graphs/Marshall Stanmore II{5}.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Den4200/amazon-price-tracker/HEAD/example-graphs/Marshall Stanmore II{5}.png -------------------------------------------------------------------------------- /example-graphs/NETGEAR Nighthawk Sm{3}.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Den4200/amazon-price-tracker/HEAD/example-graphs/NETGEAR Nighthawk Sm{3}.png -------------------------------------------------------------------------------- /example-graphs/Official Kala Learn {4}.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Den4200/amazon-price-tracker/HEAD/example-graphs/Official Kala Learn {4}.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Den4200/amazon-price-tracker/HEAD/requirements.txt -------------------------------------------------------------------------------- /tracker/communication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Den4200/amazon-price-tracker/HEAD/tracker/communication.py -------------------------------------------------------------------------------- /tracker/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Den4200/amazon-price-tracker/HEAD/tracker/data.py -------------------------------------------------------------------------------- /tracker/data/data.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tracker/data/itemNum.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /tracker/graphs/.graphs.txt: -------------------------------------------------------------------------------- 1 | graphs -------------------------------------------------------------------------------- /tracker/item-csv/.item-csv.txt: -------------------------------------------------------------------------------- 1 | item-csv -------------------------------------------------------------------------------- /tracker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Den4200/amazon-price-tracker/HEAD/tracker/main.py -------------------------------------------------------------------------------- /tracker/sender_password.key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tracker/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Den4200/amazon-price-tracker/HEAD/tracker/settings.py -------------------------------------------------------------------------------- /tracker/templates/price_drop_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Den4200/amazon-price-tracker/HEAD/tracker/templates/price_drop_email.html -------------------------------------------------------------------------------- /tracker/templates/price_drop_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Den4200/amazon-price-tracker/HEAD/tracker/templates/price_drop_text.txt -------------------------------------------------------------------------------- /tracker/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Den4200/amazon-price-tracker/HEAD/tracker/tracker.py --------------------------------------------------------------------------------