Metadata-Version: 1.2
Name: tidalapi
Version: 0.6.5
Summary: Unofficial API for TIDAL music streaming service.
Home-page: https://github.com/tamland/python-tidal
Author: Thomas Amland
Author-email: thomas.amland@googlemail.com
Maintainer: morguldir
Maintainer-email: morguldir@protonmail.com
License: LGPL
Description: tidalapi
        ========
        
        .. image:: https://img.shields.io/pypi/v/tidalapi.svg
            :target: https://pypi.org/project/tidalapi
        
        .. image:: https://api.netlify.com/api/v1/badges/f05c0752-4565-4940-90df-d2b3fe91c84b/deploy-status
            :target: https://tidalapi.netlify.com/
        
        Unofficial Python API for TIDAL music streaming service.
        
        
        
        0.7.0 Rewrite
        -------------
        
        Currently the project is being rewritten to make it easier to maintain and create documentation for, see https://github.com/tamland/python-tidal/projects/1 for progress. There may be breaking changes, but i might be able to keep the current usage for a deprecation period. Anyways, you should probably wait with writing pull requests until 0.7.0 has been released.
        
        Installation
        ------------
        
        Install from `PyPI <https://pypi.python.org/pypi/tidalapi/>`_ using ``pip``:
        
        .. code-block:: bash
        
            $ pip install tidalapi
        
        
        
        Example usage
        -------------
        
        .. code-block:: python
        
            import tidalapi
        
            session = tidalapi.Session()
            session.login('username', 'password')
            tracks = session.get_album_tracks(album_id=16909093)
            for track in tracks:
                print(track.name)
        
        
        Documentation
        -------------
        
        Documentation is available at https://tidalapi.netlify.com
        
        
        
        
        History
        -------
        
        v0.6.5
        ------
        
        * Update api token - morguldir_
        
        v0.6.4
        ------
        
        * Add parameter to search() allowing for more results (up to 300) - morguldir_
        * Fix get_track_url() not returning anything - morguldir_
        
        v0.6.3
        ------
        
        * Fix quality options using enum names instead of values - morguldir_
        * Handle situations where tidal doesn't set the version tag - morguldir_
        
        v0.6.2
        ------
        
        * Update lossless token - morguldir_
        * Always use the same api token - morguldir_
        * Include additional info when logging fails - morguldir_
        * Make user_id and country_code optional when using load_session() - morguldir_
        * Add version tag for Track - Husky22_
        * Switch to netlify for documentation - morguldir_
        
        .. _morguldir: https://github.com/morguldir
        .. _Husky22: https://github.com/Husky22
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
