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/internal/UnZip.py | 41 ---------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 pyload/plugins/internal/UnZip.py (limited to 'pyload/plugins/internal/UnZip.py') diff --git a/pyload/plugins/internal/UnZip.py b/pyload/plugins/internal/UnZip.py deleted file mode 100644 index ea8bcc283..000000000 --- a/pyload/plugins/internal/UnZip.py +++ /dev/null @@ -1,41 +0,0 @@ -# -*- coding: utf-8 -*- - -import sys -import zipfile - -from pyload.plugins.internal.AbstractExtractor import AbtractExtractor - - -class UnZip(AbtractExtractor): - __name = "UnZip" - __version = "0.10" - - __description = """Zip extractor plugin""" - __license = "GPLv3" - __authors = [("RaNaN", "RaNaN@pyload.org")] - - - @staticmethod - def checkDeps(): - return sys.version_info[:2] >= (2, 6) - - - @staticmethod - def getTargets(files_ids): - result = [] - - for file, id in files_ids: - if file.endswith(".zip"): - result.append((file, id)) - - return result - - - def extract(self, progress, password=None): - z = zipfile.ZipFile(self.file) - self.files = z.namelist() - z.extractall(self.out) - - - def getDeleteFiles(self): - return [self.file] -- cgit v1.2.3