How To Decode .lzo_deflat File?
does anyone have either a command-line or python library that can decode a .lzo_deflate file? These file formats are used by Hadoop, for example.
Solution 1:
Google for Python LZO, and check your linux distribution for lzop
:
Many Linux distributions (e.g. Debian, Ubuntu) will have this:
liblzo2-2 - data compression library
liblzo2-dev - data compression library (development files)
lzop - fast compression program
python-lzo - Python bindings for the LZO data compression library
Solution 2:
For the windows' folks:
- Python Extension Packages for Windows - Christoph Gohlke : http://www.lfd.uci.edu/~gohlke/pythonlibs/#python-lzo
Post a Comment for "How To Decode .lzo_deflat File?"