initial commit

This commit is contained in:
Andreas Zweili 2017-03-11 12:28:03 +01:00
commit 45aab6dc05
4 changed files with 13 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*~

3
README.md Normal file
View File

@ -0,0 +1,3 @@
price_checker.py is a script which looks at the prices of a given
URL and compares them against a decired price. When the price is
reached it will send an email to a provided address.

9
price_checker.py Normal file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env python3
url = input("Please enter the url you want to monitor:")
desired_price = input("Please enter the price you're looking for:")
user_email = input("Please enter your email address:")
class Website(object)
class Price(objec)

0
price_checker.py~ Normal file
View File