|
|
@ -10,6 +10,9 @@ sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
from inspect import getsource
|
|
|
|
from inspect import getsource
|
|
|
|
|
|
|
|
|
|
|
|
from devscripts.utils import get_filename_args, read_file, write_file
|
|
|
|
from devscripts.utils import get_filename_args, read_file, write_file
|
|
|
|
|
|
|
|
from yt_dlp.extractor import import_extractors
|
|
|
|
|
|
|
|
from yt_dlp.extractor.common import InfoExtractor, SearchInfoExtractor
|
|
|
|
|
|
|
|
from yt_dlp._globals import extractors
|
|
|
|
|
|
|
|
|
|
|
|
NO_ATTR = object()
|
|
|
|
NO_ATTR = object()
|
|
|
|
STATIC_CLASS_PROPERTIES = [
|
|
|
|
STATIC_CLASS_PROPERTIES = [
|
|
|
@ -38,8 +41,7 @@ def main():
|
|
|
|
|
|
|
|
|
|
|
|
lazy_extractors_filename = get_filename_args(default_outfile='yt_dlp/extractor/lazy_extractors.py')
|
|
|
|
lazy_extractors_filename = get_filename_args(default_outfile='yt_dlp/extractor/lazy_extractors.py')
|
|
|
|
|
|
|
|
|
|
|
|
from yt_dlp.extractor.extractors import _ALL_CLASSES
|
|
|
|
import_extractors()
|
|
|
|
from yt_dlp.extractor.common import InfoExtractor, SearchInfoExtractor
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DummyInfoExtractor = type('InfoExtractor', (InfoExtractor,), {'IE_NAME': NO_ATTR})
|
|
|
|
DummyInfoExtractor = type('InfoExtractor', (InfoExtractor,), {'IE_NAME': NO_ATTR})
|
|
|
|
module_src = '\n'.join((
|
|
|
|
module_src = '\n'.join((
|
|
|
@ -47,7 +49,7 @@ def main():
|
|
|
|
' _module = None',
|
|
|
|
' _module = None',
|
|
|
|
*extra_ie_code(DummyInfoExtractor),
|
|
|
|
*extra_ie_code(DummyInfoExtractor),
|
|
|
|
'\nclass LazyLoadSearchExtractor(LazyLoadExtractor):\n pass\n',
|
|
|
|
'\nclass LazyLoadSearchExtractor(LazyLoadExtractor):\n pass\n',
|
|
|
|
*build_ies(_ALL_CLASSES, (InfoExtractor, SearchInfoExtractor), DummyInfoExtractor),
|
|
|
|
*build_ies(list(extractors.get().values()), (InfoExtractor, SearchInfoExtractor), DummyInfoExtractor),
|
|
|
|
))
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
|
|
write_file(lazy_extractors_filename, f'{module_src}\n')
|
|
|
|
write_file(lazy_extractors_filename, f'{module_src}\n')
|
|
|
|