518155051f
- SQLite-Cache für API-Rate-Limits (LRU, 10k Einträge) - TMDB/MusicBrainz/TheTVDB Clients - Pre-Scan-Modul für TOC-Lesung ohne Ripping - Metadaten-Preview UI - Jellyfin-Formatierung (NFO + Images) - API Endpoints für Lookup, Confirm, Format
6 lines
136 B
Python
6 lines
136 B
Python
"""Cache package."""
|
|
|
|
from .cache import init_cache, get, set, delete, clear
|
|
|
|
__all__ = ["init_cache", "get", "set", "delete", "clear"]
|