diff options
Diffstat (limited to 'pyload/plugin/crypter/HotfileCom.py')
-rw-r--r-- | pyload/plugin/crypter/HotfileCom.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pyload/plugin/crypter/HotfileCom.py b/pyload/plugin/crypter/HotfileCom.py new file mode 100644 index 000000000..8fc10cf88 --- /dev/null +++ b/pyload/plugin/crypter/HotfileCom.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- + +from pyload.plugin.internal.DeadCrypter import DeadCrypter + + +class HotfileCom(DeadCrypter): + __name = "HotfileCom" + __type = "crypter" + __version = "0.30" + + __pattern = r'https?://(?:www\.)?hotfile\.com/list/\w+/\w+' + __config = [] + + __description = """Hotfile.com folder decrypter plugin""" + __license = "GPLv3" + __authors = [("RaNaN", "RaNaN@pyload.org")] |