Metadata-Version: 2.1
Name: qobuz
Version: 0.0.1
Summary: "Unoffical API for Qobuz music streaming service."
Home-page: https://github.com/taschenb/python-qobuz
Author: taschenb
Author-email: taschenb@posteo.de
License: MIT
Keywords: qobuz,music,streaming
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: requests (>=2.11.1)
Provides-Extra: develop
Requires-Dist: flake8 ; extra == 'develop'
Requires-Dist: pytest ; extra == 'develop'
Requires-Dist: coverage ; extra == 'develop'
Requires-Dist: responses ; extra == 'develop'
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: responses ; extra == 'test'

# python-qobuz

Unofficial python library for the [Qobuz-API](https://github.com/Qobuz/api-documentation).

## Installation

To install, run
```bash
pip install qobuz
```

## Usage
In order to use the library, your application needs a valid APP_ID, which can be requested from [api@qobuz.com](mailto:api@qobuz.com).

```python
import qobuz

# Register your APP_ID
qobuz.api.APP_ID = "YOUR_APP_ID"
```


