You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a large .gz file with many (hundreds of thousands) individual archives in the one file.
Using GZDecoder works on this, for the first archive. Using MultiGZDecoder works, allowing me to produce one big string with data from all archives.
Since the archives are to be processed individually, and because it is hard to split the parts of data once they are all in one big string, I would like to produce something like an iterator of strings, one per archive. Is this possible currently? If not, is it something that is easy to build on top of flate2?
Thanks!
The text was updated successfully, but these errors were encountered:
I think you'd probably want to see how MultiGzDecoder works internally and probably copy that externally. I don't think it would be too too hard to set up though!
Hi,
I have a large .gz file with many (hundreds of thousands) individual archives in the one file.
Using GZDecoder works on this, for the first archive. Using MultiGZDecoder works, allowing me to produce one big string with data from all archives.
Since the archives are to be processed individually, and because it is hard to split the parts of data once they are all in one big string, I would like to produce something like an iterator of strings, one per archive. Is this possible currently? If not, is it something that is easy to build on top of flate2?
Thanks!
The text was updated successfully, but these errors were encountered: