Metadata-Version: 2.1
Name: qobuz
Version: 0.0.2
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
Description: # 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.
        For streaming audio, you also need a valid APP_SECRET.
        Both id and secret can be requested from [api@qobuz.com](mailto:api@qobuz.com).
        
        ```python
        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")
        ```
        
Keywords: qobuz,music,streaming
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
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
Provides-Extra: develop
Provides-Extra: test
