1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-06-30 11:02:54 -05:00

Merge remote-tracking branch 'origin/reuse_ies'

This commit is contained in:
Philipp Hagemeister
2013-08-28 13:05:21 +02:00
2 changed files with 20 additions and 3 deletions

View File

@ -114,6 +114,11 @@ class InfoExtractor(object):
"""Real extraction process. Redefine in subclasses."""
pass
@classmethod
def ie_key(cls):
"""A string for getting the InfoExtractor with get_info_extractor"""
return cls.__name__[:-2]
@property
def IE_NAME(self):
return type(self).__name__[:-2]