diff options
author | Stefano <l.stickell@yahoo.it> | 2013-08-13 23:13:42 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-08-13 23:13:42 +0200 |
commit | 90e8d1e44ef52d9ed1dc8a8b7681668375e8d9bf (patch) | |
tree | 9fd7fc2726c4a1f068ef2f63685f089f448a982c /pyload/plugins/hoster/SimplydebridCom.py | |
parent | Moved new plugins to pyload (diff) | |
download | pyload-90e8d1e44ef52d9ed1dc8a8b7681668375e8d9bf.tar.xz |
Adapted SimplydebridCom
Diffstat (limited to 'pyload/plugins/hoster/SimplydebridCom.py')
-rw-r--r-- | pyload/plugins/hoster/SimplydebridCom.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pyload/plugins/hoster/SimplydebridCom.py b/pyload/plugins/hoster/SimplydebridCom.py index 67cc39255..1b518274d 100644 --- a/pyload/plugins/hoster/SimplydebridCom.py +++ b/pyload/plugins/hoster/SimplydebridCom.py @@ -4,13 +4,16 @@ from urllib import quote, unquote import re -from module.plugins.Hoster import Hoster +from pyload.plugins.Hoster import Hoster class SimplydebridCom(Hoster): __name__ = "SimplydebridCom" __version__ = "0.1" __type__ = "hoster" + __config__ = [("activated", "bool", "Activated", "False"), + ("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported)", "all"), + ("hosterList", "str", "Hoster list (comma separated)", "")] __pattern__ = r"http://\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/sd.php/*" __description__ = """simply-debrid.com hoster plugin""" __author_name__ = ("Kagenoshin") |