aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-07-13 16:49:02 -0400
committerB. Stack <bgstack15@gmail.com>2024-07-13 16:49:02 -0400
commitf5aea6cf124b56e4b065e58971e1b3497fc01027 (patch)
treea733c735d24edd56c032a3ef98c7c28f656e6fe5
parentaspen: show pickup by date on ready reservations (diff)
downloadlibrary-info-f5aea6cf124b56e4b065e58971e1b3497fc01027.tar.gz
library-info-f5aea6cf124b56e4b065e58971e1b3497fc01027.tar.bz2
library-info-f5aea6cf124b56e4b065e58971e1b3497fc01027.zip
update readme
-rw-r--r--README.md18
1 files changed, 5 insertions, 13 deletions
diff --git a/README.md b/README.md
index d336782..ec3dcb3 100644
--- a/README.md
+++ b/README.md
@@ -38,6 +38,11 @@ To take advantage of [DataTables JS library](https://datatables.net/), you need
# Extending `library_info`
You can write your own plugin for deriving checkout items from a library website. If your library provides a public API, I don't believe you. See [libraries/base.py](libraries/base.py) or existing plugins as an example. The name of the file is part of the class name used in `config.py`.
+Two plugins exist for some ILSes I have already encountered:
+
+* aspen
+* polaris
+
# Design notes
Columns for items checked out:
@@ -60,20 +65,7 @@ Columns for items checked out:
* pickup location
* status
-### Reserved items
-
-* position in line
-* date placed
-* format
-* title
-* picture
-* pickup location
-* status
-
plugin-based, so I can write a plugins/aspen.py with some standard format output.
# Improvements
I still need to implement these features.
-
-* add library card expiration date
-* aspen and polaris: show the held until date
bgstack15