From: Sergey M․ Date: Sat, 21 Nov 2015 02:32:48 +0000 (+0600) Subject: [pluralsight:course] Improve _VALID_URL X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=a5cd0eb8a4f2661cfe4863e958172d8f8f42d0f1;p=youtube-dl [pluralsight:course] Improve _VALID_URL --- diff --git a/youtube_dl/extractor/pluralsight.py b/youtube_dl/extractor/pluralsight.py index c6fd41d5a..93244f41d 100644 --- a/youtube_dl/extractor/pluralsight.py +++ b/youtube_dl/extractor/pluralsight.py @@ -175,7 +175,7 @@ class PluralsightIE(InfoExtractor): class PluralsightCourseIE(InfoExtractor): IE_NAME = 'pluralsight:course' - _VALID_URL = r'https?://(?:www\.)?pluralsight\.com/courses/(?P[^/]+)' + _VALID_URL = r'https?://(?:(?:www|app)\.)?pluralsight\.com/(?:library/)?courses/(?P[^/]+)' _TESTS = [{ # Free course from Pluralsight Starter Subscription for Microsoft TechNet # https://offers.pluralsight.com/technet?loc=zTS3z&prod=zOTprodz&tech=zOttechz&prog=zOTprogz&type=zSOz&media=zOTmediaz&country=zUSz @@ -190,6 +190,9 @@ class PluralsightCourseIE(InfoExtractor): # available without pluralsight account 'url': 'https://www.pluralsight.com/courses/angularjs-get-started', 'only_matching': True, + }, { + 'url': 'https://app.pluralsight.com/library/courses/understanding-microsoft-azure-amazon-aws/table-of-contents', + 'only_matching': True, }] def _real_extract(self, url):