Skip to main content

Fast random access to bzip2 files

Project description

indexed_bzip2

PyPI version Downloads License Build Status

This module provides an IndexedBzip2File class, which can be used to seek inside bzip2 files without having to decompress them first. It's based on an improved version of the bzip2 decoder bzcat from toybox, which was refactored and extended to be able to export an import bzip2 block offsets and seek to them. Seeking inside a block is only emulated, so IndexedBzip2File will only speed up seeking when there are more than one blocks, which should almost always be the cause for archives larger than 1 MB.

Installation

You can simply install it from PyPI:

pip install indexed_bzip3

Usage

Example 1

from indexed_bzip2 import IndexedBzip2File

file = IndexedBzip2File( "example.bz2" )

# You can now use it like a normal file
file.seek( 123 )
data = file.read( 100 )

The first call to seek will ensure that the block offset list is complete and therefore might create them first. Because of this the first call to seek might take a while.

Example 2

The creation of the list of bzip2 blocks can take a while because it has to decode the bzip2 file completely. To avoid this setup when opening a bzip2 file, the block offset list can be exported and imported.

from indexed_bzip2 import IndexedBzip2File

file = IndexedBzip2File( "example.bz2" )
blockOffsets = file.blockOffsets() # can take a while
file.close()

file2 = IndexedBzip2File( "example.bz2" )
blockOffsets = file2.setBlockOffsets( blockOffsets ) # should be fast
file2.seek( 123 )
data = file2.read( 100 )
file2.close()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

indexed_bzip2-0.1.0-cp38-cp38-manylinux2010_x86_64.whl (390.0 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

indexed_bzip2-0.1.0-cp38-cp38-manylinux1_x86_64.whl (292.9 kB view hashes)

Uploaded CPython 3.8

indexed_bzip2-0.1.0-cp38-cp38-manylinux1_i686.whl (277.1 kB view hashes)

Uploaded CPython 3.8

indexed_bzip2-0.1.0-cp37-cp37m-manylinux2010_x86_64.whl (372.7 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

indexed_bzip2-0.1.0-cp37-cp37m-manylinux1_x86_64.whl (295.4 kB view hashes)

Uploaded CPython 3.7m

indexed_bzip2-0.1.0-cp37-cp37m-manylinux1_i686.whl (280.2 kB view hashes)

Uploaded CPython 3.7m

indexed_bzip2-0.1.0-cp36-cp36m-manylinux2010_x86_64.whl (373.0 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

indexed_bzip2-0.1.0-cp36-cp36m-manylinux1_x86_64.whl (296.3 kB view hashes)

Uploaded CPython 3.6m

indexed_bzip2-0.1.0-cp36-cp36m-manylinux1_i686.whl (281.9 kB view hashes)

Uploaded CPython 3.6m

indexed_bzip2-0.1.0-cp35-cp35m-manylinux2010_x86_64.whl (370.1 kB view hashes)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

indexed_bzip2-0.1.0-cp35-cp35m-manylinux1_x86_64.whl (293.3 kB view hashes)

Uploaded CPython 3.5m

indexed_bzip2-0.1.0-cp35-cp35m-manylinux1_i686.whl (279.6 kB view hashes)

Uploaded CPython 3.5m

indexed_bzip2-0.1.0-cp34-cp34m-manylinux2010_x86_64.whl (371.6 kB view hashes)

Uploaded CPython 3.4m manylinux: glibc 2.12+ x86-64

indexed_bzip2-0.1.0-cp34-cp34m-manylinux1_x86_64.whl (289.1 kB view hashes)

Uploaded CPython 3.4m

indexed_bzip2-0.1.0-cp34-cp34m-manylinux1_i686.whl (278.6 kB view hashes)

Uploaded CPython 3.4m

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page