mirror of
https://github.com/cooperhammond/irs.git
synced 2025-01-09 20:15:27 +00:00
Added in another status message
and changed default organization method
This commit is contained in:
parent
39321603a1
commit
7a50bb27e9
|
@ -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()
|
||||
|
|
|
@ -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"])
|
||||
|
||||
|
|
Loading…
Reference in a new issue