diff options
Diffstat (limited to 'pyload/plugin/crypter/LofCc.py')
-rw-r--r-- | pyload/plugin/crypter/LofCc.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/pyload/plugin/crypter/LofCc.py b/pyload/plugin/crypter/LofCc.py new file mode 100644 index 000000000..f1f4d1680 --- /dev/null +++ b/pyload/plugin/crypter/LofCc.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- + +from pyload.plugin.internal.DeadCrypter import DeadCrypter, create_getInfo + + +class LofCc(DeadCrypter): + __name = "LofCc" + __type = "crypter" + __version = "0.21" + + __pattern = r'http://(?:www\.)?lof\.cc/(.*)' + __config = [] + + __description = """Lof.cc decrypter plugin""" + __license = "GPLv3" + __authors = [("mkaay", "mkaay@mkaay.de")] + + +getInfo = create_getInfo(LofCc) |