There was an error while loading. Please reload this page.
1 parent c04be74 commit 6757ceaCopy full SHA for 6757cea
scripts/Amazon_price_tracker/README.md
@@ -0,0 +1,11 @@
1
+# Amazon Price Tracker
2
+
3
+A price tracker app in python that will keep track your product price and will mail you when the price wents down.
4
5
6
+## Usage/Examples
7
8
9
+* 3 packages required requests, beautifulsoup, smtplib
10
+* Use pip install requests, pip install bs4 and pip install secure-smtplib
11
+* run scap.py file
scripts/Amazon_price_tracker/scap.py
@@ -1,3 +1,4 @@
+import time
import requests # Will help us to get out url directed
from bs4 import BeautifulSoup # Will help us to scrap us the data
0 commit comments