From 0dc0cc45fcd12e8a784f48c8120cd3b19d7bf0ce Mon Sep 17 00:00:00 2001 From: Benjamin Loison Date: Sat, 10 Jun 2023 01:28:36 +0200 Subject: [PATCH] Add missing `key` in input comment --- search_in_youtube_video_comments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/search_in_youtube_video_comments.py b/search_in_youtube_video_comments.py index b4c3c29..cb7db2b 100755 --- a/search_in_youtube_video_comments.py +++ b/search_in_youtube_video_comments.py @@ -11,7 +11,7 @@ def getContentFromURL(url): return data VIDEO_ID = input('Video id: ') -API_KEY = input('YouTube Data API v3 (empty if use no-key service): ') +API_KEY = input('YouTube Data API v3 key (empty if use no-key service): ') COMMENT_REGEX = input('Comment regex: ') OPEN_IN_FIREFOX = input('Open comment in firefox (yes or no): ') == 'yes'