diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-12-27 21:20:59 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-12-27 21:20:59 +0100 |
commit | 575ce629081995766a231f0a9f3e97e3b79d23b1 (patch) | |
tree | 94066e87d5af5b9b1a11012eee11fcaf78bf8c68 /module/plugins/hooks/SimplydebridCom.py | |
parent | [MultiHook] Crypter support (diff) | |
download | pyload-575ce629081995766a231f0a9f3e97e3b79d23b1.tar.xz |
Update MultiHook based hooks
Diffstat (limited to 'module/plugins/hooks/SimplydebridCom.py')
-rw-r--r-- | module/plugins/hooks/SimplydebridCom.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/module/plugins/hooks/SimplydebridCom.py b/module/plugins/hooks/SimplydebridCom.py index 48568f870..13c957294 100644 --- a/module/plugins/hooks/SimplydebridCom.py +++ b/module/plugins/hooks/SimplydebridCom.py @@ -1,22 +1,21 @@ # -*- coding: utf-8 -*- -from module.network.RequestFactory import getURL from module.plugins.internal.MultiHook import MultiHook class SimplydebridCom(MultiHook): __name__ = "SimplydebridCom" __type__ = "hook" - __version__ = "0.02" + __version__ = "0.03" - __config__ = [("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported)", "all"), - ("hosterList", "str", "Hoster list (comma separated)", "")] + __config__ = [("mode", "all;listed;unlisted", "Use for hosters (if supported)", "all"), + ("pluginlist", "str", "Hoster list (comma separated)", "")] __description__ = """Simply-Debrid.com hook plugin""" __license__ = "GPLv3" __authors__ = [("Kagenoshin", "kagenoshin@gmx.ch")] - def getHoster(self): - page = getURL("http://simply-debrid.com/api.php", get={'list': 1}) + def getHosters(self): + page = self.getURL("http://simply-debrid.com/api.php", get={'list': 1}) return [x.strip() for x in page.rstrip(';').replace("\"", "").split(";")] |