From acc46fc3497a66a427b795b4a22c6e71d69185a1 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Sat, 13 Dec 2014 15:56:57 +0100 Subject: Update --- pyload/plugins/hoster/FileomCom.py | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 pyload/plugins/hoster/FileomCom.py (limited to 'pyload/plugins/hoster/FileomCom.py') diff --git a/pyload/plugins/hoster/FileomCom.py b/pyload/plugins/hoster/FileomCom.py deleted file mode 100644 index 458efec42..000000000 --- a/pyload/plugins/hoster/FileomCom.py +++ /dev/null @@ -1,35 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Test links: -# http://fileom.com/gycaytyzdw3g/random.bin.html - -from pyload.plugins.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