summaryrefslogtreecommitdiff
path: root/plugin.video.akibapass/default.py
diff options
context:
space:
mode:
authorMrKrabat <MrKrabat@users.noreply.github.com>2017-10-07 14:01:57 +0200
committerMrKrabat <MrKrabat@users.noreply.github.com>2017-10-20 20:51:50 +0200
commit6f7d366c44a27d175347374471aeb0a2b53cd7fc (patch)
tree5907bc68667be9e1617b6b6cf5b85717ce9d6723 /plugin.video.akibapass/default.py
parent8388e6878216741b9e5c6d17e509a2d173cec915 (diff)
[plugin.video.akibapass] v0.5.0
Diffstat (limited to 'plugin.video.akibapass/default.py')
-rw-r--r--plugin.video.akibapass/default.py37
1 files changed, 37 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>.
+
+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()