summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/hoster/MegareleaseOrg.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugin/hoster/MegareleaseOrg.py')
-rw-r--r--pyload/plugin/hoster/MegareleaseOrg.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/pyload/plugin/hoster/MegareleaseOrg.py b/pyload/plugin/hoster/MegareleaseOrg.py
new file mode 100644
index 000000000..65f1242a9
--- /dev/null
+++ b/pyload/plugin/hoster/MegareleaseOrg.py
@@ -0,0 +1,17 @@
+# -*- coding: utf-8 -*-
+
+from pyload.plugin.internal.DeadHoster import DeadHoster
+
+
+class MegareleaseOrg(DeadHoster):
+ __name = "MegareleaseOrg"
+ __type = "hoster"
+ __version = "0.02"
+
+ __pattern = r'https?://(?:www\.)?megarelease\.org/\w{12}'
+ __config = []
+
+ __description = """Megarelease.org hoster plugin"""
+ __license = "GPLv3"
+ __authors = [("derek3x", "derek3x@vmail.me"),
+ ("stickell", "l.stickell@yahoo.it")]