mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[youtube] Add an extractor for downloading the watch history (closes #1821)
This commit is contained in:
		| @@ -100,6 +100,7 @@ class TestAllURLsMatching(unittest.TestCase): | |||||||
|     def test_keywords(self): |     def test_keywords(self): | ||||||
|         self.assertMatch(':ytsubs', ['youtube:subscriptions']) |         self.assertMatch(':ytsubs', ['youtube:subscriptions']) | ||||||
|         self.assertMatch(':ytsubscriptions', ['youtube:subscriptions']) |         self.assertMatch(':ytsubscriptions', ['youtube:subscriptions']) | ||||||
|  |         self.assertMatch(':ythistory', ['youtube:history']) | ||||||
|         self.assertMatch(':thedailyshow', ['ComedyCentral']) |         self.assertMatch(':thedailyshow', ['ComedyCentral']) | ||||||
|         self.assertMatch(':tds', ['ComedyCentral']) |         self.assertMatch(':tds', ['ComedyCentral']) | ||||||
|         self.assertMatch(':colbertreport', ['ComedyCentral']) |         self.assertMatch(':colbertreport', ['ComedyCentral']) | ||||||
|   | |||||||
| @@ -186,6 +186,7 @@ from .youtube import ( | |||||||
|     YoutubeTruncatedURLIE, |     YoutubeTruncatedURLIE, | ||||||
|     YoutubeWatchLaterIE, |     YoutubeWatchLaterIE, | ||||||
|     YoutubeFavouritesIE, |     YoutubeFavouritesIE, | ||||||
|  |     YoutubeHistoryIE, | ||||||
| ) | ) | ||||||
| from .zdf import ZDFIE | from .zdf import ZDFIE | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1826,6 +1826,20 @@ class YoutubeWatchLaterIE(YoutubeFeedsInfoExtractor): | |||||||
|     _PAGING_STEP = 100 |     _PAGING_STEP = 100 | ||||||
|     _PERSONAL_FEED = True |     _PERSONAL_FEED = True | ||||||
|  |  | ||||||
|  | class YoutubeHistoryIE(YoutubeFeedsInfoExtractor): | ||||||
|  |     IE_DESC = u'Youtube watch history, "ythistory" keyword (requires authentication)' | ||||||
|  |     _VALID_URL = u'https?://www\.youtube\.com/feed/history|:ythistory' | ||||||
|  |     _FEED_NAME = 'history' | ||||||
|  |     _PERSONAL_FEED = True | ||||||
|  |     _PLAYLIST_TITLE = u'Youtube Watch History' | ||||||
|  |  | ||||||
|  |     def _real_extract(self, url): | ||||||
|  |         webpage = self._download_webpage('https://www.youtube.com/feed/history', u'History') | ||||||
|  |         data_paging = self._search_regex(r'data-paging="(\d+)"', webpage, u'data-paging') | ||||||
|  |         # The step is actually a ridiculously big number (like 1374343569725646) | ||||||
|  |         self._PAGING_STEP = int(data_paging) | ||||||
|  |         return super(YoutubeHistoryIE, self)._real_extract(url) | ||||||
|  |  | ||||||
| class YoutubeFavouritesIE(YoutubeBaseInfoExtractor): | class YoutubeFavouritesIE(YoutubeBaseInfoExtractor): | ||||||
|     IE_NAME = u'youtube:favorites' |     IE_NAME = u'youtube:favorites' | ||||||
|     IE_DESC = u'YouTube.com favourite videos, "ytfav" keyword (requires authentication)' |     IE_DESC = u'YouTube.com favourite videos, "ytfav" keyword (requires authentication)' | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Jaime Marquínez Ferrándiz
					Jaime Marquínez Ferrándiz