cleaned up
This commit is contained in:
parent
25ad99c816
commit
8db04fa526
1 changed files with 4 additions and 3 deletions
7
bcao.py
7
bcao.py
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env python3
|
||||
#BCAO - BandCamp Automatic Organiser
|
||||
#copyright 2018 lynnear software babyyyyyyyyyyyy
|
||||
#GPLv3 because why the fuck not
|
||||
#copyright 2018-2019 @LynnearSoftware@fedi.lynnesbian.space
|
||||
#Licensed under the GPLv3: https://www.gnu.org/licenses/gpl-3.0.html#content
|
||||
#input: a .zip from bandcamp
|
||||
#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))
|
||||
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])
|
||||
|
||||
for root, dirs, filez in os.walk(tmp):
|
||||
for file in filez: #for every file
|
||||
subprocess.check_output(["mv", root + os.sep + file, mPath + os.sep + file])
|
||||
|
||||
print("Deleting {}...".format(tmp))
|
||||
subprocess.check_output(["rm", "-rf", tmp])
|
||||
|
||||
print("Done!")
|
Loading…
Reference in a new issue