sigma67 / spotify_to_ytmusic

Clone a Spotify playlist to YouTube Music
MIT License
895 stars 67 forks source link

use spotify playlist name or given name when doing update #40

Closed necrolyte2 closed 1 year ago

necrolyte2 commented 1 year ago

This PR converts the --update argument to a flag

This is a breaking change as anybody currently using the --update flag will need to change the way they are calling the script.

When I went to use the --update flag I assumed that the intention would be that I could essentially just run the same command as I did to sync the given spotify playlist but provide --update

python YouTube.py <spotifylink> --update

Then found that you need to specify the name of the Youtube playlist after the --update flag which seems redundant to the --name flag and likely harder for the user as they have to add an unnecessary value that you can programmatically figure out anyways.

Open to creating a new argument instead to avoid the breaking change

sigma67 commented 1 year ago

I do like the idea behind this change and the simplicity of the implementation :)