2018-01-08 02:13:11 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
#################################################################################################
|
|
|
|
|
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
import xbmc
|
|
|
|
import xbmcaddon
|
|
|
|
|
|
|
|
#################################################################################################
|
|
|
|
|
2018-09-07 08:22:08 +00:00
|
|
|
cache = xbmc.translatePath('special://temp/emby').decode('utf-8')
|
|
|
|
sys.path.insert(0, cache)
|
2018-09-06 08:36:32 +00:00
|
|
|
__addon__ = xbmcaddon.Addon(id='plugin.video.emby').getAddonInfo('path').decode('utf-8')
|
|
|
|
__base__ = xbmc.translatePath(os.path.join(__addon__, 'resources', 'lib')).decode('utf-8')
|
|
|
|
sys.path.append(__base__)
|
2018-01-08 02:13:11 +00:00
|
|
|
|
|
|
|
#################################################################################################
|
|
|
|
|
2018-09-06 08:36:32 +00:00
|
|
|
from entrypoint import Context
|
2018-01-08 02:13:11 +00:00
|
|
|
|
|
|
|
#################################################################################################
|
|
|
|
|
2018-09-06 08:36:32 +00:00
|
|
|
LOG = logging.getLogger("EMBY.context")
|
2018-01-08 02:13:11 +00:00
|
|
|
|
|
|
|
#################################################################################################
|
|
|
|
|
2018-09-06 08:36:32 +00:00
|
|
|
|
2018-01-08 02:13:11 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
|
2018-09-06 19:41:02 +00:00
|
|
|
LOG.debug("--->[ context ]")
|
2018-09-06 08:36:32 +00:00
|
|
|
|
2018-01-08 02:13:11 +00:00
|
|
|
try:
|
2018-09-06 08:36:32 +00:00
|
|
|
Context()
|
2018-01-08 02:13:11 +00:00
|
|
|
except Exception as error:
|
2018-09-06 08:36:32 +00:00
|
|
|
LOG.exception(error)
|
|
|
|
|
|
|
|
LOG.info("---<[ context ]")
|