From 2e03674606c3dc5514f7aed1cce497da3e3df573 Mon Sep 17 00:00:00 2001 From: Paul-Louis NECH Date: Tue, 4 Feb 2020 12:09:14 +0100 Subject: [PATCH] feat(baby): Add price to message --- baby.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/baby.py b/baby.py index c67af79..4f6b42b 100755 --- a/baby.py +++ b/baby.py @@ -10,10 +10,11 @@ def main(): res = requests.get(url) soup = BeautifulSoup(res.content, "html.parser") name = soup.find(attrs={"class": "product_title"}).text + price = soup.find(attrs={"class": "woocommerce-Price-amount amount"}).text stock = soup.find(attrs={"class": "stock"}).text if "Out of stock" not in stock: - sms("%s en stock: \"%s\"\n-> %s" % (name, stock, url)) + sms("%s en stock pour %s: \"%s\"\n-> %s" % (name, price, stock, url)) else: print("%s pas en stock..." % name) -- libgit2 0.27.0