/wimpy

Unofficial WiMP/TIDAL Python API

Primary LanguagePythonGNU Lesser General Public License v3.0LGPL-3.0

wimpy

https://badge.fury.io/py/wimpy.png https://travis-ci.org/tamland/wimpy.png?branch=master

Unofficial WiMP Python API

Example usage

from wimpy import Session

wimp = Session()
wimp.login('username', 'password')
tracks = wimp.get_album_tracks(album_id=16909093)
for track in tracks:
    print(track.name)

TODO

  • OO API (let's see how long until the web API changes first)
  • Implement POST methods (edit playlists, add favourites etc.)