From ce1c2b6b05c08b669357947e61ae40efce7fc50f Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Mon, 16 Feb 2015 10:46:28 +0100 Subject: module temp --- module/plugins/hoster/FileomCom.py | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 module/plugins/hoster/FileomCom.py (limited to 'module/plugins/hoster/FileomCom.py') diff --git a/module/plugins/hoster/FileomCom.py b/module/plugins/hoster/FileomCom.py new file mode 100644 index 000000000..9c379546d --- /dev/null +++ b/module/plugins/hoster/FileomCom.py @@ -0,0 +1,35 @@ +# -*- coding: utf-8 -*- +# +# Test links: +# http://fileom.com/gycaytyzdw3g/random.bin.html + +from pyload.plugin.internal.XFSHoster import XFSHoster, create_getInfo + + +class FileomCom(XFSHoster): + __name__ = "FileomCom" + __type__ = "hoster" + __version__ = "0.05" + + __pattern__ = r'https?://(?:www\.)?fileom\.com/\w{12}' + + __description__ = """Fileom.com hoster plugin""" + __license__ = "GPLv3" + __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] + + + HOSTER_DOMAIN = "fileom.com" + + NAME_PATTERN = r'Filename: (?P.+?)<' + SIZE_PATTERN = r'File Size: (?P[\d.,]+) (?P[\w^_]+)' + + LINK_PATTERN = r'var url2 = \'(.+?)\';' + + + def setup(self): + self.multiDL = True + self.chunkLimit = 1 + self.resumeDownload = self.premium + + +getInfo = create_getInfo(FileomCom) -- cgit v1.2.3