mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	[vice] Modernize
This commit is contained in:
		@@ -1,5 +1,4 @@
 | 
				
			|||||||
from __future__ import unicode_literals
 | 
					from __future__ import unicode_literals
 | 
				
			||||||
import re
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
from .common import InfoExtractor
 | 
					from .common import InfoExtractor
 | 
				
			||||||
from .ooyala import OoyalaIE
 | 
					from .ooyala import OoyalaIE
 | 
				
			||||||
@@ -7,7 +6,7 @@ from ..utils import ExtractorError
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class ViceIE(InfoExtractor):
 | 
					class ViceIE(InfoExtractor):
 | 
				
			||||||
    _VALID_URL = r'https?://(?:.+?\.)?vice\.com/.*?/(?P<name>.+)'
 | 
					    _VALID_URL = r'https?://(?:.+?\.)?vice\.com/(?:[^/]+/)+(?P<id>.+)'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    _TESTS = [
 | 
					    _TESTS = [
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
@@ -28,9 +27,8 @@ class ViceIE(InfoExtractor):
 | 
				
			|||||||
    ]
 | 
					    ]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def _real_extract(self, url):
 | 
					    def _real_extract(self, url):
 | 
				
			||||||
        mobj = re.match(self._VALID_URL, url)
 | 
					        video_id = self._match_id(url)
 | 
				
			||||||
        name = mobj.group('name')
 | 
					        webpage = self._download_webpage(url, video_id)
 | 
				
			||||||
        webpage = self._download_webpage(url, name)
 | 
					 | 
				
			||||||
        try:
 | 
					        try:
 | 
				
			||||||
            embed_code = self._search_regex(
 | 
					            embed_code = self._search_regex(
 | 
				
			||||||
                r'embedCode=([^&\'"]+)', webpage,
 | 
					                r'embedCode=([^&\'"]+)', webpage,
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user