summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/internal/UnZip.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/internal/UnZip.py')
-rw-r--r--pyload/plugins/internal/UnZip.py41
1 files changed, 0 insertions, 41 deletions
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]