You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
no issue but a very simply feature request. I'd like that the downloaded files are put in a subfolder instead of "throwing" them all into the folder where the python code lies.
Hi,
no issue but a very simply feature request. I'd like that the downloaded files are put in a subfolder instead of "throwing" them all into the folder where the python code lies.
Simply change
directory = os.getcwd() + "/" + track.artists()[0].name() + "/" + track.album().name() + "/"
to something like
directory = os.getcwd() + "/downloaded/" + track.artists()[0].name() + "/" + track.album().name() + "/"
The text was updated successfully, but these errors were encountered: