Unofficial Python API for TIDAL music streaming service.
Requires Python 3.7 or higher.
The 0.7.0 rewrite is now complete, see the migration guide for dealing with it
Install from PyPI using pip
:
$ pip install tidalapi
import tidalapi
session = tidalapi.Session()
# Will run until you visit the printed url and link your account
session.login_oauth_simple()
album = session.album(66236918)
tracks = album.tracks()
for track in tracks:
print(track.name)
for artist in track.artists:
print(' by: ', artist.name)
Documentation is available at https://tidalapi.netlify.app/
This project uses poetry for dependency management and packaging. To install dependencies and setup the project for development, run:
$ pip install pipx
$ pipx install poetry
$ poetry install --no-root