# -*- coding: utf-8 -*- from pyload.plugins.internal.DeadCrypter import DeadCrypter, create_getInfo class DuploadOrg(DeadCrypter): __name = "DuploadOrg" __type = "crypter" __version = "0.02" __pattern = r'http://(?:www\.)?dupload\.org/folder/\d+' __config = [] __description = """Dupload.org folder decrypter plugin""" __license = "GPLv3" __authors = [("stickell", "l.stickell@yahoo.it")] getInfo = create_getInfo(DuploadOrg)