summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/hoster/SimplydebridCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/hoster/SimplydebridCom.py')
-rw-r--r--pyload/plugins/hoster/SimplydebridCom.py5
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")