python-zipstream
python-zipstream copied to clipboard
Like Python's ZipFile module, except it works as a generator that provides the file in many small chunks.
Currently the code reads files by 8 Kb chunks: https://github.com/arjan-s/python-zipstream/blob/961886fbb77530515bf6b3f595dd5fd29c1c1c97/zipstream/__init__.py#L310 Would it be beneficial to make it configurable?
If yes, can you provide an example? Any issues?
I have encountered problem with zipping a directory. The issue was that some file has really strange datetime, they seem to be made like 40 years ago, so I made...
Hi, thanks for your contribution. I build a service, which serve a zip file to download, using webpy. I can successfully download the zip file, but I cannot unzip it....
I found all files in archive will contain the full path. Does this support junk path option? Below is similar question but use `zip` command [https://stackoverflow.com/questions/9710141/create-zip-file-and-ignore-directory-structure](url) Many thanks