summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-06-28 15:19:38 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-06-28 20:23:37 +0200
commitfc70a4b20796db1931eeab653f863683cd766b33 (patch)
tree34a59df4c17d3ace8c922d55941a8dc58c22eb86 /module
parentImproved readme and python system check (diff)
downloadpyload-fc70a4b20796db1931eeab653f863683cd766b33.tar.xz
[Lib] Removed unused Unzip.py
Diffstat (limited to 'module')
-rw-r--r--module/lib/Unzip.py50
1 files changed, 0 insertions, 50 deletions
diff --git a/module/lib/Unzip.py b/module/lib/Unzip.py
deleted file mode 100644
index c04b9abe8..000000000
--- a/module/lib/Unzip.py
+++ /dev/null
@@ -1,50 +0,0 @@
-import zipfile
-import os
-
-class Unzip:
- def __init__(self):
- pass
-
- def extract(self, file, dir):
- if not dir.endswith(':') and not os.path.exists(dir):
- os.mkdir(dir)
-
- zf = zipfile.ZipFile(file)
-
- # create directory structure to house files
- self._createstructure(file, dir)
-
- # extract files to directory structure
- for i, name in enumerate(zf.namelist()):
-
- if not name.endswith('/') and not name.endswith("config"):
- print "extracting", name.replace("pyload/", "")
- outfile = open(os.path.join(dir, name.replace("pyload/", "")), 'wb')
- outfile.write(zf.read(name))
- outfile.flush()
- outfile.close()
-
- def _createstructure(self, file, dir):
- self._makedirs(self._listdirs(file), dir)
-
- def _makedirs(self, directories, basedir):
- """ Create any directories that don't currently exist """
- for dir in directories:
- curdir = os.path.join(basedir, dir)
- if not os.path.exists(curdir):
- os.mkdir(curdir)
-
- def _listdirs(self, file):
- """ Grabs all the directories in the zip structure
- This is necessary to create the structure before trying
- to extract the file to it. """
- zf = zipfile.ZipFile(file)
-
- dirs = []
-
- for name in zf.namelist():
- if name.endswith('/'):
- dirs.append(name.replace("pyload/", ""))
-
- dirs.sort()
- return dirs