mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	[ebaumsworld] Modernize
This commit is contained in:
		@@ -1,3 +1,5 @@
 | 
				
			|||||||
 | 
					from __future__ import unicode_literals
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import re
 | 
					import re
 | 
				
			||||||
 | 
					
 | 
				
			||||||
from .common import InfoExtractor
 | 
					from .common import InfoExtractor
 | 
				
			||||||
@@ -8,12 +10,13 @@ class EbaumsWorldIE(InfoExtractor):
 | 
				
			|||||||
    _VALID_URL = r'https?://www\.ebaumsworld\.com/video/watch/(?P<id>\d+)'
 | 
					    _VALID_URL = r'https?://www\.ebaumsworld\.com/video/watch/(?P<id>\d+)'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    _TEST = {
 | 
					    _TEST = {
 | 
				
			||||||
        u'url': u'http://www.ebaumsworld.com/video/watch/83367677/',
 | 
					        'url': 'http://www.ebaumsworld.com/video/watch/83367677/',
 | 
				
			||||||
        u'file': u'83367677.mp4',
 | 
					        'info_dict': {
 | 
				
			||||||
        u'info_dict': {
 | 
					            'id': '83367677',
 | 
				
			||||||
            u'title': u'A Giant Python Opens The Door',
 | 
					            'ext': 'mp4',
 | 
				
			||||||
            u'description': u'This is how nightmares start...',
 | 
					            'title': 'A Giant Python Opens The Door',
 | 
				
			||||||
            u'uploader': u'jihadpizza',
 | 
					            'description': 'This is how nightmares start...',
 | 
				
			||||||
 | 
					            'uploader': 'jihadpizza',
 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user