Files
youtube-dl/lib/support/site/__init__.py

13 lines
453 B
Python
Raw Normal View History

2022-10-21 05:02:22 +09:00
import os
from support import SupportSC
if os.path.exists(os.path.join(os.path.dirname(__file__), 'tving.py')):
2022-10-26 20:32:58 +09:00
from .seezn import SupportSeezn
2022-10-21 05:02:22 +09:00
from .tving import SupportTving
from .wavve import SupportWavve
else:
SupportTving = SupportSC.load_module_f(__file__, 'tving').SupportTving
SupportWavve = SupportSC.load_module_f(__file__, 'wavve').SupportWavve
2022-10-26 20:32:58 +09:00
SupportSeezn = SupportSC.load_module_f(__file__, 'seezn').SupportSeezn