From f813486db8c60d9659c99896c8ab49039d489256 Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Sat, 13 Jul 2024 16:39:56 -0400 Subject: output the card expiration dates --- libraries/polaris.py | 1 + 1 file changed, 1 insertion(+) (limited to 'libraries') diff --git a/libraries/polaris.py b/libraries/polaris.py index e945fcc..8ff25d8 100644 --- a/libraries/polaris.py +++ b/libraries/polaris.py @@ -81,6 +81,7 @@ class Library(BaseLibrary): dates = [i.text.replace("(as of ","").replace(")","").replace("(","") for i in item.find_all("span",class_="patron-account__holds-date")] formats = [i["title"] for i in item.find_all("img") if "aria-label" not in i.attrs] img_b64, img_type = self.get_image(images_hrefs[0]) + # it is a happy accident that "date placed" for a ready reservation will indicate "until 7/17/2024". No work is required to capture this separately. obj = { "patron": self.alias, "position": values_dict["Hold Request Position"], -- cgit