Simple script for downloading Youtube comments without using the Youtube API
Project description
youtube-comment-downloader
Simple script for downloading Youtube comments without using the Youtube API. The output is in line delimited JSON.
Installation
Preferably inside a python virtual environment install this package via:
pip install youtube-comment-downloader
Or directly from the GitHub repository:
pip install https://github.com/egbertbouman/youtube-comment-downloader/archive/master.zip
Usage as command-line interface
$ youtube-comment-downloader --help
usage: youtube-comment-downloader [--help] [--youtubeid YOUTUBEID] [--url URL] [--output OUTPUT] [--limit LIMIT] [--language LANGUAGE] [--sort SORT]
Download Youtube comments without using the Youtube API
optional arguments:
--help, -h Show this help message and exit
--youtubeid YOUTUBEID, -y YOUTUBEID ID of Youtube video for which to download the comments
--url URL, -u URL Youtube URL for which to download the comments
--output OUTPUT, -o OUTPUT Output filename (output format is line delimited JSON)
--pretty, -p Change the output format to indented JSON
--limit LIMIT, -l LIMIT Limit the number of comments
--language LANGUAGE, -a LANGUAGE Language for Youtube generated text (e.g. en)
--sort SORT, -s SORT Whether to download popular (0) or recent comments (1). Defaults to 1
For example:
youtube-comment-downloader --url https://www.youtube.com/watch?v=ScMzIvxBSi4 --output ScMzIvxBSi4.json
or using the Youtube ID:
youtube-comment-downloader --youtubeid ScMzIvxBSi4 --output ScMzIvxBSi4.json
For Youtube IDs starting with - (dash) you will need to run the script with:
-y=idwithdash
or --youtubeid=idwithdash
Usage as library
You can also use this script as a library. For instance, if you want to print out the 10 most popular comments for a particular Youtube video you can do the following:
from itertools import islice
from youtube_comment_downloader import *
downloader = YoutubeCommentDownloader()
comments = downloader.get_comments_from_url('https://www.youtube.com/watch?v=ScMzIvxBSi4', sort_by=SORT_BY_POPULAR)
for comment in islice(comments, 10):
print(comment)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file youtube_comment_downloader-0.1.76.tar.gz
.
File metadata
- Download URL: youtube_comment_downloader-0.1.76.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa2d93243d06ceddcbdfbcc0d51d0817233f86f5d3db17e3be07b43520b94f20 |
|
MD5 | 6d1b876efd946443ddb8644f8d3c675e |
|
BLAKE2b-256 | 70e8c04654eb7c233855fbd832cc651213023930921b68b46de2abe257c7fd89 |
File details
Details for the file youtube_comment_downloader-0.1.76-py3-none-any.whl
.
File metadata
- Download URL: youtube_comment_downloader-0.1.76-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 203ef8bd99f6515ef8455230d889a9f0bedba621946a86320d1d0b9793c66912 |
|
MD5 | 45eb56b06f950276db75e143bcca429f |
|
BLAKE2b-256 | b333d6604b171d9c1d15ef00f71ebdcf29c54108b18c7848083cccc72feb3473 |