diff options
author | Ivo Buff <kagenoshin@gmx.ch> | 2013-07-12 00:45:36 +0200 |
---|---|---|
committer | Ivo Buff <kagenoshin@gmx.ch> | 2013-07-12 00:45:36 +0200 |
commit | 834a315649a0090812118f34618e48aff160c162 (patch) | |
tree | decb07cad8093a050af0b9bdd1b896a981ab56ec /module/plugins/hooks | |
parent | New crypter requested in #186 (diff) | |
download | pyload-834a315649a0090812118f34618e48aff160c162.tar.xz |
SimplydebridCOM plugin added
SimplydebridCOM plugin added
Diffstat (limited to 'module/plugins/hooks')
-rw-r--r-- | module/plugins/hooks/SimplydebridCOM.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/module/plugins/hooks/SimplydebridCOM.py b/module/plugins/hooks/SimplydebridCOM.py new file mode 100644 index 000000000..af415db23 --- /dev/null +++ b/module/plugins/hooks/SimplydebridCOM.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- + +from module.network.RequestFactory import getURL +from module.plugins.internal.MultiHoster import MultiHoster + +class SimplydebridCOM(MultiHoster): + __name__ = "SimplydebridCOM" + __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)", "")] + __description__ = """Simply-Debrid.com hook plugin""" + __author_name__ = ("Kagenoshin") + __author_mail__ = ("kagenoshin@gmx.ch") + + def getHoster(self): + page = getURL("http://simply-debrid.com/api.php?list=1") + if(page[len(page)-1] == ";"): #remove ; if the page entry ends with ; + page = page[0:len(page)-1] + return [x.strip() for x in page.replace("\"","").split(";")]
\ No newline at end of file |