summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/crypter/SharingmatrixCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/crypter/SharingmatrixCom.py')
-rw-r--r--pyload/plugins/crypter/SharingmatrixCom.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/pyload/plugins/crypter/SharingmatrixCom.py b/pyload/plugins/crypter/SharingmatrixCom.py
new file mode 100644
index 000000000..28906ae7b
--- /dev/null
+++ b/pyload/plugins/crypter/SharingmatrixCom.py
@@ -0,0 +1,15 @@
+# -*- coding: utf-8 -*-
+
+from pyload.plugins.internal.DeadCrypter import DeadCrypter
+
+
+class SharingmatrixCom(DeadCrypter):
+ __name__ = "SharingmatrixCom"
+ __type__ = "crypter"
+ __version__ = "0.01"
+
+ __pattern__ = r'http://(?:www\.)?sharingmatrix\.com/folder/\w+'
+
+ __description__ = """Sharingmatrix.com folder decrypter plugin"""
+ __license__ = "GPLv3"
+ __authors__ = [("zoidberg", "zoidberg@mujmail.cz")]