pip 설치로 간단하게 유튜브 댓글 리스트를 가져올 수 있다.
https://pypi.org/project/youtube-comment-downloader/
youtube-comment-downloader
Simple script for downloading Youtube comments without using the Youtube API
pypi.org
1. youtube comment downloder 설치
pip install youtube-comment-downloader
2. 소스코드에 url 에 보고싶은 유튜브 링크를 넣는다. : 인기순으로 10개까지만 프린트
- SORT_BY_POPULAR : 인기순으로 정렬
from youtube_comment_downloader import *
from itertools import islice
url = 'https://www.youtube.com/watch?v=YY5kntK83lA&t=228s'
downloader = YoutubeCommentDownloader()
comments = downloader.get_comments_from_url(url, sort_by=SORT_BY_POPULAR)
for comment in islice(comments, 10):
print(comment)
실행!
결과는!!
{'cid': 'UgwGQcBj4n6Ff_0urmx4AaABAg', 'text': '불타는 전기차 기아 EV3 처럼 달려왔습니다\n\n댓글 하트 달았다가 후다닥 하트 취소한 숏박스면 개추 ㅋㅋ', 'time': '9 days ago (edited)', 'author': '@Axse6974', 'channel': 'UCVNJ1T2iPCV_OmMXqwLv2pA', 'votes': '3.9K', 'replies': '46', 'photo': 'https://yt3.ggpht.com/p8K-8UADUbMJt5uMX16ggyGbQYm5Zb9RBYSLQqPHeSEME_qD1gt6oJEQPIHuKvzQtx2Kh6nnzg=s88-c-k-c0x00ffffff-no-rj', 'heart': False, 'reply': False, 'time_parsed': 1724412722.856808}
{'cid': 'UgyEi8ICn5tATsW6P0l4AaABAg', 'text': '편한사이라도 내동생이 아니라서 화도 못내고 저걸.....ㅋㅋㅋㅋㅋㅋ 점점 목소리 커지는거 개웃기네ㅋㅋㅋㅋㅋㅋㅋ', 'time': '9 days ago', 'author': '@user-od8kl6lh9r', 'channel': 'UC2lCcr1n8BLeQSue_QO1oqg', 'votes': '4.2K', 'replies': '4', 'photo': 'https://yt3.ggpht.com/ytc/AIdro_mT0RO06_mFw_q0QupQ8fo575fqLeRN-q-mzyyT7VQ=s88-c-k-c0x00ffffff-no-rj', 'heart': True, 'reply': False, 'time_parsed': 1724412722.859621}
{'cid': 'Ugzv81Kzu4sKefiwfcV4AaABAg', 'text': '댓글 세번 터치하면 댓글 복사되네요❤', 'time': '9 days ago (edited)', 'author': '@user-ff9po2nn6s', 'channel': 'UCAVDyIyNeRcPB7knPd8ZHUg', 'votes': '332', 'replies': '1', 'photo': 'https://yt3.ggpht.com/ytc/AIdro_kKbLgXpRPdsQKV7JM64f-LgGV73IcpXgrnbN2cCEMRV2o=s88-c-k-c0x00ffffff-no-rj', 'heart': True, 'reply': False, 'time_parsed': 1724412722.861991}
{'cid': 'UgziHrhWnkxY0N49tjp4AaABAg', 'text': '밖 풍경보면 진세형 운전 개잘하는데 3명 표정 연기 말투 개쩜 ㅋㅋㅋ', 'time': '9 days ago', 'author': '@user-qs7pr2lr4j', 'channel': 'UCOFTZuFVkl49UaycvXCoKCA', 'votes': '2.2K', 'replies': '11', 'photo': 'https://yt3.ggpht.com/6jAc-kvgZTvswCoaOOIJHEgW7YL2TedhShp28tZ2l7Kw-MDyEb1rbVcnPnnkIAFAEc3WdTg5Qw=s88-c-k-c0x00ffffff-no-rj', 'heart': True, 'reply': False, 'time_parsed': 1724412722.864048}
{'cid': 'UgwNtakBfQ19sf9k0eZ4AaABAg', 'text': '오랜만에 최애조합 근데 너무 오랜만에 돌아와서인지 원훈님 장기연애 때 약간 그 특유의 무던+스윗 사라지고 진상 MZ 직원 말투만 남은거같아요 ㅋㅋㅋㅋㅋㅋ', 'time': '9 days ago (edited)', 'author': '@user-rb8vj9mi2i', 'channel': 'UClzcfmEngHb51nxGQOFmc1Q', 'votes': '2.5K', 'replies': '6', 'photo': 'https://yt3.ggpht.com/ytc/AIdro_nu_tHBtr7nu0VvDmVc6Nt83axSZRCczxZbdYn_KME=s88-c-k-c0x00ffffff-no-rj', 'heart': True, 'reply': False, 'time_parsed': 1724412722.866047}
{'cid': 'Ugx-npwAuD_yBUZXB0J4AaABAg', 'text': '아 제발 이렇게만 해주세요… 셋 다 나와서 셋 캐미 보여주는 편이 제일 재밌음 ㅠㅠㅠㅠ', 'time': '8 days ago', 'author': '@zookie8665', 'channel': 'UCcmbHvd2rsmPVdC2pWDOAZQ', 'votes': '890', 'replies': '2', 'photo': 'https://yt3.ggpht.com/SHnaMO_6KKd5fDu_sDD7mHDIYojzZooxB0opzZv8AJ4DuJZAlenFHtaWfCbiEXYe6kelWoWf=s88-c-k-c0x00ffffff-no-rj', 'heart': True, 'reply': False, 'time_parsed': 1724499122.86798}
{'cid': 'Ugz3XMESoRlTA46jVZZ4AaABAg', 'text': '오늘은 누가 어떻게 달려올까ㅋㅋㅋㅋㅋㅋ', 'time': '9 days ago', 'author': '@user-hz6xn5os3m', 'channel': 'UCcNOhJbaYkVsDVNc_K2c07A', 'votes': '88', 'replies': '', 'photo': 'https://yt3.ggpht.com/ytc/AIdro_ndtGCqv8GkxVkOUgUUrgxMJ79NmTAJGhdSHUUM4AH2_DjjKes=s88-c-k-c0x00ffffff-no-rj', 'heart': True, 'reply': False, 'time_parsed': 1724412722.869961}
{'cid': 'Ugysh3XC7-Tfu8fZV0V4AaABAg', 'text': '13일 무사고ㅋㄱㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ', 'time': '9 days ago', 'author': '@minimimi06', 'channel': 'UCW0kFz1lSbJBD6fZVWZseXg', 'votes': '49', 'replies': '', 'photo': 'https://yt3.ggpht.com/uesxUcGCzWTj-JiFKMQKKOIjmGJ5mywoeSlTxWwfJvMjVP3v6YDkdxAudPV5Qqbj8XrS2DIHHf4=s88-c-k-c0x00ffffff-no-rj', 'heart': True, 'reply': False, 'time_parsed': 1724412722.871859}
{'cid': 'Ugxg5fN-RX3oa5CcwJx4AaABAg', 'text': '아 이번 편 개웃기네 ㅋㅋㅋㅋㅋ 빠질 데가 없는데 지금 ㅇㅈㄹㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ', 'time': '9 days ago', 'author': '@11inmorning81', 'channel': 'UCAa50TQcwv4pb6BwunkTPvQ', 'votes': '87', 'replies': '', 'photo': 'https://yt3.ggpht.com/bSYcmlmcibFai0789tN3hGSEUsuiSQjanmrbNRyCq54SpaffjH94tm9ow8Oz6liXkezjNLz-mQ=s88-c-k-c0x00ffffff-no-rj', 'heart': True, 'reply': False, 'time_parsed': 1724412722.873784}
{'cid': 'UgzClf1bR1RBCqA-bG54AaABAg', 'text': '원훈이형 언제 화내나 기다리고 있었는데 ㅋㅋㅋㅋㅋㅋㅋ끝까지 안내고 끝나네 ㅋㅋㅋㅋ부처님연기 원탑이시네요!ㅋㅋ', 'time': '9 days ago', 'author': '@9503CDG', 'channel': 'UCemZNali1MnK9-qv6WpaUfA', 'votes': '1K', 'replies': '6', 'photo': 'https://yt3.ggpht.com/0ROrbV7PmHvnTkFjEuITXf8Xow-2q7y53EROLKd3D4rSXWcGmgifez25Y_YARo_wMaD7PLGlyg=s88-c-k-c0x00ffffff-no-rj', 'heart': True, 'reply': False, 'time_parsed': 1724412722.875635}
'데이터실험' 카테고리의 다른 글
인구소멸지수-2022 (0) | 2024.03.24 |
---|---|
종합병원지수 데이터 시각화-2024 (1) | 2024.02.12 |
종합병원지수 데이터 시각화-2021 (0) | 2021.08.08 |
종합병원지수 데이터 시각화1 (1) | 2021.08.08 |
치과지수 데이터 시각화 (0) | 2018.03.11 |