# -*- coding: utf-8 -*- from module.plugins.hoster.FileserveCom import FileserveCom, checkFile from module.plugins.Plugin import chunks class UploadStationCom(FileserveCom): __name__ = "UploadStationCom" __type__ = "hoster" __pattern__ = r"http://(?:www\.)?uploadstation\.com/file/(?P[A-Za-z0-9]+)" __version__ = "0.51" __description__ = """UploadStation.Com File Download Hoster""" __author_name__ = ("fragonib", "zoidberg") __author_mail__ = ("fragonib[AT]yahoo[DOT]es", "zoidberg@mujmail.cz") URLS = ['http://www.uploadstation.com/file/', 'http://www.uploadstation.com/check-links.php', 'http://www.uploadstation.com/checkReCaptcha.php'] LINKCHECK_TR = r'
(.*?)\t{9}
' LINKCHECK_TD = r'
(?:<[^>]*>| )*([^<]*)' LONG_WAIT_PATTERN = r'

You have to wait (\d+) (\w+) to download the next file\.

' def getInfo(urls): for chunk in chunks(urls, 100): yield checkFile(UploadStationCom, chunk)