diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-08-07 22:59:34 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-08-07 22:59:34 +0800 |
commit | b2bd968f4b6795ffe3fc2d923cc73171687c2980 (patch) | |
tree | 7e3239c8e0bd3e6b05e3b20f78d67f938dd2f5ae | |
parent | 4a01befb347b35f36dda4f344b7b502e53253da7 (diff) |
[kuwo:singer] Fix extraction
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | youtube_dl/extractor/kuwo.py | 6 |
2 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,8 @@ +version <unreleased> + +Extractors +* [kuwo:singer] Fix extraction + version 2016.08.07 Core diff --git a/youtube_dl/extractor/kuwo.py b/youtube_dl/extractor/kuwo.py index b1d460599..0eeb9ffeb 100644 --- a/youtube_dl/extractor/kuwo.py +++ b/youtube_dl/extractor/kuwo.py @@ -4,6 +4,7 @@ from __future__ import unicode_literals import re from .common import InfoExtractor +from ..compat import compat_urlparse from ..utils import ( get_element_by_id, clean_html, @@ -242,8 +243,9 @@ class KuwoSingerIE(InfoExtractor): query={'artistId': artist_id, 'pn': page_num, 'rn': self.PAGE_SIZE}) return [ - self.url_result(song_url, 'Kuwo') for song_url in re.findall( - r'<div[^>]+class="name"><a[^>]+href="(http://www\.kuwo\.cn/yinyue/\d+)', + self.url_result(compat_urlparse.urljoin(url, song_url), 'Kuwo') + for song_url in re.findall( + r'<div[^>]+class="name"><a[^>]+href="(/yinyue/\d+)', webpage) ] |