aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/kuwo.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2015-07-10 23:53:48 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2015-07-10 23:53:48 +0800
commitd3b8908886a78dd63441754f1ac20b70cb29de56 (patch)
tree13ef84b38c55e97e783b86eb56990489857ab77b /youtube_dl/extractor/kuwo.py
parentcf2c5fda4f3e753cc64098e6a751cf1a220efae7 (diff)
downloadyoutube-dl-d3b8908886a78dd63441754f1ac20b70cb29de56.tar.xz
[kuwo] Simpler calls to url_result()
Diffstat (limited to 'youtube_dl/extractor/kuwo.py')
-rw-r--r--youtube_dl/extractor/kuwo.py19
1 files changed, 7 insertions, 12 deletions
diff --git a/youtube_dl/extractor/kuwo.py b/youtube_dl/extractor/kuwo.py
index 2b5321cc2..69afacac9 100644
--- a/youtube_dl/extractor/kuwo.py
+++ b/youtube_dl/extractor/kuwo.py
@@ -142,9 +142,8 @@ class KuwoAlbumIE(InfoExtractor):
'%s简介:' % album_name)
entries = [
- self.url_result('http://www.kuwo.cn/yinyue/%s/' % song_id, 'Kuwo', song_id)
- for song_id in re.findall(
- r'<p[^>]+class="listen"><a[^>]+href="http://www\.kuwo\.cn/yinyue/(\d+)/"',
+ self.url_result(song_url, 'Kuwo') for song_url in re.findall(
+ r'<p[^>]+class="listen"><a[^>]+href="(http://www\.kuwo\.cn/yinyue/\d+/)"',
webpage)
]
return self.playlist_result(entries, album_id, album_name, album_intro)
@@ -176,9 +175,8 @@ class KuwoChartIE(InfoExtractor):
r'<p[^>]+class="tabDef">(\d{4}第\d{2}期)</p>', webpage, 'chart desc')
entries = [
- self.url_result('http://www.kuwo.cn/yinyue/%s/' % song_id, 'Kuwo', song_id)
- for song_id in re.findall(
- r'<a[^>]+href="http://www\.kuwo\.cn/yinyue/(\d+)/"', webpage)
+ self.url_result(song_url, 'Kuwo') for song_url in re.findall(
+ r'<a[^>]+href="(http://www\.kuwo\.cn/yinyue/\d+)/"', webpage)
]
return self.playlist_result(entries, chart_id, chart_name, chart_desc)
@@ -221,9 +219,8 @@ class KuwoSingerIE(InfoExtractor):
errnote='Unable to get song list page #%d' % page_num)
entries.extend([
- self.url_result('http://www.kuwo.cn/yinyue/%s/' % song_id, 'Kuwo', song_id)
- for song_id in re.findall(
- r'<p[^>]+class="m_name"><a[^>]+href="http://www\.kuwo\.cn/yinyue/([0-9]+)/',
+ self.url_result(song_url, 'Kuwo') for song_url in re.findall(
+ r'<p[^>]+class="m_name"><a[^>]+href="(http://www\.kuwo\.cn/yinyue/\d+)/',
webpage)
][:10 if first_page_only else None])
@@ -263,9 +260,7 @@ class KuwoCategoryIE(InfoExtractor):
r'var\s+jsonm\s*=\s*([^;]+);', webpage, 'category songs'), category_id)
entries = [
- self.url_result(
- 'http://www.kuwo.cn/yinyue/%s/' % song['musicrid'],
- 'Kuwo', song['musicrid'])
+ self.url_result('http://www.kuwo.cn/yinyue/%s/' % song['musicrid'], 'Kuwo')
for song in jsonm['musiclist']
]
return self.playlist_result(entries, category_id, category_name, category_desc)