diff options
Diffstat (limited to 'pyload/plugin/internal/UnZip.py')
-rw-r--r-- | pyload/plugin/internal/UnZip.py | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/pyload/plugin/internal/UnZip.py b/pyload/plugin/internal/UnZip.py deleted file mode 100644 index dded6158e..000000000 --- a/pyload/plugin/internal/UnZip.py +++ /dev/null @@ -1,41 +0,0 @@ -# -*- coding: utf-8 -*- - -import sys -import zipfile - -from pyload.plugin.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] |