diff options
| author | Sergey M․ <dstftw@gmail.com> | 2016-05-13 00:14:30 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2016-05-13 00:14:30 +0600 | 
| commit | 0df79d552a6d528ac5bb1a9cce99199aafe79144 (patch) | |
| tree | b1d0f6d0ac0f71c547baa510ba062a63f6c1ac7d /youtube_dl/extractor/twitch.py | |
| parent | 0db3a66162cf1059dbfccd60db350596f7c5b469 (diff) | |
[twitch:bookmarks] Remove extractor
Bookmarks no longer available
Diffstat (limited to 'youtube_dl/extractor/twitch.py')
| -rw-r--r-- | youtube_dl/extractor/twitch.py | 26 | 
1 files changed, 0 insertions, 26 deletions
| diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py index 68f50487b..f7b98e190 100644 --- a/youtube_dl/extractor/twitch.py +++ b/youtube_dl/extractor/twitch.py @@ -357,32 +357,6 @@ class TwitchPastBroadcastsIE(TwitchPlaylistBaseIE):      } -class TwitchBookmarksIE(TwitchPlaylistBaseIE): -    IE_NAME = 'twitch:bookmarks' -    _VALID_URL = r'%s/(?P<id>[^/]+)/profile/bookmarks/?(?:\#.*)?$' % TwitchBaseIE._VALID_URL_BASE -    _PLAYLIST_URL = '%s/api/bookmark/?user=%%s&offset=%%d&limit=%%d' % TwitchBaseIE._API_BASE -    _PLAYLIST_TYPE = 'bookmarks' - -    _TEST = { -        'url': 'http://www.twitch.tv/ognos/profile/bookmarks', -        'info_dict': { -            'id': 'ognos', -            'title': 'Ognos', -        }, -        'playlist_mincount': 3, -        'skip': 'HTTP Error 404: Not Found', -    } - -    def _extract_playlist_page(self, response): -        entries = [] -        for bookmark in response.get('bookmarks', []): -            video = bookmark.get('video') -            if not video: -                continue -            entries.append(video['url']) -        return entries - -  class TwitchStreamIE(TwitchBaseIE):      IE_NAME = 'twitch:stream'      _VALID_URL = r'%s/(?P<id>[^/#?]+)/?(?:\#.*)?$' % TwitchBaseIE._VALID_URL_BASE | 
