Merge remote-tracking branch 'origin/reuse_ies'

This commit is contained in:
Philipp Hagemeister 2013-08-28 13:05:21 +02:00
commit 6d69d03bac
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]