summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/SimplydebridCom.py
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-08-13 14:35:20 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2013-08-13 14:35:20 +0200
commit9e69d71470bf8841efdde268d7635f25ab274c20 (patch)
tree19d4062c44960cd2cfaa0e657650e227989814a6 /module/plugins/hooks/SimplydebridCom.py
parentFreakshareCom: fixed #210 (diff)
parentSimplydebrid: cosmetics (diff)
downloadpyload-9e69d71470bf8841efdde268d7635f25ab274c20.tar.xz
Merge pull request #226 from Kagenoshin/simplydebrid
New multihoster plugin: Simplydebrid
Diffstat (limited to 'module/plugins/hooks/SimplydebridCom.py')
-rw-r--r--module/plugins/hooks/SimplydebridCom.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/module/plugins/hooks/SimplydebridCom.py b/module/plugins/hooks/SimplydebridCom.py
new file mode 100644
index 000000000..3272df567
--- /dev/null
+++ b/module/plugins/hooks/SimplydebridCom.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+
+from module.network.RequestFactory import getURL
+from module.plugins.internal.MultiHoster import MultiHoster
+
+
+class SimplydebridCom(MultiHoster):
+ __name__ = "SimplydebridCom"
+ __version__ = "0.01"
+ __type__ = "hook"
+ __config__ = [("activated", "bool", "Activated", "False"),
+ ("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported)", "all"),
+ ("hosterList", "str", "Hoster list (comma separated)", "")]
+ __description__ = """Simply-Debrid.com hook plugin"""
+ __author_name__ = ("Kagenoshin")
+ __author_mail__ = ("kagenoshin@gmx.ch")
+
+ def getHoster(self):
+ page = getURL("http://simply-debrid.com/api.php?list=1")
+ return [x.strip() for x in page.rstrip(';').replace("\"", "").split(";")]