mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 01:02:48 +01:00
[youtube:subscriptions] Use colon for differentiation of shortcuts
This commit is contained in:
parent
94c3637f6d
commit
897f36d179
@ -61,6 +61,17 @@ def test_no_duplicates(self):
|
|||||||
else:
|
else:
|
||||||
self.assertFalse(ie.suitable(url), '%s should not match URL %r' % (type(ie).__name__, url))
|
self.assertFalse(ie.suitable(url), '%s should not match URL %r' % (type(ie).__name__, url))
|
||||||
|
|
||||||
|
def test_keywords(self):
|
||||||
|
ies = gen_extractors()
|
||||||
|
matching_ies = lambda url: [ie.IE_NAME for ie in ies
|
||||||
|
if ie.suitable(url) and ie.IE_NAME != 'generic']
|
||||||
|
self.assertEqual(matching_ies(':ytsubs'), ['youtube:subscriptions'])
|
||||||
|
self.assertEqual(matching_ies(':ytsubscriptions'), ['youtube:subscriptions'])
|
||||||
|
self.assertEqual(matching_ies(':thedailyshow'), ['ComedyCentral'])
|
||||||
|
self.assertEqual(matching_ies(':tds'), ['ComedyCentral'])
|
||||||
|
self.assertEqual(matching_ies(':colbertreport'), ['ComedyCentral'])
|
||||||
|
self.assertEqual(matching_ies(':cr'), ['ComedyCentral'])
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
@ -870,14 +870,14 @@ def _real_extract(self, url):
|
|||||||
|
|
||||||
class YoutubeSubscriptionsIE(YoutubeIE):
|
class YoutubeSubscriptionsIE(YoutubeIE):
|
||||||
"""It's a subclass of YoutubeIE because we need to login"""
|
"""It's a subclass of YoutubeIE because we need to login"""
|
||||||
IE_DESC = u'YouTube.com subscriptions feed, "ytsubscriptions" keyword(requires authentication)'
|
IE_DESC = u'YouTube.com subscriptions feed, "ytsubs" keyword(requires authentication)'
|
||||||
_VALID_URL = r'https?://www\.youtube\.com/feed/subscriptions|ytsubscriptions'
|
_VALID_URL = r'https?://www\.youtube\.com/feed/subscriptions|:ytsubs(?:criptions)?'
|
||||||
IE_NAME = u'youtube:subscriptions'
|
IE_NAME = u'youtube:subscriptions'
|
||||||
_FEED_TEMPLATE = 'http://www.youtube.com/feed_ajax?action_load_system_feed=1&feed_name=subscriptions&paging=%s'
|
_FEED_TEMPLATE = 'http://www.youtube.com/feed_ajax?action_load_system_feed=1&feed_name=subscriptions&paging=%s'
|
||||||
_PAGING_STEP = 30
|
_PAGING_STEP = 30
|
||||||
|
|
||||||
|
# Overwrite YoutubeIE properties we don't want
|
||||||
_TESTS = []
|
_TESTS = []
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def suitable(cls, url):
|
def suitable(cls, url):
|
||||||
return re.match(cls._VALID_URL, url) is not None
|
return re.match(cls._VALID_URL, url) is not None
|
||||||
|
Loading…
Reference in New Issue
Block a user