Library prototyping based on Calibre.
Project description
Library prototyping based on Calibre
Calibrestekje is a Python library which provides a way to work with the Calibre database outside the context of the Calibre desktop and web interfaces. Generated SQLAlchemy database bindings (see sqlacodegen for more) are provided which allow for read/write access to an existing Calibre database. These bindings are more fine grained than Calibres database interface and provide direct access to the Database table layer.
Quick Example
from calibrestekje import Book, Publisher, init_session
session = init_session("sqlite:///mymetadata.db")
publisher = (session.query(Publisher)
.filter(Publisher.name == "MIT Press").one())
books = (session.query(Book)
.filter(Book.publishers.contains(publisher)))
print(f"Books published by MIT Press: {books.count()}")
Documentation
Mirroring
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
calibrestekje-0.0.2.tar.gz
(24.6 kB
view details)
File details
Details for the file calibrestekje-0.0.2.tar.gz
.
File metadata
- Download URL: calibrestekje-0.0.2.tar.gz
- Upload date:
- Size: 24.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55a0dcd8d967c1b27e5c795fe8cff84807ea2cba35be67c70e9469ab33550b8c |
|
MD5 | a0e56f20fd3ebfb6e81349ef20a8b7ce |
|
BLAKE2b-256 | dacc70f147b185cf32bbdff8685b7dd1dafd8d064b6197646624d972a0323835 |