Price Tracking App
variables and descriptions of that code is in Turkish language. but we're working on translate them into English.
This app is providing you to track some online products' prices via GMAIL.
Libraries
Here are libraries that you'll need in that project;
-
requests
We need that library to web scrapping.
pip install requests
-
smtplib
So we will have some scrapped prices. And we need to send those data to a mail adress. We need that library to acces SMTP.
The smtplib library is already a standard package of Python. I mean, if you have Python in your machine, you'll alrady have that library. -
BeautifulSoap
Beautiful Soup is a library that makes it easy to scrape information from web pages. It sits atop an HTML or XML parser, providing Pythonic idioms for iterating, searching, and modifying the parse tree.
pip install beautifulsoup4
Sincerely,
Leo Anderson