Metadata-Version: 2.1
Name: tidalapi
Version: 0.6.0
Summary: Unofficial API for TIDAL music streaming service.
Home-page: https://github.com/tamland/tidalapi
Author: Thomas Amland
Author-email: thomas.amland@googlemail.com
Maintainer: morguldir
Maintainer-email: morguldir@protonmail.com
License: LGPL
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.4
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: requests

tidalapi
========

.. image:: https://badge.fury.io/py/tidalapi.png
    :target: http://badge.fury.io/py/tidalapi


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 http://pythonhosted.org/tidalapi/




History
-------


