summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter
diff options
context:
space:
mode:
authorGravatar guidobelix <guidobelix@hotmail.it> 2014-10-15 02:06:10 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-15 02:06:10 +0200
commit6d45792d15df2c0b9c3481c4854cb7b09c134581 (patch)
treef802a5db22f20c8fffa2c776c9dd582bbefdc25a /module/plugins/crypter
parentNew plugin RapidfileshareNet (account + hoster) (diff)
downloadpyload-6d45792d15df2c0b9c3481c4854cb7b09c134581.tar.xz
New crypter RapidfileshareNetFolder
Diffstat (limited to 'module/plugins/crypter')
-rw-r--r--module/plugins/crypter/RapidfileshareNetFolder.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/module/plugins/crypter/RapidfileshareNetFolder.py b/module/plugins/crypter/RapidfileshareNetFolder.py
new file mode 100644
index 000000000..7f7f85cbd
--- /dev/null
+++ b/module/plugins/crypter/RapidfileshareNetFolder.py
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+
+from module.plugins.internal.SimpleCrypter import SimpleCrypter
+
+
+class RapidfileshareNetFolder(SimpleCrypter):
+ __name__ = "RapidfileshareNetFolder"
+ __type__ = "crypter"
+ __version__ = "0.01"
+
+ __pattern__ = r'http://(?:www\.)?rapidfileshare\.net/users/\w+/\d+/\w+'
+
+ __description__ = """Rapidfileshare.net folder decrypter plugin"""
+ __license__ = "GPLv3"
+ __authors__ = [("guidobelix", "guidobelix@hotmail.it")]
+
+
+ LINK_PATTERN = r'<a href="(.+?)" target="_blank">.+?</a>'
+ TITLE_PATTERN = r'<Title>Files of \w+: ([^<]+) folder<'