diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-09-29 21:57:38 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-09-29 21:57:38 +0200 |
commit | 0af040e72ad8345ce4ecc6952dcf4fe4dc28f4ff (patch) | |
tree | 3f4f9e27717792ac1a0cf9730c113662ea106e24 /module/plugins/hooks/NoPremiumPlHook.py | |
parent | Update crypter plugins (diff) | |
download | pyload-0af040e72ad8345ce4ecc6952dcf4fe4dc28f4ff.tar.xz |
Update addon plugins
Diffstat (limited to 'module/plugins/hooks/NoPremiumPlHook.py')
-rw-r--r-- | module/plugins/hooks/NoPremiumPlHook.py | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/module/plugins/hooks/NoPremiumPlHook.py b/module/plugins/hooks/NoPremiumPlHook.py deleted file mode 100644 index 7dbdf6a68..000000000 --- a/module/plugins/hooks/NoPremiumPlHook.py +++ /dev/null @@ -1,29 +0,0 @@ -# -*- coding: utf-8 -*- - -from module.common.json_layer import json_loads -from module.plugins.internal.MultiHook import MultiHook - - -class NoPremiumPlHook(MultiHook): - __name__ = "NoPremiumPlHook" - __type__ = "hook" - __version__ = "0.04" - __status__ = "testing" - - __config__ = [("pluginmode" , "all;listed;unlisted", "Use for plugins" , "all"), - ("pluginlist" , "str" , "Plugin list (comma separated)", "" ), - ("reload" , "bool" , "Reload plugin list" , True ), - ("reloadinterval", "int" , "Reload interval in hours" , 12 )] - - __description__ = """NoPremium.pl hook plugin""" - __license__ = "GPLv3" - __authors__ = [("goddie", "dev@nopremium.pl")] - - - def get_hosters(self): - hostings = json_loads(self.load("https://www.nopremium.pl/clipboard.php?json=3").strip()) - hostings_domains = [domain for row in hostings for domain in row['domains'] if row['sdownload'] == "0"] - - self.log_debug(hostings_domains) - - return hostings_domains |