Library for indexing LZO compressed files
Project description
Python library for indexing block offsets within LZO compressed files. The implementation is largely based on that of the Hadoop Library. Index files are used to allow Hadoop to split a single file compressed with LZO into several chunks for parallel processing.
Since LZO is a block based compression algorithm, we can split the file along the lines of blocks and decompress each block on it’s own. The index is a file containing byte offsets for each block in the original LZO file.
This library is python3 fork of python-lzo-indexer.
Example
The python code below demonstrates how easy it is to index an LZO file. This library also supports indexing a string, and a method to return the individual block offsets should you need to create a file of your own format.
import lzo_indexer
with open("my-file.lzo", "r") as f, open("my-file.lzo.index", "rw") as index:
lzo_indexer.index_lzo_file(f, index)
Command-line Utility
This library also includes a utility for indexing multiple lzo files, using the python indexer. This is a much faster alternative to the command line utility built into the hadoop-lzo library as it avoids the JVM.
$ lzo_indexer --help Usage: lzo_indexer [OPTIONS] <files to index> Tool for indexing LZO compressed files Options: -t, --threads INTEGER Processing threads count -e, --extension TEXT Index file extension -f, --force Force re-creation of an index even if it exists -h, --help Show this message and exit.
Contributions
I welcome any contributions, though I request that any pull requests come with test coverage.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for python3_lzo_indexer-0.2.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 953920e652fcad59af345041ba611d36a2827e2414153377d733c2f75db6cdd5 |
|
MD5 | 36e63e9d519f884c765d517befa2fa20 |
|
BLAKE2b-256 | da6d591be906635d4e2cb9b31c3851a50ed75ae3ac735ea021051bdee68a6e2a |
Hashes for python3_lzo_indexer-0.2.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 769d7bf8a6eb9144446a0b8c261317598cf1c1f6f65b4888f8af68ec40e20b51 |
|
MD5 | 2bd4a875302dd4c7af110afb622a278d |
|
BLAKE2b-256 | 3d89c598e10c5c4602928c93eecc6950ba096b60e81a60ac4f8ed2a2234323bc |