summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/MegaRapidCz.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/crypter/MegaRapidCz.py')
-rw-r--r--module/plugins/crypter/MegaRapidCz.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/module/plugins/crypter/MegaRapidCz.py b/module/plugins/crypter/MegaRapidCz.py
deleted file mode 100644
index 86235444b..000000000
--- a/module/plugins/crypter/MegaRapidCz.py
+++ /dev/null
@@ -1,23 +0,0 @@
-# -*- coding: utf-8 -*-
-
-from module.plugins.internal.SimpleCrypter import SimpleCrypter, create_getInfo
-
-
-class MegaRapidCz(SimpleCrypter):
- __name__ = "MegaRapidCz"
- __type__ = "crypter"
- __version__ = "0.02"
-
- __pattern__ = r'http://(?:www\.)?(share|mega)rapid\.cz/slozka/\d+/\w+'
- __config__ = [("use_subfolder", "bool", "Save package to subfolder", True),
- ("subfolder_per_package", "bool", "Create a subfolder for each package", True)]
-
- __description__ = """Share-Rapid.com folder decrypter plugin"""
- __license__ = "GPLv3"
- __authors__ = [("zoidberg", "zoidberg@mujmail.cz")]
-
-
- LINK_PATTERN = r'<td class="soubor"[^>]*><a href="([^"]+)">'
-
-
-getInfo = create_getInfo(MegaRapidCzFolder)