diff --git a/get_youtube_videos/get_youtube_videos.py b/get_youtube_videos/get_youtube_videos.py index dce4212..36004db 100644 --- a/get_youtube_videos/get_youtube_videos.py +++ b/get_youtube_videos/get_youtube_videos.py @@ -571,7 +571,7 @@ class GetYoutubeVideos: help='URLs for proxies to use in case of errors.' ) @click.option( - '--downloaded-database', '-d', + '--downloaded-database', '-D', default=f"{os.environ.get('HOME', os.environ.get('USERPROFILE', ''))}/.config/downloaded_youtube_videos", help='File to store the IDs of downloaded videos' ) @@ -587,7 +587,7 @@ class GetYoutubeVideos: help='YouTube channels IDs to look up' ) @click.option( - '--channel-limit', '-l', + '--channel-limit', '-r', default=5, type=int, help='Maximun number of videos to download from a channel' @@ -628,7 +628,7 @@ class GetYoutubeVideos: ) @click.option( '--cache-file', - '-f', + '-F', default=f"{CACHE_FOLDER}/get_youtube_videos.json", help='Cache file to store data from each run', )