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)