diff options
author | Sergey M. <dstftw@gmail.com> | 2015-06-15 20:31:47 +0500 |
---|---|---|
committer | Sergey M. <dstftw@gmail.com> | 2015-06-15 20:31:47 +0500 |
commit | 636a9637f4cc4f40b10a9db3be4ff6fc7e5b38f5 (patch) | |
tree | 674c534aecb3ea016f34806da99bc9b454139567 | |
parent | 99e6833c85868b78df7c810603ffdccdaeb4eaf0 (diff) | |
parent | 2a0fcf6113c3f0c8d0510167fd7017cc0fdfa622 (diff) |
Merge pull request #5985 from zx8/master
[safari] make url regex more lenient
-rw-r--r-- | youtube_dl/extractor/safari.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/safari.py b/youtube_dl/extractor/safari.py index 10251f29e..20ba6fa33 100644 --- a/youtube_dl/extractor/safari.py +++ b/youtube_dl/extractor/safari.py @@ -83,7 +83,7 @@ class SafariIE(SafariBaseIE): library/view/[^/]+| api/v1/book )/ - (?P<course_id>\d+)/ + (?P<course_id>[^/]+)/ (?:chapter(?:-content)?/)? (?P<part>part\d+)\.html ''' @@ -122,7 +122,7 @@ class SafariCourseIE(SafariBaseIE): IE_NAME = 'safari:course' IE_DESC = 'safaribooksonline.com online courses' - _VALID_URL = r'https?://(?:www\.)?safaribooksonline\.com/(?:library/view/[^/]+|api/v1/book)/(?P<id>\d+)/?(?:[#?]|$)' + _VALID_URL = r'https?://(?:www\.)?safaribooksonline\.com/(?:library/view/[^/]+|api/v1/book)/(?P<id>[^/]+)/?(?:[#?]|$)' _TESTS = [{ 'url': 'https://www.safaribooksonline.com/library/view/hadoop-fundamentals-livelessons/9780133392838/', |