Unofficial SDK for interacting with Stockholm Library.
Project description
Stockholm-Library
Unofficial SDK for interacting with Stockholm Library
Currently the project is in very early development and very little functionality can be used. But if you are eager to get stuff going, please consider helping out by contributing!
Usage
Connecting
The simplest way to connect with the client is through credentials.
from stockholm_library import Client
client = Client()
success: bool = client.login(
user="8705061234",
pin="1234"
)
print(success) # True
Fetching loaned books
loans = client.get_loans()
for loan in loans:
print(loan) # {id: 123456, book: ...}
Below is the structure of a Loan
object:
{
"id": 123456,
"book": models.Book(
"id": 129716,
"title": "Liftarens guide till galaxen",
"author": "Douglas Adams"
),
"borrowed_from": "Telefonplans bibliotek",
"borrowed_date": datetime.date(2022, 3, 5),
"due_date": datetime.date(2022, 4, 3),
"can_re_borrow": True
}
Beware that not all loans have an ID at every given moment. If it's not possible to re-borrow a book it won't yield an ID.
Contributing
Contributions are always welcome!
To contribute, please take the following steps:
- Fork the repo
- Add your change
- Make a pull request with a short description of the change you're proposing.
Authors
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for stockholm_library-0.2.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70abad5898797cf90be4f05b8e5fe83a8f71b13b34d081fc1c93e7602175f204 |
|
MD5 | 71699322fb3229b357d6e9e7d79c2a13 |
|
BLAKE2b-256 | fa1b45c9cd3136b0ca16a5dc8650f83f54b628c2f6211810103eabdf8c456cce |