How To Decompress Bytes In Python Using Lzo-1.0.8 ( Python 2.7.9)?
I have a compressed byte array received from network and it is LZO Compressed. I need to decompress it using LZO. I already installed the python-lzo-1.0.8 package for python and I
Solution 1:
You can see how to use it checking out the test suite.
In short:
importlzod= lzo.decompress(lzo_compressed_bytearray)
Post a Comment for "How To Decompress Bytes In Python Using Lzo-1.0.8 ( Python 2.7.9)?"