I am currently using zipfile
to unzip files with Python. However it seems all the data is loaded into memory, which causes some problems with my application.
Is it possible to unzip a zip with Python and not write all its content into the memory?
I am currently using zipfile
to unzip files with Python. However it seems all the data is loaded into memory, which causes some problems with my application.
Is it possible to unzip a zip with Python and not write all its content into the memory?