jd-boyd / python-lzo

Python bindings for the LZO data compression library
GNU General Public License v2.0
74 stars 41 forks source link

Decompressing without loading all the input or output into memory at once #84

Open michalc opened 9 months ago

michalc commented 9 months ago

Is there a way to use python-lzo to decompress lzo streams without loading all the input (or the output) into memory at once?

Nosing around the docs and the source I think the answer is no, but just wanted to check

Thanks!