summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/FilerNet.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/crypter/FilerNet.py')
-rw-r--r--module/plugins/crypter/FilerNet.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/module/plugins/crypter/FilerNet.py b/module/plugins/crypter/FilerNet.py
deleted file mode 100644
index 054c8d3a7..000000000
--- a/module/plugins/crypter/FilerNet.py
+++ /dev/null
@@ -1,27 +0,0 @@
-import re
-
-from module.plugins.internal.SimpleCrypter import SimpleCrypter
-
-
-class FilerNet(SimpleCrypter):
- __name__ = "FilerNet"
- __type__ = "crypter"
- __version__ = "0.42"
-
- __pattern__ = r'https?://filer\.net/folder/\w{16}'
- __config__ = [("use_subfolder", "bool", "Save package to subfolder", True),
- ("subfolder_per_package", "bool", "Create a subfolder for each package", True)]
-
- __description__ = """Filer.net decrypter plugin"""
- __license__ = "GPLv3"
- __authors__ = [("nath_schwarz", "nathan.notwhite@gmail.com"),
- ("stickell", "l.stickell@yahoo.it")]
-
-
- LINK_PATTERN = r'href="(/get/\w{16})">(?!<)'
-
- NAME_PATTERN = r'<h3>(?P<N>.+?) - <small'
- OFFLINE_PATTERN = r'Nicht gefunden'
-
-
-getInfo = create_getInfo(FilerNetFolder)