summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/ZeveraCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hooks/ZeveraCom.py')
-rw-r--r--module/plugins/hooks/ZeveraCom.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/module/plugins/hooks/ZeveraCom.py b/module/plugins/hooks/ZeveraCom.py
index 6ca696f38..51f759b1c 100644
--- a/module/plugins/hooks/ZeveraCom.py
+++ b/module/plugins/hooks/ZeveraCom.py
@@ -1,22 +1,21 @@
# -*- coding: utf-8 -*-
-from module.network.RequestFactory import getURL
from module.plugins.internal.MultiHook import MultiHook
class ZeveraCom(MultiHook):
__name__ = "ZeveraCom"
__type__ = "hook"
- __version__ = "0.03"
+ __version__ = "0.04"
- __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__ = """Real-Debrid.com hook plugin"""
__license__ = "GPLv3"
__authors__ = [("zoidberg", "zoidberg@mujmail.cz")]
- def getHoster(self):
- page = getURL("http://www.zevera.com/jDownloader.ashx", get={'cmd': "gethosters"})
+ def getHosters(self):
+ page = self.getURL("http://www.zevera.com/jDownloader.ashx", get={'cmd': "gethosters"})
return [x.strip() for x in page.replace("\"", "").split(",")]