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/FastixRu.py | |
parent | [MultiHook] Crypter support (diff) | |
download | pyload-575ce629081995766a231f0a9f3e97e3b79d23b1.tar.xz |
Update MultiHook based hooks
Diffstat (limited to 'module/plugins/hooks/FastixRu.py')
-rw-r--r-- | module/plugins/hooks/FastixRu.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/module/plugins/hooks/FastixRu.py b/module/plugins/hooks/FastixRu.py index 73297eb23..a4b423fb7 100644 --- a/module/plugins/hooks/FastixRu.py +++ b/module/plugins/hooks/FastixRu.py @@ -1,17 +1,16 @@ # -*- coding: utf-8 -*- from module.common.json_layer import json_loads -from module.network.RequestFactory import getURL from module.plugins.internal.MultiHook import MultiHook class FastixRu(MultiHook): __name__ = "FastixRu" __type__ = "hook" - __version__ = "0.03" + __version__ = "0.04" - __config__ = [("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported)", "all"), - ("unloadFailing", "bool", "Revert to standard download if download fails", False), + __config__ = [("mode", "all;listed;unlisted", "Use for hosters (if supported)", "all"), + ("revertfailed", "bool", "Revert to standard download if download fails", False), ("interval", "int", "Reload interval in hours (0 to disable)", 24)] __description__ = """Fastix.ru hook plugin""" @@ -19,8 +18,8 @@ class FastixRu(MultiHook): __authors__ = [("Massimo Rosamilia", "max@spiritix.eu")] - def getHoster(self): - page = getURL("http://fastix.ru/api_v2", + def getHosters(self): + page = self.getURL("http://fastix.ru/api_v2", get={'apikey': "5182964c3f8f9a7f0b00000a_kelmFB4n1IrnCDYuIFn2y", 'sub' : "allowed_sources"}) host_list = json_loads(page) |