Skip to content

Instantly share code, notes, and snippets.

View ValentinMATHIEU's full-sized avatar
🎯
Focusing

Valentin MATHIEU ValentinMATHIEU

🎯
Focusing
View GitHub Profile
@vitiko98
vitiko98 / get_keys.py
Last active March 8, 2024 20:00
Get Qobuz App ID and Secrets
from qobuz_dl.bundle import Bundle
bundle = Bundle()
app_id = bundle.get_app_id()
secrets = "\n".join(bundle.get_secrets().values())
print(f"App ID: {app_id}")
print("#" * 20)