cleaned up

This commit is contained in:
Lynne Megido 2019-05-05 04:00:18 +10:00
parent 25ad99c816
commit 8db04fa526
Signed by: lynnesbian
GPG Key ID: FB7B970303ACE499

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
#BCAO - BandCamp Automatic Organiser #BCAO - BandCamp Automatic Organiser
#copyright 2018 lynnear software babyyyyyyyyyyyy #copyright 2018-2019 @LynnearSoftware@fedi.lynnesbian.space
#GPLv3 because why the fuck not #Licensed under the GPLv3: https://www.gnu.org/licenses/gpl-3.0.html#content
#input: a .zip from bandcamp #input: a .zip from bandcamp
#output: it organises it, adds cover art, puts it in the right place... #output: it organises it, adds cover art, puts it in the right place...
@ -154,13 +154,14 @@ if choice == "Custom...":
# print("Setting artist to {0}".format(choice)) # print("Setting artist to {0}".format(choice))
artist = choice artist = choice
mPath = "/home/lynne/Music/Music/{0}/{1}".format(artist, album) #todo: don't hardcode this mPath = "/home/lynne/Music/Music/{}/{}".format(artist, album) #todo: don't hardcode this
subprocess.check_output(["mkdir", "-p", mPath]) subprocess.check_output(["mkdir", "-p", mPath])
for root, dirs, filez in os.walk(tmp): for root, dirs, filez in os.walk(tmp):
for file in filez: #for every file for file in filez: #for every file
subprocess.check_output(["mv", root + os.sep + file, mPath + os.sep + file]) subprocess.check_output(["mv", root + os.sep + file, mPath + os.sep + file])
print("Deleting {}...".format(tmp))
subprocess.check_output(["rm", "-rf", tmp]) subprocess.check_output(["rm", "-rf", tmp])
print("Done!") print("Done!")