summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/crypter/JunocloudMe.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/crypter/JunocloudMe.py')
-rw-r--r--pyload/plugins/crypter/JunocloudMe.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/pyload/plugins/crypter/JunocloudMe.py b/pyload/plugins/crypter/JunocloudMe.py
new file mode 100644
index 000000000..3036be616
--- /dev/null
+++ b/pyload/plugins/crypter/JunocloudMe.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+
+from pyload.plugins.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"