1 from .common
import InfoExtractor
4 class HrefLiRedirectIE(InfoExtractor
):
6 IE_DESC
= False # Do not list
7 _VALID_URL
= r
'https?://href\.li/\?(?P<url>.+)'
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,
14 def _real_extract(self
, url
):
15 return self
.url_result(self
._match
_valid
_url
(url
).group('url'))