diff options
author | Stefano <l.stickell@yahoo.it> | 2013-07-20 20:43:35 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-07-20 20:43:35 +0200 |
commit | 4d6f805c40f48cda9c57bc2e4a8f09bc37e046ec (patch) | |
tree | e12afd8bda3ce4ebab1731e32e0df3d428a4fba1 /module/plugins/hooks/SimplydebridCom.py | |
parent | Simplydebrid: fixed syntax error (diff) | |
download | pyload-4d6f805c40f48cda9c57bc2e4a8f09bc37e046ec.tar.xz |
Simplydebrid: renamed to standard
Diffstat (limited to 'module/plugins/hooks/SimplydebridCom.py')
-rw-r--r-- | module/plugins/hooks/SimplydebridCom.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/module/plugins/hooks/SimplydebridCom.py b/module/plugins/hooks/SimplydebridCom.py new file mode 100644 index 000000000..3272df567 --- /dev/null +++ b/module/plugins/hooks/SimplydebridCom.py @@ -0,0 +1,20 @@ +# -*- 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") + return [x.strip() for x in page.rstrip(';').replace("\"", "").split(";")] |