diff options
| author | 2013-06-09 18:10:22 +0200 | |
|---|---|---|
| committer | 2013-06-09 18:10:23 +0200 | |
| commit | 16af85004c84d0d6c626b4f8424ce9647669a0c1 (patch) | |
| tree | 025d479862d376dbc17e934f4ed20031c8cd97d1 /pyload/plugins/internal/UnZip.py | |
| parent | adapted to jshint config (diff) | |
| download | pyload-16af85004c84d0d6c626b4f8424ce9647669a0c1.tar.xz | |
moved everything from module to pyload
Diffstat (limited to 'pyload/plugins/internal/UnZip.py')
| -rw-r--r-- | pyload/plugins/internal/UnZip.py | 49 | 
1 files changed, 49 insertions, 0 deletions
| diff --git a/pyload/plugins/internal/UnZip.py b/pyload/plugins/internal/UnZip.py new file mode 100644 index 000000000..9aa9ac75c --- /dev/null +++ b/pyload/plugins/internal/UnZip.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- + +""" +    This program is free software; you can redistribute it and/or modify +    it under the terms of the GNU General Public License as published by +    the Free Software Foundation; either version 3 of the License, +    or (at your option) any later version. + +    This program is distributed in the hope that it will be useful, +    but WITHOUT ANY WARRANTY; without even the implied warranty of +    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +    See the GNU General Public License for more details. + +    You should have received a copy of the GNU General Public License +    along with this program; if not, see <http://www.gnu.org/licenses/>. +     +    @author: RaNaN +""" + +import zipfile +import sys + +from module.plugins.internal.AbstractExtractor import AbtractExtractor + +class UnZip(AbtractExtractor): +    __name__ = "UnZip" +    __version__ = "0.1" + +    @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]
\ No newline at end of file | 
