summaryrefslogtreecommitdiffstats
path: root/module/plugins/addons/ZeveraCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/addons/ZeveraCom.py')
-rw-r--r--module/plugins/addons/ZeveraCom.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/module/plugins/addons/ZeveraCom.py b/module/plugins/addons/ZeveraCom.py
deleted file mode 100644
index cadf60069..000000000
--- a/module/plugins/addons/ZeveraCom.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# -*- coding: utf-8 -*-
-
-from module.network.RequestFactory import getURL
-from module.plugins.internal.MultiHoster import MultiHoster
-
-class ZeveraCom(MultiHoster):
- __name__ = "ZeveraCom"
- __version__ = "0.02"
- __type__ = "hook"
- __config__ = [("activated", "bool", "Activated", "False"),
- ("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported)", "all"),
- ("hosterList", "str", "Hoster list (comma separated)", "")]
- __description__ = """Real-Debrid.com hook plugin"""
- __author_name__ = ("zoidberg")
- __author_mail__ = ("zoidberg@mujmail.cz")
-
- def getHoster(self):
- page = getURL("http://www.zevera.com/jDownloader.ashx?cmd=gethosters")
- return [x.strip() for x in page.replace("\"", "").split(",")] \ No newline at end of file