diff --git a/zotify/playable.py b/zotify/playable.py index 94d2030..eae531a 100644 --- a/zotify/playable.py +++ b/zotify/playable.py @@ -19,8 +19,8 @@ from zotify.utils import ( fix_filename, ) -IMG_URL = "https://i.s" + "cdn.co/image/" -LYRICS_URL = "https://sp" + "client.wg.sp" + "otify.com/color-lyrics/v2/track/" +IMG_URL = "https://i.scdn.co/image/" +LYRICS_URL = "https://spclient.wg.spotify.com/color-lyrics/v2/track/" class Lyrics: diff --git a/zotify/utils.py b/zotify/utils.py index 0de959d..5780704 100644 --- a/zotify/utils.py +++ b/zotify/utils.py @@ -208,7 +208,7 @@ def fix_filename( return sub(regex, substitute, str(filename), flags=IGNORECASE) -def bytes_to_base62(id: bytes) -> str: +def bytes_to_base62(idstr: bytes) -> str: """ Converts bytes to base62 Args: @@ -216,4 +216,5 @@ def bytes_to_base62(id: bytes) -> str: Returns: base62 """ - return BASE62.encode(id, 22).decode() + print (idstr) + return BASE62.encode(idstr, 22).decode()