From 17fb1f3aa32816bed63ba021db7a9769c6beaeac Mon Sep 17 00:00:00 2001 From: TheUltimateC0der Date: Wed, 2 Sep 2020 23:14:59 +0200 Subject: [PATCH] Update 'deemix/__main__.py' Added option for download path --- deemix/__main__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/deemix/__main__.py b/deemix/__main__.py index ed2533b..7e2fdfb 100644 --- a/deemix/__main__.py +++ b/deemix/__main__.py @@ -7,9 +7,10 @@ from os.path import isfile @click.command() @click.option('-b', '--bitrate', default=None, help='Overwrites the default bitrate selected') @click.option('-l', '--local', is_flag=True, help='Downloads in a local folder insted of using the default') +@click.option('-p', '--path', type=str, help='Downloads in the given folder') @click.argument('url', nargs=-1, required=True) -def download(bitrate, local, url): - app = cli(local) +def download(bitrate, local, url, path): + app = cli(local, path) app.login() url = list(url) if isfile(url[0]):