Asynchronous Zipfile generator that takes input files as well as streams
Project description
python-zipstream-aio
zipstream.py is a zip archive generator based on python 3.3's zipfile.py. It was created to generate a zip file generator for streaming (ie web apps). This is beneficial for when you want to provide a downloadable archive of a large collection of regular files, which would be infeasible to generate the archive prior to downloading or of a very large file that you do not want to store entirely on disk or on memory.
The archive is generated as an iterator of strings, which, when joined, form the zip archive. For example, the following code snippet would write a zip archive containing files from 'path' to a normal file:
import asynczipstream
import asyncio
async def main():
z = asynczipstream.ZipFile()
z.write('path/to/files')
with open('zipfile.zip', 'wb') as f:
async for data in z:
f.write(data)
asyncio.run(main())
zipstream also allows to take as input a byte string iterable and to generate the archive as an iterator. This avoids storing large files on disk or in memory. To do so you could use something like this snippet:
import asynczipstream
import asyncio
async def main():
async def iterable():
for _ in range(10):
yield b'this is a byte string\x01\n'
z = asynczipstream.ZipFile()
z.write_iter('my_archive_iter', iterable())
with open('zipfile.zip', 'wb') as f:
async for data in z:
f.write(data)
asyncio.run(main())
Of course both approach can be combined:
import asynczipstream
import asyncio
async def main():
async def iterable():
for _ in range(10):
yield b'this is a byte string\x01\n'
z = asynczipstream.ZipFile()
z.write('path/to/files', 'my_archive_files')
z.write_iter('my_archive_iter', iterable())
with open('zipfile.zip', 'wb') as f:
async for data in z:
f.write(data)
asyncio.run(main())
If the zlib module is available, asynczipstream.ZipFile can generate compressed zip archives.
Installation
pip install asynczipstream
Requirements
- Python 3.8+
aiohttp Example
from aiohttp import web, hdrs
import asynczipstream
async def handle_license(request):
"""
Example with file from disk
"""
filename = "license.zip"
response = web.StreamResponse(
status=200,
headers={
hdrs.CONTENT_TYPE: "application/octet-stream",
hdrs.CONTENT_DISPOSITION: (f"attachment; " f'filename="{filename}"; '),
},
)
await response.prepare(request)
z = asynczipstream.ZipFile()
z.write('LICENSE')
async for data in z:
await response.write(data)
return response
async def handle_readme(request):
"""
Example with file from iterable object
"""
filename = "readme.zip"
response = web.StreamResponse(
status=200,
headers={
hdrs.CONTENT_TYPE: "application/octet-stream",
hdrs.CONTENT_DISPOSITION: (f"attachment; " f'filename="{filename}"; '),
},
)
await response.prepare(request)
async def iterable(filename):
with open(filename, "rb") as f:
yield f.readline()
z = asynczipstream.ZipFile()
z.write_iter('README.md', iterable("README.md"))
async for data in z:
await response.write(data)
return response
app = web.Application()
app.add_routes([web.get('/license', handle_license),web.get('/readme', handle_readme)])
if __name__ == '__main__':
web.run_app(app)
Running tests
Just run the following command: python -m unittest discover
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
Built Distribution
File details
Details for the file asynczipstream-1.0.1.tar.gz
.
File metadata
- Download URL: asynczipstream-1.0.1.tar.gz
- Upload date:
- Size: 22.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 800fa0d9849e8ea46dcac8f283b0efe70d86e0f5a7c441c1896a068b94c3c2ed |
|
MD5 | 775268349512c40af8e755fa254a0d1d |
|
BLAKE2b-256 | dfc43d094bc654226c0a7eac6c519d75e819e8743458a8e7dbb4b1d00d932f4e |
File details
Details for the file asynczipstream-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: asynczipstream-1.0.1-py3-none-any.whl
- Upload date:
- Size: 20.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a57f78fb36054450f57472f3f10b3b15ba93cd2547a0055a1e7b08a78f82674d |
|
MD5 | 9b3c5e485774fdaa28afe432b30c9664 |
|
BLAKE2b-256 | 12ae83f33d0c5e02d223115ceeea4c9f4041b57000ba2f0815da692a7464d75c |