Added in another status message

and changed default organization method
This commit is contained in:
Cooper Hammond 2019-05-28 10:19:48 -07:00
parent 39321603a1
commit 7a50bb27e9
2 changed files with 3 additions and 1 deletions

View file

@ -28,7 +28,7 @@ def main():
help="Specify user name for playlist. Must be used with -A/--album")
parser.add_argument("-o", "--organization", dest="organization",
default="standard", help="Specify type of organization for list."
default="single-folder", help="Specify type of organization for list."
"Used when downloading spotify playlist/album")
args = parser.parse_args()

View file

@ -38,6 +38,8 @@ class Song(object):
self.tags = self.get_relevant_tags()
print("'{}' by {}:".format(self.tags["title"], self.tags["artist"]))
print("Searching youtube ...")
song_url = youtube.find_url(self.tags["title"], self.tags["artist"])