first commit

This commit is contained in:
cool.gitter.not.me.again.duh
2025-05-30 21:28:21 -06:00
commit 92a7a5d84e
95 changed files with 30188 additions and 0 deletions

11
librespot/dealer.py Normal file
View File

@@ -0,0 +1,11 @@
from __future__ import annotations
from librespot.core import ApResolver
from librespot.metadata import AlbumId, ArtistId, EpisodeId, ShowId, TrackId
from librespot.proto import Connect_pb2 as Connect, Metadata_pb2 as Metadata
from librespot.structure import Closeable
import logging
import requests
import typing
if typing.TYPE_CHECKING:
from librespot.core import Session