Last active
April 9, 2024 18:48
-
-
Save RZetko/71801a20188e842ef03bed3b6d7a297f to your computer and use it in GitHub Desktop.
Export your CSV albums from various music streaming services to Tidal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# You need to install tidalapi using pip install tidalapi (more can be found here https://github.com/tamland/python-tidal) | |
# Input is UTF-8 CSV file with format Artist - Album | |
# Fill in your username and password on line 13 -> session.login('username', 'password') | |
# Fill in filename of your CSV file on line 16 -> with open('file.csv', encoding="utf8") as csvfile: | |
import csv | |
import sys | |
import pprint | |
import tidalapi | |
session = tidalapi.Session() | |
session.login('username', 'password') | |
favorites = tidalapi.Favorites(session, session.user.id) | |
with open('file.csv', encoding="utf8") as csvfile: | |
rows = csv.reader(csvfile) | |
for artist, album in rows: | |
print('Processing {} - {}\n'.format(artist, album)) | |
albums_data = session.search('album', '{} - {}'.format(artist, album)).albums | |
if len(albums_data) == 0: | |
print('WARNING: No albums found for {} - {}, continuing'.format(artist, album)) | |
continue | |
selection = 0 | |
album_to_add = albums_data[selection] | |
favorites.add_album(album_to_add.id) | |
print('\n{}\n'.format('*' * 20)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment