2016-02-11 13:49:02 +00:00
|
|
|
# encoding: utf-8
|
2016-02-10 13:01:31 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
|
|
|
|
class LazyLoadExtractor(object):
|
|
|
|
_module = None
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def ie_key(cls):
|
|
|
|
return cls.__name__[:-2]
|
|
|
|
|
2016-02-21 11:46:14 +00:00
|
|
|
def __new__(cls, *args, **kwargs):
|
2016-02-10 13:01:31 +00:00
|
|
|
mod = __import__(cls._module, fromlist=(cls.__name__,))
|
|
|
|
real_cls = getattr(mod, cls.__name__)
|
2016-02-21 11:46:14 +00:00
|
|
|
instance = real_cls.__new__(real_cls)
|
|
|
|
instance.__init__(*args, **kwargs)
|
|
|
|
return instance
|