Skip to content

Instantly share code, notes, and snippets.

@11ph22il
11ph22il / tidal_import.py
Created November 4, 2022 22:20 — forked from RZetko/tidal_import.py
Export your CSV albums from various music streaming services to Tidal
# 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