How to decode a .lzo_deflat file?

Does anyone have either a command line library or a python library that can decode a .lzo_deflate file? These file formats are used, for example, by Hadoop.

0
source share
2 answers

Google for Python LZO and check your linux distribution for lzop :

Many Linux distributions (e.g. Debian, Ubuntu) will have the following:

 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 
+1
source

For Windows users:

0
source

Source: https://habr.com/ru/post/1482021/


All Articles