Change Directory
This commit is contained in:
23
librespot/metadata/SpotifyId.py
Normal file
23
librespot/metadata/SpotifyId.py
Normal file
@@ -0,0 +1,23 @@
|
||||
class SpotifyId:
|
||||
STATIC_FROM_URI = "fromUri"
|
||||
STATIC_FROM_BASE62 = "fromBase62"
|
||||
STATIC_FROM_HEX = "fromHex"
|
||||
|
||||
@staticmethod
|
||||
def from_base62(base62: str):
|
||||
pass
|
||||
|
||||
@staticmethod
|
||||
def from_hex(hex_str: str):
|
||||
pass
|
||||
|
||||
@staticmethod
|
||||
def from_uri(uri: str):
|
||||
pass
|
||||
|
||||
def to_spotify_uri(self) -> str:
|
||||
pass
|
||||
|
||||
class SpotifyIdParsingException(Exception):
|
||||
def __init__(self, cause):
|
||||
super().__init__(cause)
|
||||
Reference in New Issue
Block a user