feat: implement public librespot api class, see docs

This commit is contained in:
Xoconoch
2025-08-26 22:02:38 -06:00
parent 0d2607e263
commit c38f10957c
11 changed files with 1761 additions and 337 deletions

View File

@@ -0,0 +1,23 @@
#!/usr/bin/python3
from .types import Image, ExternalUrls, ArtistRef, AlbumRef
from .track import Track
from .album import Album
from .playlist import Playlist, PlaylistItem, TrackStub, TracksPage, Owner, UserMini
from .artist import Artist
__all__ = [
"Image",
"ExternalUrls",
"ArtistRef",
"AlbumRef",
"Track",
"Album",
"Playlist",
"PlaylistItem",
"TrackStub",
"TracksPage",
"Owner",
"UserMini",
"Artist",
]