This commit is contained in:
Richard Mwewa
2022-11-18 02:23:33 +02:00
parent fcade4b253
commit b32389aa63
2 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -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