ZipFly
Project description
ZipFly
ZipFly is a zip archive generator based on zipfile.py. It was created to generate very large ZIP archives for immediate sending out to clients, or for writing large ZIP archives without memory inflation.
Requirements
Python 3.6+ Added support for writing to unseekable streams.
Install
pip3 install zipfly
Basic usage, compress on-the-fly during writes
Using this library will save you from having to write the Zip to disk. Some data will be buffered by the zipfile deflater, but memory inflation is going to be very constrained. Data will be written to destination by default at regular 32KB intervals.
ZipFly
defaults attributes:
- paths: [ ]
- mode: (write) w
- chunksize: (bytes) 32768
- compression: Stored
- allowZip64: True
- compresslevel: None
- storesize: (bytes) 0
- encode: utf-8
paths
list of dictionaries:
. | |
---|---|
fs | Should be the path to a file on the filesystem |
n (Optional) | Is the name which it will have within the archive (by default, this will be the same as fs) |
import zipfly
paths = [
{
'fs': '/path/to/large/file'
},
]
zfly = zipfly.ZipFly(paths = paths)
generator = zfly.generator()
print (generator)
# <generator object ZipFly.generator at 0x7f74d52bcc50>
with open("large.zip", "wb") as f:
for i in generator:
f.write(i)
Examples
Streaming multiple files in a zip with Django or Flask Send forth large files to clients with the most popular frameworks
Create paths Easy way to create the array
paths
from a parent folder.
Predict the size of the zip file before creating it Use the
BufferPredictionSize
to compute the correct size of the resulting archive before creating it.
Streaming a large file Efficient way to read a single very large binary file in python
Set a comment Your own comment in the zip file
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file zipfly-6.0.5.tar.gz
.
File metadata
- Download URL: zipfly-6.0.5.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 93c56943dca4bf8a1d7de48a15ca9fa8310ade638f2e2493695853a48448efc0 |
|
MD5 | bc1713cf925a4f713d1511f65e8551ef |
|
BLAKE2b-256 | 649e1a99b30e5e5c99d5f669c6118277d9f34c94a37e20baa2364fd8a15ed7b8 |