From 20368d37df0dbcb2c04c3813adf4ca0c41f6c365 Mon Sep 17 00:00:00 2001 From: Paul-Louis NECH Date: Sat, 30 Nov 2019 13:29:35 +0100 Subject: [PATCH] refactor(baby): Only zebrina --- baby.py | 24 +++++++++--------------- 1 file changed, 9 insertions(+), 15 deletions(-) diff --git a/baby.py b/baby.py index 5050ea7..b4747b8 100644 --- a/baby.py +++ b/baby.py @@ -3,22 +3,16 @@ 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/" + url = "https://onlinebabyplants.com/shop/exclusive-alocasia-zebrina-variegated/" - 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)) + 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)) + if "Out of stock" not in stock: + sms("%s in stock šŸŽ‰ \"%s\"\nšŸ”— %s" % (name, stock, url)) def sms(msg: str): @@ -30,7 +24,7 @@ def sms(msg: str): if res.ok: print("Success!") else: - print(res.reason, res.headers, res.) + print(res.status_code, res.reason, res.headers) if __name__ == '__main__': -- libgit2 0.27.0