diff options
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", + } +] |