Closed nicofilliol closed 5 years ago
Playlist class to easily manage user playlists. (Issue #9)
Options include to create new (spotitude) playlists, load existing playlists and edit them (add tracks).
Playlist creation needs to be added to spotitude.py according to wishes. Use following code as an example:
from playlist import Playlist # Create new Spotitude Playlist spotitude_playlist = Playlist(spotify) spotitude_playlist.create_spotitude_playlist( args.time_range, top_tracks_df['id'].tolist())
@nicofilliol, looks great! Thank you for making this!
Playlist class to easily manage user playlists. (Issue #9)
Options include to create new (spotitude) playlists, load existing playlists and edit them (add tracks).
Playlist creation needs to be added to spotitude.py according to wishes. Use following code as an example: