The Master Object to be pickled.
| 55 | |
| 56 | @dataclass |
| 57 | class Book: |
| 58 | """The Master Object to be pickled.""" |
| 59 | metadata: BookMetadata |
| 60 | spine: List[ChapterContent] # The actual content (linear files) |
| 61 | toc: List[TOCEntry] # The navigation tree |
| 62 | images: Dict[str, str] # Map: original_path -> local_path |
| 63 | |
| 64 | # Meta info |
| 65 | source_file: str |
| 66 | processed_at: str |
| 67 | version: str = "3.0" |
| 68 | |
| 69 | |
| 70 | # --- Utilities --- |