# -*- coding: utf-8 -*- # # Test links: # http://novafile.com/vfun4z6o2cit # http://novafile.com/s6zrr5wemuz4 from pyload.plugin.internal.XFSHoster import XFSHoster, create_getInfo class NovafileCom(XFSHoster): __name = "NovafileCom" __type = "hoster" __version = "0.05" __pattern = r'http://(?:www\.)?novafile\.com/\w{12}' __description = """Novafile.com hoster plugin""" __license = "GPLv3" __authors = [("zoidberg", "zoidberg@mujmail.cz"), ("stickell", "l.stickell@yahoo.it")] HOSTER_DOMAIN = "novafile.com" SIZE_PATTERN = r'
)?(.*?)\s*' LINK_PATTERN = r'Download File' WAIT_PATTERN = r'
Please wait ]*>(\d+) seconds
' getInfo = create_getInfo(NovafileCom)