diff options
| author | 2015-09-29 21:57:38 +0200 | |
|---|---|---|
| committer | 2015-09-29 21:57:38 +0200 | |
| commit | 0af040e72ad8345ce4ecc6952dcf4fe4dc28f4ff (patch) | |
| tree | 3f4f9e27717792ac1a0cf9730c113662ea106e24 /module/plugins/hooks/DebridItaliaComHook.py | |
| parent | Update crypter plugins (diff) | |
| download | pyload-0af040e72ad8345ce4ecc6952dcf4fe4dc28f4ff.tar.xz | |
Update addon plugins
Diffstat (limited to 'module/plugins/hooks/DebridItaliaComHook.py')
| -rw-r--r-- | module/plugins/hooks/DebridItaliaComHook.py | 26 | 
1 files changed, 0 insertions, 26 deletions
| diff --git a/module/plugins/hooks/DebridItaliaComHook.py b/module/plugins/hooks/DebridItaliaComHook.py deleted file mode 100644 index 1b000c665..000000000 --- a/module/plugins/hooks/DebridItaliaComHook.py +++ /dev/null @@ -1,26 +0,0 @@ -# -*- coding: utf-8 -*- - -import re - -from module.plugins.internal.MultiHook import MultiHook - - -class DebridItaliaComHook(MultiHook): -    __name__    = "DebridItaliaComHook" -    __type__    = "hook" -    __version__ = "0.13" -    __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__ = """Debriditalia.com hook plugin""" -    __license__     = "GPLv3" -    __authors__     = [("stickell"      , "l.stickell@yahoo.it"), -                       ("Walter Purcaro", "vuolter@gmail.com"  )] - - -    def get_hosters(self): -        return self.load("http://debriditalia.com/api.php", get={'hosts': ""}).replace('"', '').split(',') | 
