I am sure of the answer, but I would like someone to confirm this.
It is not possible to unzip only part of the file when gzip is used in HTTP headers. I have to download the whole file before being able to unzip it to get the data.
Right?
For example, if I get the first 100 bytes with some code:
myfile.read(100)
I cannot unzip it at this moment.
Thanks.
source share