# -*- coding: utf-8 -*- from module.plugins.internal.XFSHoster import XFSHoster, create_getInfo class MovReelCom(XFSHoster): __name__ = "MovReelCom" __type__ = "hoster" __version__ = "1.28" __status__ = "testing" __pattern__ = r'http://(?:www\.)?movreel\.com/\w{12}' __config__ = [("activated", "bool", "Activated", True)] __description__ = """MovReel.com hoster plugin""" __license__ = "GPLv3" __authors__ = [("JorisV83", "jorisv83-pyload@yahoo.com")] PLUGIN_DOMAIN = "movreel.com" LINK_PATTERN = r'Download Link' getInfo = create_getInfo(MovReelCom)