mirror of
https://github.com/Xevion/spotify-explicit.git
synced 2025-12-06 03:16:34 -06:00
17 lines
376 B
Python
17 lines
376 B
Python
import os
|
|
import sys
|
|
import json
|
|
|
|
def get_files():
|
|
pass
|
|
|
|
def process_track_file(data):
|
|
pass
|
|
|
|
def main():
|
|
saved_response = json.load(open('saved_tracks.json', 'r'))
|
|
for track in saved_response['items']:
|
|
print('{} by {}'.format(
|
|
track['track']['name'],
|
|
' & '.join(artist['name'] for artist in track['track']['artists'])
|
|
)) |