jellyfin-kodi/context_play.py
angelblue05 aac8229f9b Plug in dynamic packages
For now, Kodi will need to be restarted to load from the dynamic package every time there is an update to the package.
2018-09-07 03:22:08 -05:00

40 lines
1.1 KiB
Python

# -*- coding: utf-8 -*-
#################################################################################################
import logging
import os
import sys
import xbmc
import xbmcaddon
#################################################################################################
cache = xbmc.translatePath('special://temp/emby').decode('utf-8')
sys.path.insert(0, cache)
__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__)
#################################################################################################
from entrypoint import Context
#################################################################################################
LOG = logging.getLogger("EMBY.context")
#################################################################################################
if __name__ == "__main__":
LOG.debug("--->[ context ]")
try:
Context(True)
except Exception as error:
LOG.exception(error)
LOG.info("---<[ context ]")