summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/hoster/JunocloudMe.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/hoster/JunocloudMe.py')
-rw-r--r--pyload/plugins/hoster/JunocloudMe.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/pyload/plugins/hoster/JunocloudMe.py b/pyload/plugins/hoster/JunocloudMe.py
deleted file mode 100644
index 6aaf81844..000000000
--- a/pyload/plugins/hoster/JunocloudMe.py
+++ /dev/null
@@ -1,28 +0,0 @@
-# -*- coding: utf-8 -*-
-
-from pyload.plugins.internal.XFSHoster import XFSHoster, create_getInfo
-
-
-class JunocloudMe(XFSHoster):
- __name = "JunocloudMe"
- __type = "hoster"
- __version = "0.05"
-
- __pattern = r'http://(?:\w+\.)?junocloud\.me/\w{12}'
-
- __description = """Junocloud.me hoster plugin"""
- __license = "GPLv3"
- __authors = [("guidobelix", "guidobelix@hotmail.it")]
-
-
- HOSTER_DOMAIN = "junocloud.me"
-
- URL_REPLACEMENTS = [(r'//(www\.)?junocloud', "//dl3.junocloud")]
-
- SIZE_PATTERN = r'<p class="request_filesize">Size: (?P<S>[\d.,]+) (?P<U>[\w^_]+)</p>'
-
- OFFLINE_PATTERN = r'>No such file with this filename<'
- TEMP_OFFLINE_PATTERN = r'The page may have been renamed, removed or be temporarily unavailable.<'
-
-
-getInfo = create_getInfo(JunocloudMe)