summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/addon/MegaDebridEu.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/addon/MegaDebridEu.py')
-rw-r--r--pyload/plugins/addon/MegaDebridEu.py31
1 files changed, 0 insertions, 31 deletions
diff --git a/pyload/plugins/addon/MegaDebridEu.py b/pyload/plugins/addon/MegaDebridEu.py
deleted file mode 100644
index 3faa823bf..000000000
--- a/pyload/plugins/addon/MegaDebridEu.py
+++ /dev/null
@@ -1,31 +0,0 @@
-# -*- coding: utf-8 -*-
-
-from pyload.utils import json_loads
-from pyload.network.RequestFactory import getURL
-from pyload.plugins.internal.MultiHoster import MultiHoster
-
-
-class MegaDebridEu(MultiHoster):
- __name__ = "MegaDebridEu"
- __type__ = "addon"
- __version__ = "0.02"
-
- __config__ = [("activated", "bool", "Activated", False),
- ("unloadFailing", "bool", "Revert to standard download if download fails", False)]
-
- __description__ = """mega-debrid.eu addon plugin"""
- __author_name__ = "D.Ducatel"
- __author_mail__ = "dducatel@je-geek.fr"
-
-
- def getHoster(self):
- reponse = getURL('http://www.mega-debrid.eu/api.php?action=getHosters')
- json_data = json_loads(reponse)
-
- if json_data['response_code'] == "ok":
- host_list = [element[0] for element in json_data['hosters']]
- else:
- self.logError(_("Unable to retrieve hoster list"))
- host_list = list()
-
- return host_list