Fixed issue #4 (Audio key error, code: 2)

This commit is contained in:
DraftKinner 2025-02-10 00:27:17 -05:00
parent afc696de5d
commit 645be0def3
3 changed files with 10 additions and 0 deletions

View file

@ -5,3 +5,4 @@ Pillow
pkce
requests
tqdm
ratelimit

View file

@ -26,6 +26,7 @@ install_requires =
pkce
requests
tqdm
ratelimit
[options.entry_points]
console_scripts =

View file

@ -7,6 +7,7 @@ from threading import Thread
from typing import Any
from time import time_ns
from urllib.parse import urlencode, urlparse, parse_qs
from ratelimit import limits, sleep_and_retry
from librespot.audio import AudioKeyManager, CdnManager
from librespot.audio.decoders import VorbisOnlyAudioQuality
@ -36,6 +37,8 @@ API_URL = "https://api.sp" + "otify.com/v1/"
AUTH_URL = "https://accounts.sp" + "otify.com/"
REDIRECT_URI = "http://127.0.0.1:4381/login"
CLIENT_ID = "65b70807" + "3fc0480e" + "a92a0772" + "33ca87bd"
RATE_LIMIT_INTERVAL_SECS = 30
RATE_LIMIT_CALLS_PER_INTERVAL = 9
SCOPES = [
"app-remote-control",
"playlist-modify",
@ -221,6 +224,11 @@ class Session(LibrespotSession):
self.__auth_lock.notify_all()
self.mercury().interested_in("sp" + "otify:user:attributes:update", self)
@sleep_and_retry
@limits(calls=RATE_LIMIT_CALLS_PER_INTERVAL, period=RATE_LIMIT_INTERVAL_SECS)
def api(self) -> ApiClient:
return super().api()
class ApiClient(LibrespotApiClient):
def __init__(self, session: Session):