From 6f7d366c44a27d175347374471aeb0a2b53cd7fc Mon Sep 17 00:00:00 2001 From: MrKrabat Date: Sat, 7 Oct 2017 14:01:57 +0200 Subject: [plugin.video.akibapass] v0.5.0 --- plugin.video.akibapass/default.py | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 plugin.video.akibapass/default.py (limited to 'plugin.video.akibapass/default.py') diff --git a/plugin.video.akibapass/default.py b/plugin.video.akibapass/default.py new file mode 100644 index 0000000..11f2571 --- /dev/null +++ b/plugin.video.akibapass/default.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +# Akibapass - Watch videos from the german anime platform Akibapass.de on Kodi. +# Copyright (C) 2016 - 2017 MrKrabat +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +import sys +import xbmc +import xbmcaddon + + +_plugId = "plugin.video.akibapass" + +# plugin constants +_addon = xbmcaddon.Addon(id=_plugId) +_plugin = _addon.getAddonInfo("name") +_version = _addon.getAddonInfo("version") + +xbmc.log("[PLUGIN] %s: version %s initialized" % (_plugin, _version)) + +if __name__ == "__main__": + from resources.lib import akibapass + # start addon + akibapass.main() + +sys.modules.clear() -- cgit v1.2.3