Change links in playable.py and edited the bytes_to_base62 function in utils.py
This commit is contained in:
parent
fe1ee92caa
commit
1db1e8b602
2 changed files with 5 additions and 4 deletions
|
@ -19,8 +19,8 @@ from zotify.utils import (
|
||||||
fix_filename,
|
fix_filename,
|
||||||
)
|
)
|
||||||
|
|
||||||
IMG_URL = "https://i.s" + "cdn.co/image/"
|
IMG_URL = "https://i.scdn.co/image/"
|
||||||
LYRICS_URL = "https://sp" + "client.wg.sp" + "otify.com/color-lyrics/v2/track/"
|
LYRICS_URL = "https://spclient.wg.spotify.com/color-lyrics/v2/track/"
|
||||||
|
|
||||||
|
|
||||||
class Lyrics:
|
class Lyrics:
|
||||||
|
|
|
@ -208,7 +208,7 @@ def fix_filename(
|
||||||
return sub(regex, substitute, str(filename), flags=IGNORECASE)
|
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
|
Converts bytes to base62
|
||||||
Args:
|
Args:
|
||||||
|
@ -216,4 +216,5 @@ def bytes_to_base62(id: bytes) -> str:
|
||||||
Returns:
|
Returns:
|
||||||
base62
|
base62
|
||||||
"""
|
"""
|
||||||
return BASE62.encode(id, 22).decode()
|
print (idstr)
|
||||||
|
return BASE62.encode(idstr, 22).decode()
|
||||||
|
|
Loading…
Add table
Reference in a new issue