Skip to content

Instantly share code, notes, and snippets.

@vitiko98
Last active November 20, 2025 10:33
Show Gist options
  • Select an option

  • Save vitiko98/bb89fd203d08e285d06abf40d96db592 to your computer and use it in GitHub Desktop.

Select an option

Save vitiko98/bb89fd203d08e285d06abf40d96db592 to your computer and use it in GitHub Desktop.
Get Qobuz App ID and Secrets
  • Install qobuz-dl with pip install qobuz-dl.
  • Run the script with python3 get_keys.py.

The output will look like this:

victor@void $ python3 get_keys.py
App ID: xxxxxxxxx
####################
Secrets (the first usually works):
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
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)
print(f"Secrets (the first usually works):{secrets}")
@flaun
Copy link

flaun commented Nov 20, 2025

Hello,
I was able get the keys inside a virtual evironment: qobuz-dl-env
Unfortunately the App-ID and Secret I copied into Strawberry did not work. It is possible to search for different songs, but playing a song with strawberry leads to an error: Invalid Request Signature parameter (request_sig) (Root=1-691eee45-13d565535fe09d141f8693f7) (400)

Any ideas? Help would be great:)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment