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/FreeWayMeHook.py | |
parent | Update crypter plugins (diff) | |
download | pyload-0af040e72ad8345ce4ecc6952dcf4fe4dc28f4ff.tar.xz |
Update addon plugins
Diffstat (limited to 'module/plugins/hooks/FreeWayMeHook.py')
-rw-r--r-- | module/plugins/hooks/FreeWayMeHook.py | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/module/plugins/hooks/FreeWayMeHook.py b/module/plugins/hooks/FreeWayMeHook.py deleted file mode 100644 index 1380433bf..000000000 --- a/module/plugins/hooks/FreeWayMeHook.py +++ /dev/null @@ -1,28 +0,0 @@ -# -*- coding: utf-8 -*- - -from module.plugins.internal.MultiHook import MultiHook - - -class FreeWayMeHook(MultiHook): - __name__ = "FreeWayMeHook" - __type__ = "hook" - __version__ = "0.18" - __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__ = """FreeWay.me hook plugin""" - __license__ = "GPLv3" - __authors__ = [("Nicolas Giese", "james@free-way.me")] - - - def get_hosters(self): - user, info = self.account.select() - hostis = self.load("http://www.free-way.bz/ajax/jd.php", - get={'id' : 3, - 'user': user, - 'pass': info['login']['password']}).replace("\"", "") #@TODO: Revert to `https` in 0.4.10 - return [x.strip() for x in hostis.split(",") if x.strip()] |