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() + "/"
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() + "/"