mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[twitter] Add IE_NAMEs
This commit is contained in:
parent
01d22d4703
commit
014e880372
1 changed files with 2 additions and 0 deletions
|
@ -13,6 +13,7 @@
|
||||||
|
|
||||||
|
|
||||||
class TwitterCardIE(InfoExtractor):
|
class TwitterCardIE(InfoExtractor):
|
||||||
|
IE_NAME = 'twitter:card'
|
||||||
_VALID_URL = r'https?://(?:www\.)?twitter\.com/i/cards/tfw/v1/(?P<id>\d+)'
|
_VALID_URL = r'https?://(?:www\.)?twitter\.com/i/cards/tfw/v1/(?P<id>\d+)'
|
||||||
_TESTS = [
|
_TESTS = [
|
||||||
{
|
{
|
||||||
|
@ -101,6 +102,7 @@ def _real_extract(self, url):
|
||||||
|
|
||||||
|
|
||||||
class TwitterIE(TwitterCardIE):
|
class TwitterIE(TwitterCardIE):
|
||||||
|
IE_NAME = 'twitter'
|
||||||
_VALID_URL = r'https?://(?:www|m|mobile)?\.?twitter\.com/(?P<id>[^/]+/status/\d+)'
|
_VALID_URL = r'https?://(?:www|m|mobile)?\.?twitter\.com/(?P<id>[^/]+/status/\d+)'
|
||||||
|
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
|
|
Loading…
Reference in a new issue