Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 565 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 565 Bytes

python-qobuz

Unofficial python library for the Qobuz-API.

Installation

To install, run

pip install 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.

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")