diff options
author | B. Stack <bgstack15@gmail.com> | 2024-07-09 15:11:26 -0400 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2024-07-09 15:11:26 -0400 |
commit | 516263ea51350514571deafc70b14f9f19d760d8 (patch) | |
tree | 9da665d2e3eee383335c5f2ecc82dd649824ed66 /config.py.example | |
download | library-info-516263ea51350514571deafc70b14f9f19d760d8.tar.gz library-info-516263ea51350514571deafc70b14f9f19d760d8.tar.bz2 library-info-516263ea51350514571deafc70b14f9f19d760d8.zip |
initial commit
Diffstat (limited to 'config.py.example')
-rw-r--r-- | config.py.example | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/config.py.example b/config.py.example new file mode 100644 index 0000000..4c366dc --- /dev/null +++ b/config.py.example @@ -0,0 +1,19 @@ +import libraries +from libraries import * + +config = [ + { + "alias": "main library", + "class": aspen.Library, + "username": "1000049274222", + "password": "1234", + "baseurl": "https://aspen.example.org", + }, + { + "alias": "other library", + "class": polaris.Library, + "username": "1000049274384", + "password": "4321", + "baseurl": "https://catalog.example.org/polaris", + } +] |