https://github.com/leoandersoon/price-tracking-app
This app is providing you to track some online products' prices via GMAIL.
https://github.com/leoandersoon/price-tracking-app
Last synced: 2 days ago
JSON representation
This app is providing you to track some online products' prices via GMAIL.
- Host: GitHub
- URL: https://github.com/leoandersoon/price-tracking-app
- Owner: leoandersoon
- Created: 2021-10-23T15:50:14.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-11T06:09:43.000Z (over 4 years ago)
- Last Synced: 2026-06-23T03:39:29.103Z (2 days ago)
- Language: Python
- Size: 34.2 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# 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;
1. requests
We need that library to web scrapping.
`$ pip install requests`
2. 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._
3. 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,_