Last active
December 18, 2022 00:37
-
-
Save MartinWeiss12/2c2b27815137516836da1ff63954beb8 to your computer and use it in GitHub Desktop.
ETL
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
path = r'' #path of your spotify top tracks excel file | |
outputPath = '' #path where to output your spotify grid | |
imageFolderPath = '' #path for the folder that will store album cover images | |
data = pd.read_excel(path) | |
rankList = (data['Rank']).tolist() | |
trackList = (data['Track']).tolist() | |
streamList = (data['Streams']).tolist() | |
trackUriList = (data['URI']).tolist() | |
albumUriList = [] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment