Part of twisted.python View Source
| Class | ChunkingZipFile | A ZipFile object which, with readfile(), also gives you access |
| Class | ZipFileEntry | File-like object used to read an uncompressed entry in a ZipFile |
| Class | DeflatedZipFileEntry | File-like object used to read a deflated entry in a ZipFile |
| Function | unzip | Unzip the file |
| Function | unzipIter | Return a generator for the zipfile. This implementation will |
| Function | countZipFileChunks | Predict the number of chunks that will be extracted from the |
| Function | countFileChunks | Undocumented |
| Function | countZipFileEntries | Undocumented |
| Function | unzipIterChunky | Return a generator for the zipfile. This implementation will |
| Parameters | filename | the name of the zip file |
| directory | the directory into which the files will be extracted | |
| overwrite | if on, overwrite files when they exist. You can still get an error if you try to create a directory over a file with the same name or vice-versa. |
Return a generator for the zipfile. This implementation will yield after every file.
The value it yields is the number of files left to unzip.Return a generator for the zipfile. This implementation will yield after every chunksize uncompressed bytes, or at the end of a file, whichever comes first.
The value it yields is the number of chunks left to unzip.