summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/crypter/JunocloudMe.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugin/crypter/JunocloudMe.py')
-rw-r--r--pyload/plugin/crypter/JunocloudMe.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/pyload/plugin/crypter/JunocloudMe.py b/pyload/plugin/crypter/JunocloudMe.py
new file mode 100644
index 000000000..b47a5fc58
--- /dev/null
+++ b/pyload/plugin/crypter/JunocloudMe.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+
+from pyload.plugin.internal.XFSCrypter import XFSCrypter
+
+
+class JunocloudMe(XFSCrypter):
+ __name = "JunocloudMe"
+ __type = "crypter"
+ __version = "0.03"
+
+ __pattern = r'http://(?:www\.)?junocloud\.me/folders/(?P<ID>\d+/\w+)'
+ __config = [("use_subfolder", "bool", "Save package to subfolder", True),
+ ("subfolder_per_package", "bool", "Create a subfolder for each package", True)]
+
+ __description = """Junocloud.me folder decrypter plugin"""
+ __license = "GPLv3"
+ __authors = [("guidobelix", "guidobelix@hotmail.it")]
+
+
+ HOSTER_DOMAIN = "junocloud.me"