[nbc] remove unused imports and extract permalink from modified urls
authorRemita Amine <remitamine@gmail.com>
Sun, 7 May 2017 08:31:14 +0000 (09:31 +0100)
committerRemita Amine <remitamine@gmail.com>
Sun, 7 May 2017 08:31:14 +0000 (09:31 +0100)
youtube_dl/extractor/nbc.py

index 3b31ca3ef1e1b8c2dc60286ee0a22bed75e4b58a..62db70b438d365eb60609beaa6bbad9e2d9fc7d4 100644 (file)
@@ -5,10 +5,8 @@ import re
 from .common import InfoExtractor
 from .theplatform import ThePlatformIE
 from .adobepass import AdobePassIE
-from ..compat import compat_urllib_parse_urlparse
 from ..utils import (
     find_xpath_attr,
-    lowercase_escape,
     smuggle_url,
     unescapeHTML,
     update_url_query,
@@ -17,7 +15,7 @@ from ..utils import (
 
 
 class NBCIE(AdobePassIE):
-    _VALID_URL = r'https?://(?:www\.)?nbc\.com/[^/]+/video/[^/]+/(?P<id>n?\d+)'
+    _VALID_URL = r'(?P<permalink>https?://(?:www\.)?nbc\.com/[^/]+/video/[^/]+/(?P<id>n?\d+))'
 
     _TESTS = [
         {
@@ -73,10 +71,10 @@ class NBCIE(AdobePassIE):
     ]
 
     def _real_extract(self, url):
-        video_id = self._match_id(url)
+        permalink, video_id = re.match(self._VALID_URL, url).groups()
         video_data = self._download_json(
             'https://api.nbc.com/v3/videos', video_id, query={
-                'filter[permalink]': url,
+                'filter[permalink]': permalink,
             })['data'][0]['attributes']
         query = {
             'mbr': 'true',