forked from jellyfin/jellyfin-kodi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
context_play.py
39 lines (23 loc) · 1.04 KB
/
context_play.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# -*- coding: utf-8 -*-
#################################################################################################
import logging
import os
import sys
import xbmc
import xbmcaddon
#################################################################################################
__addon__ = xbmcaddon.Addon(id='plugin.video.jellyfin')
__base__ = xbmc.translatePath(os.path.join(__addon__.getAddonInfo('path'), 'jellyfin_kodi')).decode('utf-8')
sys.path.insert(0, __base__)
#################################################################################################
from entrypoint import Context # noqa: F402
#################################################################################################
LOG = logging.getLogger("JELLYFIN.context")
#################################################################################################
if __name__ == "__main__":
LOG.debug("--->[ context ]")
try:
Context(True)
except Exception as error:
LOG.exception(error)
LOG.info("---<[ context ]")