From b32389aa636eaef2fc249329e7aed1f57e734dbd Mon Sep 17 00:00:00 2001 From: Richard Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Fri, 18 Nov 2022 02:23:33 +0200 Subject: [PATCH] Update --- README.md | 6 +++--- youtube_comment_scraper/main.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ddf870c..a6e26b6 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ # YouTube-Comment-Scraper -Scrape youtube comments and checks whether a user commented on the given videos +Scrapes youtube comments and checks whether a user commented on the given videos # Installation -## PyPI Package +## GitHub ``` -pip install youtube-comment-scraper +pip install git+https://github.com/rly0nheart/youtube-comment-scraper ``` ## Docker Image diff --git a/youtube_comment_scraper/main.py b/youtube_comment_scraper/main.py index 683ade4..8f2f33d 100644 --- a/youtube_comment_scraper/main.py +++ b/youtube_comment_scraper/main.py @@ -3,7 +3,7 @@ from youtube_comment_scraper.scraper import YouTubeCommentScraper def create_parser(): - parser = argparse.ArgumentParser('YouTube-Comment-Scraper — by Richard Mwewa', epilog='scrapes youtube comments and checks whether a user commented on the given videos') + parser = argparse.ArgumentParser('YouTube-Comment-Scraper — by Richard Mwewa | https://about.me/rly0nheart', epilog='scrapes youtube comments and checks whether a user commented on the given videos') parser.add_argument('videos', nargs='+', help='list of youtube video urls') return parser