From 36ce074306bbc75ef5ff8e29005b3a99ab79b7e2 Mon Sep 17 00:00:00 2001 From: Paul-Louis NECH Date: Sat, 30 Nov 2019 13:28:16 +0100 Subject: [PATCH] feat(baby): mvp --- baby.py | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 baby.py diff --git a/baby.py b/baby.py new file mode 100644 index 0000000..5050ea7 --- /dev/null +++ b/baby.py @@ -0,0 +1,37 @@ +import requests +from bs4 import BeautifulSoup + + +def main(): + url_zebrina = "https://onlinebabyplants.com/shop/exclusive-alocasia-zebrina-variegated/" + url_poinsettia = "https://onlinebabyplants.com/shop/poinsettia/" + url_dragon = "https://onlinebabyplants.com/shop/alocasia-pink-dragon/" + + for url in [url_zebrina, + url_poinsettia, + # url_dragon + ]: + res = requests.get(url) + soup = BeautifulSoup(res.content, "html.parser") + name = soup.find(attrs={"class": "product_title"}).text + stock = soup.find(attrs={"class": "stock"}).text + print("%s: %s" % (name, stock)) + + if "Out of stock" not in stock: + sms("%s in stock šŸŽ‰ \"%s\"\nšŸ”— %s" % (name, stock, url)) + + +def sms(msg: str): + print("Sending sms: \"%s\"" % msg) + res = requests.post("https://smsapi.free-mobile.fr/sendmsg", + json={"user": "23355840", + "pass": "1zdVdBEjjSqnv3", + "msg": msg}) + if res.ok: + print("Success!") + else: + print(res.reason, res.headers, res.) + + +if __name__ == '__main__': + main() -- libgit2 0.27.0