I have a large zip file that I would like to unzip, without loading all of its bytes into memory (to be done concurrently with fetching the zipped bytes via an http request)
How can this be done from Python?
Note: I am specifically asking about the zip format, not gzip. Questions such as Python unzipping stream of bytes?, although often use the word "zip", appear to be about gzip.