summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks
diff options
context:
space:
mode:
authorGravatar Ivo Buff <kagenoshin@gmx.ch> 2013-07-12 11:28:40 +0200
committerGravatar Ivo Buff <kagenoshin@gmx.ch> 2013-07-12 11:28:40 +0200
commit88f6fcac584da7e822d9ac4084553972c521f044 (patch)
tree79d7c70e65564e65baebc24502d9461241ca3680 /module/plugins/hooks
parentSimplydebridCOM plugin added (diff)
downloadpyload-88f6fcac584da7e822d9ac4084553972c521f044.tar.xz
Cleanup
Some cleanup and changed tabs to 4 spaces
Diffstat (limited to 'module/plugins/hooks')
-rw-r--r--module/plugins/hooks/SimplydebridCOM.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/module/plugins/hooks/SimplydebridCOM.py b/module/plugins/hooks/SimplydebridCOM.py
index af415db23..79083f724 100644
--- a/module/plugins/hooks/SimplydebridCOM.py
+++ b/module/plugins/hooks/SimplydebridCOM.py
@@ -4,16 +4,16 @@ 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")
+ __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
+ 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