diff options
Diffstat (limited to 'module')
| -rw-r--r-- | module/plugins/crypter/RapidfileshareNetFolder.py | 19 | 
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<' | 
