diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-05-28 07:55:56 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-05-28 07:55:56 +0700 |
commit | a846173d9304c958bd7bedb89fe767490c885ae1 (patch) | |
tree | 3e3ed4ac7f6f4861f67935ab936d910bc7233277 | |
parent | 78e210dea554144c8c1890c617808b0acdab9bfc (diff) |
[xhamster] Simplify (closes #13216)
-rw-r--r-- | youtube_dl/extractor/xhamster.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/xhamster.py b/youtube_dl/extractor/xhamster.py index ae0c167c4..6987b2e3a 100644 --- a/youtube_dl/extractor/xhamster.py +++ b/youtube_dl/extractor/xhamster.py @@ -108,7 +108,7 @@ class XHamsterIE(InfoExtractor): webpage, 'upload date', fatal=False)) uploader = self._html_search_regex( - r'<span[^>]+?itemprop=["\']author[^>]+?><a[^>]+?href=["\'][^>]+?><span[^>]+?itemprop=["\']name[^>]+?>(.+?)</span', + r'<span[^>]+itemprop=["\']author[^>]+><a[^>]+><span[^>]+>([^<]+)', webpage, 'uploader', default='anonymous') thumbnail = self._search_regex( @@ -124,7 +124,7 @@ class XHamsterIE(InfoExtractor): r'content=["\']User(?:View|Play)s:(\d+)', webpage, 'view count', fatal=False)) - mobj = re.search(r'hint=[\'"](?P<likecount>\d+) Likes / (?P<dislikecount>\d+) Dislikes[\'"]', webpage) + mobj = re.search(r'hint=[\'"](?P<likecount>\d+) Likes / (?P<dislikecount>\d+) Dislikes', webpage) (like_count, dislike_count) = (mobj.group('likecount'), mobj.group('dislikecount')) if mobj else (None, None) mobj = re.search(r'</label>Comments \((?P<commentcount>\d+)\)</div>', webpage) |