This commit is contained in:
IlyaShurupov 2024-07-10 15:42:15 +03:00
parent 366860a1ad
commit 22e19557d8
5 changed files with 162 additions and 7 deletions

View file

@ -12,12 +12,6 @@ def get_playlist_names():
return [name for name, items in playlists.items()]
def get_artists_str(artists_pack):
track_artists = [artist['name'] for artist in artists_pack]
artists = " ".join(track_artists)
return artists
def print_playlist_tracks(name):
print(name)
for track in playlists[name]: