mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
[extractor] Common function _match_valid_url
This commit is contained in:
parent
f79ec47d71
commit
5ad28e7ffd
293 changed files with 389 additions and 541 deletions
|
@ -1,7 +1,6 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
import json
|
||||
import re
|
||||
|
||||
from .common import InfoExtractor
|
||||
from ..compat import (
|
||||
|
@ -66,7 +65,7 @@ class PacktPubIE(PacktPubBaseIE):
|
|||
raise
|
||||
|
||||
def _real_extract(self, url):
|
||||
course_id, chapter_id, video_id, display_id = re.match(self._VALID_URL, url).groups()
|
||||
course_id, chapter_id, video_id, display_id = self._match_valid_url(url).groups()
|
||||
|
||||
headers = {}
|
||||
if self._TOKEN:
|
||||
|
@ -123,7 +122,7 @@ class PacktPubCourseIE(PacktPubBaseIE):
|
|||
PacktPubCourseIE, cls).suitable(url)
|
||||
|
||||
def _real_extract(self, url):
|
||||
mobj = re.match(self._VALID_URL, url)
|
||||
mobj = self._match_valid_url(url)
|
||||
url, course_id = mobj.group('url', 'id')
|
||||
|
||||
course = self._download_json(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue