]> jfr.im git - yt-dlp.git/blob - yt_dlp/extractor/hrefli.py
[ie/orf:on] Improve extraction (#9677)
[yt-dlp.git] / yt_dlp / extractor / hrefli.py
1 from .common import InfoExtractor
2
3
4 class HrefLiRedirectIE(InfoExtractor):
5 IE_NAME = 'href.li'
6 IE_DESC = False # Do not list
7 _VALID_URL = r'https?://href\.li/\?(?P<url>.+)'
8
9 _TESTS = [{
10 'url': 'https://href.li/?https://www.reddit.com/r/cats/comments/12bluel/my_cat_helps_me_with_water/?utm_source=share&utm_medium=android_app&utm_name=androidcss&utm_term=1&utm_content=share_button',
11 'only_matching': True,
12 }]
13
14 def _real_extract(self, url):
15 return self.url_result(self._match_valid_url(url).group('url'))