Files

20 lines
752 B
Python
Raw Permalink Normal View History

2022-10-21 05:02:22 +09:00
import os
from support import SupportSC
2022-10-28 06:09:16 +09:00
try:
if os.path.exists(os.path.join(os.path.dirname(__file__), 'tving.py')):
2025-12-25 19:42:32 +09:00
#from .cppl import SupportCppl
2022-10-28 06:09:16 +09:00
from .kakaotv import SupportKakaotv
from .seezn import SupportSeezn
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
SupportSeezn = SupportSC.load_module_f(__file__, 'seezn').SupportSeezn
SupportKakaotv = SupportSC.load_module_f(__file__, 'kakaotv').SupportKakaotv
2025-12-25 19:42:32 +09:00
#SupportCppl = SupportSC.load_module_f(__file__, 'cppl').SupportCppl
2022-10-28 06:09:16 +09:00
except:
pass