summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2017-01-09 11:24:40 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2017-01-09 11:24:40 +0100
commit8084951b7f3886cbd57faab0c15f4f2ce3580779 (patch)
treec18a13874ce80ba6abcd2a4ed1b73528370a8b85
parente7ea724cb9cca344b4f486231f12a76918df80ee (diff)
downloadyoutube-dl-8084951b7f3886cbd57faab0c15f4f2ce3580779.tar.gz
youtube-dl-8084951b7f3886cbd57faab0c15f4f2ce3580779.tar.xz
youtube-dl-8084951b7f3886cbd57faab0c15f4f2ce3580779.zip
[egghead:course] Add support for egghead.io course playlists
Individual egghead videos are already handled by the generic/Wistia extractors.
-rw-r--r--ChangeLog5
-rw-r--r--youtube_dl/extractor/egghead.py39
-rw-r--r--youtube_dl/extractor/extractors.py1
3 files changed, 44 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index da9cf24af..c7cee5412 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+version <unreleased>
+
++ [egghead:course] Add support for egghead.io courses
+
 version 2017.01.08
 
 Core
@@ -14,7 +18,6 @@ Extractors
 * [comedycentral/mtv] Add support for HLS videos (#11600)
 * [discoverygo] Fix JSON data parsing (#11219, #11522)
 
-
 version 2017.01.05
 
 Extractors
diff --git a/youtube_dl/extractor/egghead.py b/youtube_dl/extractor/egghead.py
new file mode 100644
index 000000000..db921465e
--- /dev/null
+++ b/youtube_dl/extractor/egghead.py
@@ -0,0 +1,39 @@
+# coding: utf-8
+from __future__ import unicode_literals
+
+import re
+
+from .common import InfoExtractor
+
+
+class EggheadCourseIE(InfoExtractor):
+    IE_DESC = 'egghead.io course'
+    IE_NAME = 'egghead:course'
+    _VALID_URL = r'https://egghead\.io/courses/(?P<id>[a-zA-Z_0-9-]+)'
+    _TEST = {
+        'url': 'https://egghead.io/courses/professor-frisby-introduces-composable-functional-javascript',
+        'playlist_count': 29,
+        'info_dict': {
+            'id': 'professor-frisby-introduces-composable-functional-javascript',
+            'title': 'Professor Frisby Introduces Composable Functional JavaScript',
+            'description': 're:(?s)^This course teaches the ubiquitous.*You\'ll start composing functionality before you know it.$',
+        },
+    }
+
+    def _real_extract(self, url):
+        playlist_id = self._match_id(url)
+        webpage = self._download_webpage(url, playlist_id)
+
+        title = self._html_search_regex(r'<h1 class="title">([^<]+)</h1>', webpage, 'title')
+        ul = self._search_regex(r'(?s)<ul class="series-lessons-list">(.*?)</ul>', webpage, 'session list')
+
+        found = re.findall(r'(?s)<a class="[^"]*"\s*href="([^"]+)">\s*<li class="item', ul)
+        entries = [self.url_result(m) for m in found]
+
+        return {
+            '_type': 'playlist',
+            'id': playlist_id,
+            'title': title,
+            'description': self._og_search_description(webpage),
+            'entries': entries,
+        }
diff --git a/youtube_dl/extractor/extractors.py b/youtube_dl/extractor/extractors.py
index f7f6c025f..2e80ef152 100644
--- a/youtube_dl/extractor/extractors.py
+++ b/youtube_dl/extractor/extractors.py
@@ -252,6 +252,7 @@ from .dw import (
 from .eagleplatform import EaglePlatformIE
 from .ebaumsworld import EbaumsWorldIE
 from .echomsk import EchoMskIE
+from .egghead import EggheadCourseIE
 from .ehow import EHowIE
 from .eighttracks import EightTracksIE
 from .einthusan import EinthusanIE