New hybrid method

This commit is contained in:
angelblue05 2018-09-06 03:36:32 -05:00
commit ace50b34dc
279 changed files with 39526 additions and 19994 deletions

View file

@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
#################################################################################################
import logging
import sys
from helper import loghandler
from emby import Emby
#################################################################################################
Emby.set_loghandler(loghandler.LogHandler, logging.DEBUG)
loghandler.config()
LOG = logging.getLogger('EMBY.entrypoint')
#################################################################################################
try:
sys.path.insert(0, xbmc.translatePath('special://temp/emby/').decode('utf-8'))
except Exception as error:
LOG.debug('No objects not found, using default.')
from default import Events
from service import Service
from context import Context