From 92067638b10f8debbbfa4ffd4a3cd990a2c2149e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Sun, 26 Dec 2021 13:29:55 -0500 Subject: Disable dislikes Ref: https://blog.youtube/news-and-events/update-to-youtube/ --- youtube/watch.py | 1 - 1 file changed, 1 deletion(-) (limited to 'youtube/watch.py') diff --git a/youtube/watch.py b/youtube/watch.py index c9a5f77..85b4bd9 100644 --- a/youtube/watch.py +++ b/youtube/watch.py @@ -694,7 +694,6 @@ def get_watch_page(video_id=None): time_published_utc=time_utc_isoformat(info['time_published']), view_count = (lambda x: '{:,}'.format(x) if x is not None else "")(info.get("view_count", None)), like_count = (lambda x: '{:,}'.format(x) if x is not None else "")(info.get("like_count", None)), - dislike_count = (lambda x: '{:,}'.format(x) if x is not None else "")(info.get("dislike_count", None)), download_formats = download_formats, other_downloads = other_downloads, video_info = json.dumps(video_info), -- cgit v1.2.3