diff options
author | Stefano <l.stickell@yahoo.it> | 2013-03-23 21:30:27 +0100 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-03-23 21:30:27 +0100 |
commit | 261e5d90719a9a578f718c55992c80b0b3f7e45f (patch) | |
tree | 5e81829b6ed17cf2b5f9398ed5649434b1cf1d44 /module/plugins/hooks/DebridItaliaCom.py | |
parent | LuckyShareNet: fixed syntax error (diff) | |
download | pyload-261e5d90719a9a578f718c55992c80b0b3f7e45f.tar.xz |
New debrid: DebridItaliaCom
Diffstat (limited to 'module/plugins/hooks/DebridItaliaCom.py')
-rw-r--r-- | module/plugins/hooks/DebridItaliaCom.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/module/plugins/hooks/DebridItaliaCom.py b/module/plugins/hooks/DebridItaliaCom.py new file mode 100644 index 000000000..8cd997f4d --- /dev/null +++ b/module/plugins/hooks/DebridItaliaCom.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- + +from module.plugins.internal.MultiHoster import MultiHoster + + +class DebridItaliaCom(MultiHoster): + __name__ = "DebridItaliaCom" + __version__ = "0.01" + __type__ = "hook" + __config__ = [("activated", "bool", "Activated", "False"), + ("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported)", "all"), + ("hosterList", "str", "Hoster list (comma separated)", ""), + ("unloadFailing", "bool", "Revert to standard download if download fails", "False"), + ("interval", "int", "Reload interval in hours (0 to disable)", "24")] + + __description__ = """Debriditalia.com hook plugin""" + __author_name__ = ("stickell") + __author_mail__ = ("l.stickell@yahoo.it") + + def getHoster(self): + return ["netload.in", "hotfile.com", "rapidshare.com", "multiupload.com", + "uploading.com", "megashares.com", "crocko.com", "filepost.com", + "bitshare.com", "share-links.biz", "putlocker.com", "uploaded.to", + "speedload.org", "rapidgator.net", "likeupload.net", "cyberlocker.ch", + "depositfiles.com", "extabit.com", "filefactory.com", "sharefiles.co"] |