diff options
author | Ole Ernst <olebowle@gmx.com> | 2014-07-23 10:00:50 +0200 |
---|---|---|
committer | Ole Ernst <olebowle@gmx.com> | 2014-07-23 10:00:50 +0200 |
commit | 8c778adc39fbaa79a6e885532b933364c9952817 (patch) | |
tree | 222593b91f5ada2bb17c64c92cf34fcdc1e89976 /youtube_dl/extractor/gameone.py | |
parent | 71b6065009d2bbc0e25b46368e73ebd807d3fca0 (diff) |
[gameone] simplify playlist extractor
Diffstat (limited to 'youtube_dl/extractor/gameone.py')
-rw-r--r-- | youtube_dl/extractor/gameone.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/youtube_dl/extractor/gameone.py b/youtube_dl/extractor/gameone.py index 0a0fb19e6..12f757329 100644 --- a/youtube_dl/extractor/gameone.py +++ b/youtube_dl/extractor/gameone.py @@ -1,7 +1,6 @@ # coding: utf-8 from __future__ import unicode_literals -import datetime import re from .common import InfoExtractor @@ -94,8 +93,7 @@ class GameOnePlaylistIE(InfoExtractor): _VALID_URL = r'https?://(?:www\.)?gameone\.de(?:/tv)?/?$' def _real_extract(self, url): - this_year = datetime.date.today().year - webpage = self._download_webpage('http://www.gameone.de/tv/year/%d' % this_year, this_year) + webpage = self._download_webpage('http://www.gameone.de/tv', 'TV') max_id = max(map(int, re.findall(r'<a href="/tv/(\d+)"', webpage))) entries = [self.url_result('http://www.gameone.de/tv/%d' % video_id, 'GameOne') for video_id in range(max_id, 0, -1)] |