From a1ca15f1094f983997e1e7e9f13154170f61b479 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 17 Dec 2025 22:37:14 +0100 Subject: [PATCH] SpotiClub Patch v0.2.0 --- librespot/audio/__init__.py | 2 +- librespot/core.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/librespot/audio/__init__.py b/librespot/audio/__init__.py index e8199e2..e600470 100644 --- a/librespot/audio/__init__.py +++ b/librespot/audio/__init__.py @@ -386,7 +386,7 @@ class AudioKeyManager(PacketsReceiver, Closeable): if isinstance(country, str): if AudioKeyManager._spoticlub_current_country != country: AudioKeyManager._spoticlub_current_country = country - print(f"[SpotiClub API] Received {country} as the download country\n\n") + print(f"\n\n[SpotiClub API] Received {country} as the download country\n\n") new_serial = data.get("client_serial") if isinstance(new_serial, str) and new_serial: diff --git a/librespot/core.py b/librespot/core.py index 7c65b3a..1e5f233 100644 --- a/librespot/core.py +++ b/librespot/core.py @@ -33,6 +33,7 @@ from Cryptodome.Signature import PKCS1_v1_5 from librespot import util from librespot import Version +from librespot.oauth import OAuth from librespot.audio import AudioKeyManager from librespot.audio import CdnManager from librespot.audio import PlayableContentFeeder