valgur / ncompress

LZW compression and decompression in Python and C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is it possible to write output stream while decompressing?

eddyizm opened this issue · comments

There is currently no way to interleave other operations with decompression. I have been thinking about refactoring the decompression logic into a class instead of a single-shot function to support chunked decompression, but I have not had any need for it so far, so working on this has not been a priority for me.

Ok, I was not seeing it so just wanted to make sure. Definitely a challenge for large files. Thanks for the response!