aboutsummaryrefslogtreecommitdiff
path: root/libraries/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/base.py')
-rw-r--r--libraries/base.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/libraries/base.py b/libraries/base.py
index f6f75e4..3c68616 100644
--- a/libraries/base.py
+++ b/libraries/base.py
@@ -26,6 +26,19 @@ class BaseLibrary:
self.baseurl = baseurl
# will need cookies or session manager here.
+ def get_reservations(self, verbose = False):
+ sample = {
+ "position": "1",
+ "status": "pending",
+ "date_placed": "2024-07-11",
+ "format": "DVD",
+ "location": "Somewhere",
+ "title": "Example reserved dvd",
+ "img": "DUMMYIMAGE23412341234",
+ "img_type": "image/sample",
+ }
+ return [sample]
+
def get_checkouts(self):
""" STUB """
sample = {
bgstack15