openbsd-ports/archivers/py-lzo/pkg/DESCR
benoit 74d25eb325 import py-lzo
py-LZO is a Python module that interface with the LZO library.

LZO is a data compression library which is suitable for data
de-/compression in real-time. This means it favours speed over
compression ratio.

ok ajacoutot@
2009-05-31 21:03:10 +00:00

20 lines
843 B
Plaintext

py-LZO is a Python module that interface with the LZO library.
LZO is a data compression library which is suitable for data
de-/compression in real-time. This means it favours speed over
compression ratio.
LZO implements a number of algorithms with the following features:
+ Decompression is simple and *very* fast.
+ Requires no memory for decompression.
+ Compression is pretty fast.
+ Requires 64 kB of memory for compression.
+ Allows you to dial up extra compression at a speed cost in the
compressor. The speed of the decompressor is not reduced.
+ Includes compression levels for generating pre-compressed data
which achieve a quite competitive compression ratio.
+ There is also a compression level which needs only 8 kB for
compression.
+ Algorithm is thread safe.
+ Algorithm is lossless.