From 37f2358526fceafabc9d84ef2045a8eea9b3608b Mon Sep 17 00:00:00 2001 From: Paul-Louis NECH Date: Wed, 23 Sep 2020 16:48:38 +0200 Subject: [PATCH] fix: handle 'temporarily sold out' --- baby.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/baby.py b/baby.py index 4f6b42b..d1ca136 100755 --- a/baby.py +++ b/baby.py @@ -3,6 +3,15 @@ import requests from bs4 import BeautifulSoup +blacklist = [ + "Out of stock", + "temporarily sold out" +] + + +def in_stock(stock: str): + return not any([b in stock for b in blacklist]) + def main(): url = "https://onlinebabyplants.com/shop/exclusive-alocasia-zebrina-variegated/" @@ -13,7 +22,7 @@ def main(): price = soup.find(attrs={"class": "woocommerce-Price-amount amount"}).text stock = soup.find(attrs={"class": "stock"}).text - if "Out of stock" not in stock: + if in_stock(stock): sms("%s en stock pour %s: \"%s\"\n-> %s" % (name, price, stock, url)) else: print("%s pas en stock..." % name) -- libgit2 0.27.0