Skip to content

Asynchronous unzipping of big files with low memory usage in Python

License

Notifications You must be signed in to change notification settings

ueni-ltd/async-unzip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

async-unzip

Asynchronous unzipping of big files with low memory usage in Python Helps with big zip files unpacking (memory usage + buffer_size could be changed). Also, prevents having Asyncio Timeout errors especially in case of many workers using same CPU cores.

From version 0.3.6 module doesn't require, but expect to have aiofile OR aiofiles to be installed for I/O operations. However, aiofile is recommended for linux, just don't forget to install libaio (libaio1) linux module (e.g., apt install -y libaio1 for debian)

from async_unzip.unzipper import unzip
import asyncio

asyncio.run(unzip('tests/test_files/nvidia_me.zip', path='some_dir'))

About

Asynchronous unzipping of big files with low memory usage in Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages