forked from Zanzibar82/plugin.video.streamondemand-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.py
28 lines (22 loc) · 728 Bytes
/
default.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
# -*- coding: iso-8859-1 -*-
#------------------------------------------------------------
# pelisalacarta
# XBMC entry point
# http://blog.tvalacarta.info/plugin-xbmc/pelisalacarta/
#------------------------------------------------------------
# Constants
__plugin__ = "streamondemand"
__author__ = "iSOD"
__url__ = "http://blog.tvalacarta.info/plugin-xbmc/pelisalacarta/"
__date__ = "10/07/2016"
__version__ = "5.3.2"
import os
import sys
from core import config
from core import logger
logger.info("streamondemand.default init...")
librerias = xbmc.translatePath( os.path.join( config.get_runtime_path(), 'lib' ) )
sys.path.append (librerias)
# Runs xbmc launcher
from platformcode import launcher
launcher.run()