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
Works with Micronaut 3.5.3. | |
Don't forget to: | |
- change package names according to your project | |
- replace path to your AuthKey.p8 file in AppleSignInUtil.java and set up your resources accordingly | |
- implement your own AuthExpection or use generic Exception |
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 |