Initial commit

This commit is contained in:
unknown
2025-11-22 03:39:04 +01:00
parent 912dfd504d
commit 4821831e6f
118 changed files with 29486 additions and 3 deletions

18
librespot/cache.py Normal file
View File

@@ -0,0 +1,18 @@
from __future__ import annotations
import typing
if typing.TYPE_CHECKING:
from librespot.core import Session
class CacheManager:
clean_up_threshold = 604800000
header_hash = 253
header_timestamp = 254
parent: str
def __init__(self, session: Session):
"""
@Todo Implement function
:param session:
"""