diff options
Diffstat (limited to 'pyload/plugins/crypter/CryptItCom.py')
| -rw-r--r-- | pyload/plugins/crypter/CryptItCom.py | 16 | 
1 files changed, 16 insertions, 0 deletions
diff --git a/pyload/plugins/crypter/CryptItCom.py b/pyload/plugins/crypter/CryptItCom.py new file mode 100644 index 000000000..9ca6f2bc3 --- /dev/null +++ b/pyload/plugins/crypter/CryptItCom.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- + +from pyload.plugins.internal.DeadCrypter import DeadCrypter + + +class CryptItCom(DeadCrypter): +    __name__    = "CryptItCom" +    __type__    = "crypter" +    __version__ = "0.11" + +    __pattern__ = r'http://(?:www\.)?crypt-it\.com/(s|e|d|c)/\w+' +    __config__  = [] + +    __description__ = """Crypt-it.com decrypter plugin""" +    __license__     = "GPLv3" +    __authors__     = [("jeix", "jeix@hasnomail.de")]  | 
