diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2014-09-01 01:00:40 +0200 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2014-09-01 01:00:40 +0200 | 
| commit | c9cc0bf57b908eabc3765893289449a2c31d402a (patch) | |
| tree | e33aa2405dca8a160ec9b75e35463c80f6b77e83 | |
| parent | 61edcfb0a2dd9a870657ae71fe5856da3bab2ac4 (diff) | |
[youtube:playlist] PEP8
| -rw-r--r-- | youtube_dl/extractor/youtube.py | 22 | 
1 files changed, 14 insertions, 8 deletions
| diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 78f3b7e7b..08a04737c 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -1055,21 +1055,26 @@ class YoutubePlaylistIE(YoutubeBaseInfoExtractor):          self._login()      def _ids_to_results(self, ids): -        return [self.url_result(vid_id, 'Youtube', video_id=vid_id) -                       for vid_id in ids] +        return [ +            self.url_result(vid_id, 'Youtube', video_id=vid_id) +            for vid_id in ids]      def _extract_mix(self, playlist_id):          # The mixes are generated from a a single video          # the id of the playlist is just 'RD' + video_id          url = 'https://youtube.com/watch?v=%s&list=%s' % (playlist_id[-11:], playlist_id) -        webpage = self._download_webpage(url, playlist_id, u'Downloading Youtube mix') +        webpage = self._download_webpage( +            url, playlist_id, u'Downloading Youtube mix')          search_title = lambda class_name: get_element_by_attribute('class', class_name, webpage) -        title_span = (search_title('playlist-title') or -            search_title('title long-title') or search_title('title')) +        title_span = ( +            search_title('playlist-title') or +            search_title('title long-title') or +            search_title('title'))          title = clean_html(title_span) -        video_re = r'''(?x)data-video-username=".*?".*? -                       href="/watch\?v=([0-9A-Za-z_-]{11})&[^"]*?list=%s''' % re.escape(playlist_id) -        ids = orderedSet(re.findall(video_re, webpage, flags=re.DOTALL)) +        ids = orderedSet(re.findall( +            r'''(?xs)data-video-username=".*?".*? +                       href="/watch\?v=([0-9A-Za-z_-]{11})&[^"]*?list=%s''' % re.escape(playlist_id), +            webpage))          url_results = self._ids_to_results(ids)          return self.playlist_result(url_results, playlist_id, title) @@ -1162,6 +1167,7 @@ class YoutubeTopListIE(YoutubePlaylistIE):              msg = u'Downloading Youtube mix'              if i > 0:                  msg += ', retry #%d' % i +              webpage = self._download_webpage(url, title, msg)              ids = orderedSet(re.findall(video_re, webpage))              if ids: | 
