Metadata-Version: 1.2
Name: tidalapi
Version: 0.6.2
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://readthedocs.org/projects/tidalapi/badge/?version=latest
            :target: https://tidalapi.readthedocs.io/en/latest/
        
        Unofficial Python API for TIDAL music streaming service.
        
        
        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.readthedocs.io/en/latest/
        
        
        
        
        History
        -------
        
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
