From 1db1e8b602d8e760a5af162c68b19e54b27aab2a Mon Sep 17 00:00:00 2001 From: diamond75 Date: Fri, 4 Apr 2025 21:53:48 +1300 Subject: [PATCH] Change links in playable.py and edited the bytes_to_base62 function in utils.py --- zotify/playable.py | 4 ++-- zotify/utils.py | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) 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()