A simple Amazon price tracking bot written in Python.
This Telegram bot checks if the price of a given Amazon item is below a given threshold value, both the url and the limit value are provided by a csv file.
The modules you have to import are:
- Pandas - to manage the csv file
- BeautifulSoup (BS4) - to scrap Amazon website
- Telegram API - of course, this is a Telegram Bot
Scheduling of the searching jobs are managed by Telegram.ext.JobQueue
class, in this way you can avoid a 'while True' loop that will prevent to send new commands to the Bot.