fix dupe params
This commit is contained in:
parent
814bfee247
commit
68ef63f783
1 changed files with 3 additions and 3 deletions
|
@ -571,7 +571,7 @@ class GetYoutubeVideos:
|
||||||
help='URLs for proxies to use in case of errors.'
|
help='URLs for proxies to use in case of errors.'
|
||||||
)
|
)
|
||||||
@click.option(
|
@click.option(
|
||||||
'--downloaded-database', '-d',
|
'--downloaded-database', '-D',
|
||||||
default=f"{os.environ.get('HOME', os.environ.get('USERPROFILE', ''))}/.config/downloaded_youtube_videos",
|
default=f"{os.environ.get('HOME', os.environ.get('USERPROFILE', ''))}/.config/downloaded_youtube_videos",
|
||||||
help='File to store the IDs of downloaded videos'
|
help='File to store the IDs of downloaded videos'
|
||||||
)
|
)
|
||||||
|
@ -587,7 +587,7 @@ class GetYoutubeVideos:
|
||||||
help='YouTube channels IDs to look up'
|
help='YouTube channels IDs to look up'
|
||||||
)
|
)
|
||||||
@click.option(
|
@click.option(
|
||||||
'--channel-limit', '-l',
|
'--channel-limit', '-r',
|
||||||
default=5,
|
default=5,
|
||||||
type=int,
|
type=int,
|
||||||
help='Maximun number of videos to download from a channel'
|
help='Maximun number of videos to download from a channel'
|
||||||
|
@ -628,7 +628,7 @@ class GetYoutubeVideos:
|
||||||
)
|
)
|
||||||
@click.option(
|
@click.option(
|
||||||
'--cache-file',
|
'--cache-file',
|
||||||
'-f',
|
'-F',
|
||||||
default=f"{CACHE_FOLDER}/get_youtube_videos.json",
|
default=f"{CACHE_FOLDER}/get_youtube_videos.json",
|
||||||
help='Cache file to store data from each run',
|
help='Cache file to store data from each run',
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue