forked from yt-dlp/yt-dlp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[lazy_extractor] Import actual class if an attribute is accessed
Now all core tests pass with lazy extraction enabled
- Loading branch information
Showing
1 changed file
with
14 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,24 @@ | ||
#!/usr/bin/env python3 | ||
# coding: utf-8 | ||
from __future__ import unicode_literals | ||
|
||
import re | ||
|
||
|
||
class LazyLoadExtractor(object): | ||
class LazyLoadMetaClass(type): | ||
def __getattr__(cls, name): | ||
return getattr(cls._get_real_class(), name) | ||
|
||
|
||
class LazyLoadExtractor(metaclass=LazyLoadMetaClass): | ||
_module = None | ||
|
||
@classmethod | ||
def _get_real_class(cls): | ||
if '__real_class' not in cls.__dict__: | ||
mod = __import__(cls._module, fromlist=(cls.__name__,)) | ||
cls.__real_class = getattr(mod, cls.__name__) | ||
return cls.__real_class | ||
|
||
def __new__(cls, *args, **kwargs): | ||
mod = __import__(cls._module, fromlist=(cls.__name__,)) | ||
real_cls = getattr(mod, cls.__name__) | ||
real_cls = cls._get_real_class() | ||
instance = real_cls.__new__(real_cls) | ||
instance.__init__(*args, **kwargs) | ||
return instance |