Ebookrack
Python library for managing a personal e-book library
The ebookrack.calibre subpackage allows querying an e-book library managed by Calibre.
Installation
The package is available on PyPI and can be installed with pip:
pip install ebookrack
Usage
The Library class in ebookrack.calibre provides a high-level entry point
for querying the contents of a Calibre library.
from pathlib import Path
from ebookrack.calibre.library import Library
lib_path = Path("~/Books").expanduser()
library = Library(lib_path)
for book in library.books:
print(book.title)
print(" & ".join(book.authors))
for file in book.files:
print(f"{file.format:6s}: {file}")
print("---")
Release files for ebookrack 0.4.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| ebookrack-0.4.1.tar.gz | 13.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| ebookrack-0.4.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 17.5 kB
Release files / ebookrack-0.4.1.tar.gz
| Download URL | ebookrack-0.4.1.tar.gz |
|---|---|
| Size | 13.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
217d99d337c3311c043527546de60761a224dc16b1271ffcdebaacb6961b6f28
|
|
BLAKE2b-256 checksum How to use checksums |
87d841f82891ff03cec9cb417afc23703b3ea0467f04a15daf8a993e5508db96
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
python-requests/2.31.0
|
Release files / ebookrack-0.4.1-py3-none-any.whl
| Download URL | ebookrack-0.4.1-py3-none-any.whl |
|---|---|
| Size | 3.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c366cf6f3e7baa5b0e7f279f4974711fa9e9e739ae176d40946dea7440980648
|
|
BLAKE2b-256 checksum How to use checksums |
0c74c59e44da3eae1b7ff51695cf35e203d6c67474852368c26038850f3cf1a5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
python-requests/2.31.0
|