aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/comedycentral.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2017-10-04 07:45:13 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2017-10-04 07:45:13 +0200
commit6b46285e850f8bc8155a93adf13920752537e55d (patch)
tree96b31c7aae60cb8b4cf913d3265781fb8e0d8b5d /youtube_dl/extractor/comedycentral.py
parent6e736d86e7d03d14279c403202fe2a632e6e5023 (diff)
downloadyoutube-dl-6b46285e850f8bc8155a93adf13920752537e55d.zip
youtube-dl-6b46285e850f8bc8155a93adf13920752537e55d.tar.gz
youtube-dl-6b46285e850f8bc8155a93adf13920752537e55d.tar.bz2
[comedycentral] new shortcut :theopposition for "The Opposition" show
Diffstat (limited to 'youtube_dl/extractor/comedycentral.py')
-rw-r--r--youtube_dl/extractor/comedycentral.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dl/extractor/comedycentral.py b/youtube_dl/extractor/comedycentral.py
index 4cac294..d08b909 100644
--- a/youtube_dl/extractor/comedycentral.py
+++ b/youtube_dl/extractor/comedycentral.py
@@ -120,13 +120,16 @@ class ComedyCentralTVIE(MTVServicesInfoExtractor):
class ComedyCentralShortnameIE(InfoExtractor):
- _VALID_URL = r'^:(?P<id>tds|thedailyshow)$'
+ _VALID_URL = r'^:(?P<id>tds|thedailyshow|theopposition)$'
_TESTS = [{
'url': ':tds',
'only_matching': True,
}, {
'url': ':thedailyshow',
'only_matching': True,
+ }, {
+ 'url': ':theopposition',
+ 'only_matching': True,
}]
def _real_extract(self, url):
@@ -134,5 +137,6 @@ class ComedyCentralShortnameIE(InfoExtractor):
shortcut_map = {
'tds': 'http://www.cc.com/shows/the-daily-show-with-trevor-noah/full-episodes',
'thedailyshow': 'http://www.cc.com/shows/the-daily-show-with-trevor-noah/full-episodes',
+ 'theopposition': 'http://www.cc.com/shows/the-opposition-with-jordan-klepper/full-episodes',
}
return self.url_result(shortcut_map[video_id])