/python-qobuz

Unoffical API for Qobuz music streaming service.

Primary LanguagePythonMIT LicenseMIT

python-qobuz

Unofficial python library for the Qobuz-API (project removed).
Cloned from python-qobuz

Installation

  • download code from zip, unzip in "ANYWHERE" and run "pip install "ANYWHERE"/qobuz"

or

  • run "pip install git+https://github.com/fdenivac/python-qobuz"

Usage

In order to use the library, your application needs a valid APP_ID. For streaming audio, you also need a valid APP_SECRET. Both id and secret can be requested from api@qobuz.com.
For retrieve APP_ID and APP_SECRET, have look on TODO

import qobuz

# Register your APP_ID
qobuz.register_app("YOUR_APP_ID")

# Or register your APP_ID and APP_SECRET
qobuz.register_app("YOUR_APP_ID", "YOUR_APP_SECRET")

For a complete usage, see project myqobuz