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)