diff options
Diffstat (limited to 'pyload/plugins/crypter/FilesonicCom.py')
-rw-r--r-- | pyload/plugins/crypter/FilesonicCom.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pyload/plugins/crypter/FilesonicCom.py b/pyload/plugins/crypter/FilesonicCom.py new file mode 100644 index 000000000..7e436440d --- /dev/null +++ b/pyload/plugins/crypter/FilesonicCom.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- + +from module.plugins.internal.DeadCrypter import DeadCrypter, create_getInfo + + +class FilesonicCom(DeadCrypter): + __name__ = "FilesonicCom" + __type__ = "crypter" + __version__ = "0.12" + + __pattern__ = r'http://(?:www\.)?filesonic\.com/folder/\w+' + + __description__ = """Filesonic.com folder decrypter plugin""" + __license__ = "GPLv3" + __authors__ = [("zoidberg", "zoidberg@mujmail.cz")] + + +getInfo = create_getInfo(FilesonicCom) |