As much of the music on Hype Machine contains no metadata, I would suggest changing the line:
filename = "{}.mp3".format(title)
to ..
filename = "{} - {}.mp3".format(artist, title)
That way we get the standard "Artist - Title.mp3" filename format. I use Jaikoz to automate the process of tagging music, which allows metadata to be extracted from filenames in this manner.
As much of the music on Hype Machine contains no metadata, I would suggest changing the line:
filename = "{}.mp3".format(title)
to ..
filename = "{} - {}.mp3".format(artist, title)
That way we get the standard "Artist - Title.mp3" filename format. I use Jaikoz to automate the process of tagging music, which allows metadata to be extracted from filenames in this manner.
Thanks for the script! Very time-saving