mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	Remove unused imports and simplify
This commit is contained in:
		@@ -1,12 +1,9 @@
 | 
				
			|||||||
from __future__ import unicode_literals
 | 
					from __future__ import unicode_literals
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import re
 | 
					import re
 | 
				
			||||||
import string
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
from .common import InfoExtractor
 | 
					from .common import InfoExtractor
 | 
				
			||||||
from ..utils import (
 | 
					
 | 
				
			||||||
    ExtractorError,
 | 
					 | 
				
			||||||
)
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
translation_table = {
 | 
					translation_table = {
 | 
				
			||||||
    'a': 'h', 'd': 'e', 'e': 'v', 'f': 'o', 'g': 'f', 'i': 'd', 'l': 'n',
 | 
					    'a': 'h', 'd': 'e', 'e': 'v', 'f': 'o', 'g': 'f', 'i': 'd', 'l': 'n',
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -10,7 +10,7 @@ from ..utils import (
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class InfoQIE(InfoExtractor):
 | 
					class InfoQIE(InfoExtractor):
 | 
				
			||||||
    _VALID_URL = r'^(?:https?://)?(?:www\.)?infoq\.com/[^/]+/[^/]+$'
 | 
					    _VALID_URL = r'https?://(?:www\.)?infoq\.com/[^/]+/(?P<id>[^/]+)$'
 | 
				
			||||||
    _TEST = {
 | 
					    _TEST = {
 | 
				
			||||||
        "name": "InfoQ",
 | 
					        "name": "InfoQ",
 | 
				
			||||||
        "url": "http://www.infoq.com/presentations/A-Few-of-My-Favorite-Python-Things",
 | 
					        "url": "http://www.infoq.com/presentations/A-Few-of-My-Favorite-Python-Things",
 | 
				
			||||||
@@ -26,9 +26,9 @@ class InfoQIE(InfoExtractor):
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    def _real_extract(self, url):
 | 
					    def _real_extract(self, url):
 | 
				
			||||||
        mobj = re.match(self._VALID_URL, url)
 | 
					        mobj = re.match(self._VALID_URL, url)
 | 
				
			||||||
 | 
					        video_id = mobj.group('id')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        webpage = self._download_webpage(url, video_id=url)
 | 
					        webpage = self._download_webpage(url, video_id)
 | 
				
			||||||
        self.report_extraction(url)
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        # Extract video URL
 | 
					        # Extract video URL
 | 
				
			||||||
        encoded_id = self._search_regex(r"jsclassref ?= ?'([^']*)'", webpage, 'encoded id')
 | 
					        encoded_id = self._search_regex(r"jsclassref ?= ?'([^']*)'", webpage, 'encoded id')
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,9 +4,6 @@ import json
 | 
				
			|||||||
import re
 | 
					import re
 | 
				
			||||||
 | 
					
 | 
				
			||||||
from .common import InfoExtractor
 | 
					from .common import InfoExtractor
 | 
				
			||||||
from ..utils import (
 | 
					 | 
				
			||||||
    ExtractorError,
 | 
					 | 
				
			||||||
)
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class LiveLeakIE(InfoExtractor):
 | 
					class LiveLeakIE(InfoExtractor):
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,18 +4,18 @@ import json
 | 
				
			|||||||
import re
 | 
					import re
 | 
				
			||||||
 | 
					
 | 
				
			||||||
from .common import InfoExtractor
 | 
					from .common import InfoExtractor
 | 
				
			||||||
from ..utils import determine_ext
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class NewgroundsIE(InfoExtractor):
 | 
					class NewgroundsIE(InfoExtractor):
 | 
				
			||||||
    _VALID_URL = r'(?:https?://)?(?:www\.)?newgrounds\.com/audio/listen/(?P<id>\d+)'
 | 
					    _VALID_URL = r'https?://(?:www\.)?newgrounds\.com/audio/listen/(?P<id>[0-9]+)'
 | 
				
			||||||
    _TEST = {
 | 
					    _TEST = {
 | 
				
			||||||
        'url': 'http://www.newgrounds.com/audio/listen/549479',
 | 
					        'url': 'http://www.newgrounds.com/audio/listen/549479',
 | 
				
			||||||
        'file': '549479.mp3',
 | 
					 | 
				
			||||||
        'md5': 'fe6033d297591288fa1c1f780386f07a',
 | 
					        'md5': 'fe6033d297591288fa1c1f780386f07a',
 | 
				
			||||||
        'info_dict': {
 | 
					        'info_dict': {
 | 
				
			||||||
            "title": "B7 - BusMode",
 | 
					            'id': '549479',
 | 
				
			||||||
            "uploader": "Burn7",
 | 
					            'ext': 'mp3',
 | 
				
			||||||
 | 
					            'title': 'B7 - BusMode',
 | 
				
			||||||
 | 
					            'uploader': 'Burn7',
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,8 +6,6 @@ import re
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
from .common import InfoExtractor
 | 
					from .common import InfoExtractor
 | 
				
			||||||
from ..utils import (
 | 
					from ..utils import (
 | 
				
			||||||
    compat_urllib_parse_urlparse,
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    ExtractorError,
 | 
					    ExtractorError,
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -16,9 +14,10 @@ class RBMARadioIE(InfoExtractor):
 | 
				
			|||||||
    _VALID_URL = r'https?://(?:www\.)?rbmaradio\.com/shows/(?P<videoID>[^/]+)$'
 | 
					    _VALID_URL = r'https?://(?:www\.)?rbmaradio\.com/shows/(?P<videoID>[^/]+)$'
 | 
				
			||||||
    _TEST = {
 | 
					    _TEST = {
 | 
				
			||||||
        'url': 'http://www.rbmaradio.com/shows/ford-lopatin-live-at-primavera-sound-2011',
 | 
					        'url': 'http://www.rbmaradio.com/shows/ford-lopatin-live-at-primavera-sound-2011',
 | 
				
			||||||
        'file': 'ford-lopatin-live-at-primavera-sound-2011.mp3',
 | 
					 | 
				
			||||||
        'md5': '6bc6f9bcb18994b4c983bc3bf4384d95',
 | 
					        'md5': '6bc6f9bcb18994b4c983bc3bf4384d95',
 | 
				
			||||||
        'info_dict': {
 | 
					        'info_dict': {
 | 
				
			||||||
 | 
					            'id': 'ford-lopatin-live-at-primavera-sound-2011',
 | 
				
			||||||
 | 
					            'ext': 'mp3',
 | 
				
			||||||
            "uploader_id": "ford-lopatin",
 | 
					            "uploader_id": "ford-lopatin",
 | 
				
			||||||
            "location": "Spain",
 | 
					            "location": "Spain",
 | 
				
			||||||
            "description": "Joel Ford and Daniel ’Oneohtrix Point Never’ Lopatin fly their midified pop extravaganza to Spain. Live at Primavera Sound 2011.",
 | 
					            "description": "Joel Ford and Daniel ’Oneohtrix Point Never’ Lopatin fly their midified pop extravaganza to Spain. Live at Primavera Sound 2011.",
 | 
				
			||||||
@@ -42,7 +41,6 @@ class RBMARadioIE(InfoExtractor):
 | 
				
			|||||||
            raise ExtractorError('Invalid JSON: ' + str(e))
 | 
					            raise ExtractorError('Invalid JSON: ' + str(e))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        video_url = data['akamai_url'] + '&cbr=256'
 | 
					        video_url = data['akamai_url'] + '&cbr=256'
 | 
				
			||||||
        url_parts = compat_urllib_parse_urlparse(video_url)
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        return {
 | 
					        return {
 | 
				
			||||||
            'id': video_id,
 | 
					            'id': video_id,
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,34 +1,36 @@
 | 
				
			|||||||
import re
 | 
					from __future__ import unicode_literals
 | 
				
			||||||
 | 
					
 | 
				
			||||||
from .mtv import MTVServicesInfoExtractor
 | 
					from .mtv import MTVServicesInfoExtractor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class SouthParkStudiosIE(MTVServicesInfoExtractor):
 | 
					class SouthParkStudiosIE(MTVServicesInfoExtractor):
 | 
				
			||||||
    IE_NAME = u'southparkstudios.com'
 | 
					    IE_NAME = 'southparkstudios.com'
 | 
				
			||||||
    _VALID_URL = r'(https?://)?(www\.)?(?P<url>southparkstudios\.com/(clips|full-episodes)/(?P<id>.+?)(\?|#|$))'
 | 
					    _VALID_URL = r'https?://(www\.)?(?P<url>southparkstudios\.com/(clips|full-episodes)/(?P<id>.+?)(\?|#|$))'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    _FEED_URL = 'http://www.southparkstudios.com/feeds/video-player/mrss'
 | 
					    _FEED_URL = 'http://www.southparkstudios.com/feeds/video-player/mrss'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    _TESTS = [{
 | 
					    _TESTS = [{
 | 
				
			||||||
        u'url': u'http://www.southparkstudios.com/clips/104437/bat-daded#tab=featured',
 | 
					        'url': 'http://www.southparkstudios.com/clips/104437/bat-daded#tab=featured',
 | 
				
			||||||
        u'file': u'a7bff6c2-ed00-11e0-aca6-0026b9414f30.mp4',
 | 
					        'info_dict': {
 | 
				
			||||||
        u'info_dict': {
 | 
					            'id': 'a7bff6c2-ed00-11e0-aca6-0026b9414f30',
 | 
				
			||||||
            u'title': u'Bat Daded',
 | 
					            'ext': 'mp4',
 | 
				
			||||||
            u'description': u'Randy disqualifies South Park by getting into a fight with Bat Dad.',
 | 
					            'title': 'Bat Daded',
 | 
				
			||||||
 | 
					            'description': 'Randy disqualifies South Park by getting into a fight with Bat Dad.',
 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
    }]
 | 
					    }]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class SouthparkDeIE(SouthParkStudiosIE):
 | 
					class SouthparkDeIE(SouthParkStudiosIE):
 | 
				
			||||||
    IE_NAME = u'southpark.de'
 | 
					    IE_NAME = 'southpark.de'
 | 
				
			||||||
    _VALID_URL = r'(https?://)?(www\.)?(?P<url>southpark\.de/(clips|alle-episoden)/(?P<id>.+?)(\?|#|$))'
 | 
					    _VALID_URL = r'https?://(www\.)?(?P<url>southpark\.de/(clips|alle-episoden)/(?P<id>.+?)(\?|#|$))'
 | 
				
			||||||
    _FEED_URL = 'http://www.southpark.de/feeds/video-player/mrss/'
 | 
					    _FEED_URL = 'http://www.southpark.de/feeds/video-player/mrss/'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    _TESTS = [{
 | 
					    _TESTS = [{
 | 
				
			||||||
        u'url': u'http://www.southpark.de/clips/uygssh/the-government-wont-respect-my-privacy#tab=featured',
 | 
					        'url': 'http://www.southpark.de/clips/uygssh/the-government-wont-respect-my-privacy#tab=featured',
 | 
				
			||||||
        u'file': u'85487c96-b3b9-4e39-9127-ad88583d9bf2.mp4',
 | 
					        'info_dict': {
 | 
				
			||||||
        u'info_dict': {
 | 
					            'id': '85487c96-b3b9-4e39-9127-ad88583d9bf2',
 | 
				
			||||||
            u'title': u'The Government Won\'t Respect My Privacy',
 | 
					            'ext': 'mp4',
 | 
				
			||||||
            u'description': u'Cartman explains the benefits of "Shitter" to Stan, Kyle and Craig.',
 | 
					            'title': 'The Government Won\'t Respect My Privacy',
 | 
				
			||||||
 | 
					            'description': 'Cartman explains the benefits of "Shitter" to Stan, Kyle and Craig.',
 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
    }]
 | 
					    }]
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,7 +1,6 @@
 | 
				
			|||||||
from __future__ import unicode_literals
 | 
					from __future__ import unicode_literals
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import re
 | 
					import re
 | 
				
			||||||
import json
 | 
					 | 
				
			||||||
import xml.etree.ElementTree
 | 
					import xml.etree.ElementTree
 | 
				
			||||||
import datetime
 | 
					import datetime
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -5,7 +5,6 @@ import re
 | 
				
			|||||||
from .common import InfoExtractor
 | 
					from .common import InfoExtractor
 | 
				
			||||||
from ..utils import (
 | 
					from ..utils import (
 | 
				
			||||||
    compat_urllib_parse,
 | 
					    compat_urllib_parse,
 | 
				
			||||||
    unescapeHTML,
 | 
					 | 
				
			||||||
    ExtractorError,
 | 
					    ExtractorError,
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user