Fast random access to bzip2 files
Project description
indexed_bzip2
This module provides an IndexedBzip2File class, which can be used to seek inside bzip2 files without having to decompress them first.
Alternatively, you can use this simply as a parallelized bzip2 decoder as a replacement for Python's builtin bz2
module in order to fully utilize all your cores.
On a 12-core processor, this can lead to a speedup of 6 over Python's bz2
module, see this example.
Note that without parallelization, indexed_bzip2
is unfortunately slower than Python's bz2
module.
Therefore, it is not recommended when neither seeking nor parallelization is used!
The internals are based on an improved version of the bzip2 decoder bzcat from toybox, which was refactored and extended to be able to export and import bzip2 block offsets, seek to block offsets, and to add support for threaded parallel decoding of blocks.
Seeking inside a block is only emulated, so IndexedBzip2File will only speed up seeking when there are more than one block, which should almost always be the cause for archives larger than 1 MB.
Since version 1.2.0, parallel decoding of blocks is supported!
However, per default, the older serial implementation is used.
To use the parallel implementation you need to specify a parallelization
argument other than 1 to IndexedBzip2File
, see e.g. this example.
Installation
You can simply install it from PyPI:
python3 -m pip install --upgrade pip # Recommended for newer manylinux wheels
python3 -m pip install indexed_bzip2
Usage Examples
Simple open, seek, read, and close
from indexed_bzip2 import IndexedBzip2File
file = IndexedBzip2File( "example.bz2", parallelization = os.cpu_count() )
# You can now use it like a normal file
file.seek( 123 )
data = file.read( 100 )
file.close()
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.
Use with context manager
import os
import indexed_bzip2 as ibz2
with ibz2.open( "example.bz2", parallelization = os.cpu_count() ) as file:
file.seek( 123 )
data = file.read( 100 )
Storing and loading the block offset map
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.
import indexed_bzip2 as ibz2
import pickle
# Calculate and save bzip2 block offsets
file = ibz2.open( "example.bz2", parallelization = os.cpu_count() )
block_offsets = file.block_offsets() # can take a while
# block_offsets is a simple dictionary where the keys are the bzip2 block offsets in bits(!)
# and the values are the corresponding offsets in the decoded data in bytes. E.g.:
# block_offsets = {32: 0, 14920: 4796}
with open( "offsets.dat", 'wb' ) as offsets_file:
pickle.dump( block_offsets, offsets_file )
file.close()
# Load bzip2 block offsets for fast seeking
with open( "offsets.dat", 'rb' ) as offsets_file:
block_offsets = pickle.load( offsets_file )
file2 = ibz2.open( "example.bz2", parallelization = os.cpu_count() )
file2.set_block_offsets( block_offsets ) # should be fast
file2.seek( 123 )
data = file2.read( 100 )
file2.close()
Open a pure Python file-like object for indexed reading
import io
import os
import indexed_bzip2 as ibz2
with open( "example.bz2", 'rb' ) as file:
in_memory_file = io.BytesIO( file.read() )
with ibz2.open( in_memory_file, parallelization = os.cpu_count() ) as file:
file.seek( 123 )
data = file.read( 100 )
Comparison with bz2 module
These are simple timing tests for reading all the contents of a bzip2 file sequentially.
import bz2
import time
with bz2.open( bz2FilePath ) as file:
t0 = time.time()
while file.read( 4*1024*1024 ):
pass
t1 = time.time()
print( f"Decoded file in {t1-t0}s" )
The usage of indexed_bzip2 is slightly different:
import indexed_bzip2
import time
# parallelization = 0 means that it is automatically using all available cores.
with indexed_bzip2.IndexedBzip2File( bz2FilePath, parallelization = 0 ) as file:
t0 = time.time()
while file.read( 4*1024*1024 ):
pass
t1 = time.time()
print( f"Decoded file in {t1-t0}s" )
Results for an AMD Ryzen 3900X 12-core (24 virtual cores) processor and with bz2FilePath=CTU-13-Dataset.tar.bz2
, which is a 2GB bz2 compressed archive.
Module | Runtime / s |
---|---|
bz2 | 414 |
indexed_bzip2 with parallelization = 0 | 69 |
indexed_bzip2 with parallelization = 1 | 566 |
indexed_bzip2 with parallelization = 2 | 315 |
indexed_bzip2 with parallelization = 6 | 123 |
indexed_bzip2 with parallelization = 12 | 79 |
indexed_bzip2 with parallelization = 24 | 70 |
indexed_bzip2 with parallelization = 32 | 69 |
The speedup between the bz2
module and indexed_bzip2
with parallelization = 0
is 414/69 = 6.
When using only one core, indexed_bzip2
is slower by (566-414)/414 = 37%.
Internal Architecture
The parallelization of the bzip2 decoder and adding support to read from Python file-like objects required a lot of work to design an architecture which works and can be reasoned about.
An earlier architecture was discarded because it became to monolithic.
That discarded one was able to even work with piped non-seekable input, with which the current parallel architecture does not work with yet.
The serial BZ2Reader
still exists but is not shown in the class diagram because it is deprecated and will be removed some time in the future after the ParallelBZ2Reader
has proven itself.
Click here or the image to get a larger image and here to see an SVG version.
Tracing the decoder
Performance profiling and tracing is done with Score-P for instrumentation and Vampir for visualization. This is one way, you could install Score-P with most of the functionalities on Debian 10.
# Install PAPI
wget http://icl.utk.edu/projects/papi/downloads/papi-5.7.0.tar.gz
tar -xf papi-5.7.0.tar.gz
cd papi-5.7.0/src
./configure
make -j
sudo make install
# Install Dependencies
sudo apt-get install libopenmpi-dev openmpi gcc-8-plugin-dev llvm-dev libclang-dev libunwind-dev libopen-trace-format-dev otf-trace
# Install Score-P (to /opt/scorep)
wget https://www.vi-hps.org/cms/upload/packages/scorep/scorep-6.0.tar.gz
tar -xf scorep-6.0.tar.gz
cd scorep-6.0
./configure --with-mpi=openmpi --enable-shared
make -j
make install
# Add /opt/scorep to your path variables on shell start
cat <<EOF >> ~/.bashrc
if test -d /opt/scorep; then
export SCOREP_ROOT=/opt/scorep
export PATH=$SCOREP_ROOT/bin:$PATH
export LD_LIBRARY_PATH=$SCOREP_ROOT/lib:$LD_LIBRARY_PATH
fi
EOF
# Check whether it works
scorep --version
scorep-info config-summary
# Actually do the tracing
cd tools
bash trace.sh
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Hashes for indexed_bzip2-1.3.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9fe18606b3e2cb2082eb46ee510b17377d1923c398c30887425c4056392ed93d |
|
MD5 | c0fcfb35a3953d378b50f01217f1717e |
|
BLAKE2b-256 | cb2c8ff5b076d96ceae13659595bae01a7d2e3e27ce0b605d77a975b76dc4646 |
Hashes for indexed_bzip2-1.3.0-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5239359f8756bba98c28c4d2b4296c9973a50f94ddf47f9e44740eec9e88ba97 |
|
MD5 | 48b14c09612bda65089899f03620c9ce |
|
BLAKE2b-256 | 3ce729625b29db1bc40ca3034fee85024ddae607c4d7f7505b7c03bbb3ef3e68 |
Hashes for indexed_bzip2-1.3.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ecc0781df1ecbbe01218f325b6021875ca2cae12d203148bc29491d9766ce1cd |
|
MD5 | 4ecd79ffd89659834639b50c0bcd21d4 |
|
BLAKE2b-256 | c97fa608c7332a1dc428707571eb44e9b0ed8dccdf1ae9c8cec4e41f888a5541 |
Hashes for indexed_bzip2-1.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 56ae550eeae4e25152857d8dd1290008dc5d34a283207a1cab02d7a8aec592f5 |
|
MD5 | 1e06bb51495d69ecce05ca9d876e637e |
|
BLAKE2b-256 | f4588fc97e5bbd81f1742ea17b05df6defe774ded86f9c8db05e593132f43f98 |
Hashes for indexed_bzip2-1.3.0-cp310-cp310-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb4eedb5bce4e1d1b9f4e2eb1d4e7d519ee287a8bc6dc569dfa97513233a801c |
|
MD5 | e081aafbcfa29a2da9fd36c2dd4194af |
|
BLAKE2b-256 | 8ba1c03d6eae615abc7a427f88d678d414b9ef2633ccc85cecabcbb9842fc9f4 |
Hashes for indexed_bzip2-1.3.0-cp310-cp310-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d4b422d8694d7976c449084b5ca314f8247c038474d26c513ece1ade3d08e67 |
|
MD5 | 13a5afab8d918f6cc6c6e8a98ea0485b |
|
BLAKE2b-256 | 5064e3817852736b82c42d24bed5e2c265ba17c23f3ac9390cddd254018b6b30 |
Hashes for indexed_bzip2-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f8604b7a73fa52f1754d29070a7705a41a5722dfba893ce42551d1d55c411b4 |
|
MD5 | 45b408b5c2ad4edfadab8e25cda29a06 |
|
BLAKE2b-256 | 958591bb31cb4d641a1407bef5cb0c37a0f6a606dac050ce4f4f1c2f74f973fb |
Hashes for indexed_bzip2-1.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 433defadc759e66419fcca971a6e7631ab1c373c9b77cc614c9c4b9685fbd798 |
|
MD5 | feda4eb1b7386ae69062a28a0d3b1505 |
|
BLAKE2b-256 | dbcb2be06fa3a6d3b917c187db036aa48cb5d9e59b275071b5b0e97f39761700 |
Hashes for indexed_bzip2-1.3.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e186de4eb1628e09f3465937b4164d68bebcfa483d7c49e990d7b55c00e7e7d4 |
|
MD5 | 31e01d48d27c50db1fa4641921edd9c3 |
|
BLAKE2b-256 | b7717c0774b9f2ab379cab4ca1b355f0795e9eda616a50a12a4bc85e33f04272 |
Hashes for indexed_bzip2-1.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31b91c1dc0b908ee4b748dbd706e092b22cbdb8b1d0aa10d03a8b5540272507f |
|
MD5 | c9bf0277477100aec1f8a624c4cb7f55 |
|
BLAKE2b-256 | 5472f952b80e06255dd01723701737847b13bbf1ba536846d4f9602f08545ff8 |
Hashes for indexed_bzip2-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ba0dafc41b6dd147586e5336aa458e139599cad05bc3d99a2b48b5fe7a3cb16 |
|
MD5 | 0892cb0a8376a5401ce0d2ce7ddc0c65 |
|
BLAKE2b-256 | 21ebd987709e9298440063f9afc7155fcde3117d7a7ec490684e337791657b18 |
Hashes for indexed_bzip2-1.3.0-cp39-cp39-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 81f2d8defcb4a1269d35d13d2d98a3bc4d606c5aad57c77d8b88adc899134397 |
|
MD5 | 84082c3dadbb48ea50766f5392328b7a |
|
BLAKE2b-256 | 950d4e7a39d325625911a734e8dde51ffd7633dcc940a2ac3a084d2f322aaf78 |
Hashes for indexed_bzip2-1.3.0-cp39-cp39-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f64b187a2e5485e9cc0115bab6e1b110bf5a6ee32076a6054bd6d7799a7cd97 |
|
MD5 | 0c896a3c6e901d72390e31619b9e1c65 |
|
BLAKE2b-256 | 0f44f15f9a718a86e68c2e60c9b80a00ef30a6766ca21be911f0444db684c1de |
Hashes for indexed_bzip2-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5afe72ecc4e6d2f70205db197d1101f3ee8b52f98f1c34e21d9713c785bce5a |
|
MD5 | 595509cdd7865115370049ef9bb9d030 |
|
BLAKE2b-256 | 62b1ca8d0e7993379317fecec999174c074025338251bf3cf6bfa35b12a8fd3c |
Hashes for indexed_bzip2-1.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 131b229b676d465920f32ed11c20e447713d4d7ea23b4c27957d5a22432adb2b |
|
MD5 | 138534d4d00d5b33fe1ad383fec9d110 |
|
BLAKE2b-256 | bb40ec1f823a61fd605731bb0733c226d3c89f4b16bf09a4d0443b8a42daa6e1 |
Hashes for indexed_bzip2-1.3.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 57b10e1ee35e966dc1e192f66f6114e444299149337951ff09704c717adf3211 |
|
MD5 | d076e2ba7cf772e29c35e20b78880af6 |
|
BLAKE2b-256 | 692373726534bca8a26bb8840b76cb3333439cee9f42c0d86bec807247dc991e |
Hashes for indexed_bzip2-1.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6cd89f839c3e3aa98067ee2b4bc978b22497d1c687e563fd2942d6fc05c65837 |
|
MD5 | d5944940b4ca92f988a35b1c669ff16c |
|
BLAKE2b-256 | db769ed70c8641c306d0c2694a051fad239b021a3307b5e4b045a6064325015c |
Hashes for indexed_bzip2-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd92b3080d8730f3c15b57e56b6f9cce15801d69c3d00cd89413d4e93e68b7ef |
|
MD5 | 584c738994881d9d65c31abc4567ad9c |
|
BLAKE2b-256 | 0175e73f1c0df810c7c634b44b0b95297088e4eeda60de107fcb9e5a7f41dde5 |
Hashes for indexed_bzip2-1.3.0-cp38-cp38-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9502c1037308379694518cd47c6911c6b94e0eee07bc32a4b509f2e6b40cf623 |
|
MD5 | ee95790be5870297a6496cc964f8c959 |
|
BLAKE2b-256 | 6eeccc622d02a393fbd6002ce76dbbc470de47e73dc70d00459358a2d5429020 |
Hashes for indexed_bzip2-1.3.0-cp38-cp38-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b542f2c4289ae0e232151fe32920fa4e723a80e03338a4621fd83cbca63b07e0 |
|
MD5 | 2dc0893aac6fd54f43e42c856e8c5ac4 |
|
BLAKE2b-256 | 669bb5d55ecb011c8e6ae80f2e011db41e3c85335c0d966329a0c15ee8c7b5a9 |
Hashes for indexed_bzip2-1.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 294241ed17f22a52ae4fdcccc26e190396a5795e25b7a36d593296a143036aa0 |
|
MD5 | 58816efa41c120f49a62318f96a2daea |
|
BLAKE2b-256 | 6c33230e4d36229631c6db1c24ac22bbefef408efd97a236549b0c680236fd3d |
Hashes for indexed_bzip2-1.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d54a181d00d54a611f667068588d2d8b1f76be48f5bf7aeaab429749140411bb |
|
MD5 | 123940592474a9ef4a575aaab996e40e |
|
BLAKE2b-256 | 584e883848c125fecf966d8218daf74bf6d60f75cf8d9dc11d1eb24372bc51a2 |
Hashes for indexed_bzip2-1.3.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a694e486978f4ba06cc189dee7af2542a73b8b2b8a29e080ce562b72966a8723 |
|
MD5 | f5ee65e5590a155581c4721fbd9371d9 |
|
BLAKE2b-256 | cfaf81c3a40151aab7cf51557de9ac88670f7bf2b73c6d936c9dd46e466b36e3 |
Hashes for indexed_bzip2-1.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f8da22b52d0c25c96442d06b831da163dff97f38943f297678e4c69f92a41401 |
|
MD5 | 6c5da11e7fe7ba538b4717167f538232 |
|
BLAKE2b-256 | c075531e89c3243ece158c9a153b65c9b135f87d03fb892d56e018badb931a30 |
Hashes for indexed_bzip2-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 804dc71db28b0009bad6189aac822c22a1f8e946c05783a2e646058e366042e5 |
|
MD5 | 00f86580d4c7c189710a9d038aac2f83 |
|
BLAKE2b-256 | 59e82878d1bd86a39a16c18ab94beccf0ed5d69703e2ad6c8ed95052f6b8563a |
Hashes for indexed_bzip2-1.3.0-cp37-cp37m-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe2539f5baea3b4107418a4896b244d6cbbb39c00d35d119ac838c3d489135d9 |
|
MD5 | 492f60e48ba6c911afef9699abf4b773 |
|
BLAKE2b-256 | e56ba5ed65ac77e6de5cd74737c709a1eb18d671fbf865812693404b7cb508e0 |
Hashes for indexed_bzip2-1.3.0-cp37-cp37m-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b713cd9610b11b728c4801a79a94c5567a5c43c1a3aec1ee33999ba9ba8b2be |
|
MD5 | bfc1ad480b71c7925364fd902c4de41f |
|
BLAKE2b-256 | 21fea5f9b788edea0f31be39d2c5bb6218932a9ab61c43a51ef9f6495ba8b181 |
Hashes for indexed_bzip2-1.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 080318dcca8b0f5179b72199bd5bede273cb19eeb2a59484a9b1b08a1dbe5c17 |
|
MD5 | 53b26850ed4ce9c8b723974de0a5d37e |
|
BLAKE2b-256 | 4e2ad76e923ee725880e907a563c6ffbac62547f808e169c0975f79ab2accb63 |
Hashes for indexed_bzip2-1.3.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03571f706f300b0fa4dc937c1191336108a84e522005f68127f606eb9e7c9ee4 |
|
MD5 | d317b4b397cb6d0af307381ea14653a0 |
|
BLAKE2b-256 | 10216180b1a3655bc25703d8b6daa66e7be1a31060abbc651bd55c592412cf56 |
Hashes for indexed_bzip2-1.3.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7aad72c406ce2cf748cfa1c054ab782d93c9ae38f81bfc05191c450c22bcc364 |
|
MD5 | 9ba5fdb735db02dd3088df565f9cabcf |
|
BLAKE2b-256 | 9737d5d4d0526f1e08ff9766e831dbf6fd65eb78989fdb428397c1993eddafda |
Hashes for indexed_bzip2-1.3.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7026ce436b9b78e1e2e5088d458491f627a1f2251cf320b8b1ef38e4455e0c2 |
|
MD5 | 233e75b52463c13c446d6775f962033f |
|
BLAKE2b-256 | 2d2e705e499fa332847fa3b9baaa351ca90a7ac46d2ceab5aa6a76a20bc6fb1f |
Hashes for indexed_bzip2-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c800fc735c91dcd3e15d2af8175f5267af189f44c7f306482102c99a544c197 |
|
MD5 | 83fbc1eda9f3c7d9d1debcaef7292579 |
|
BLAKE2b-256 | 89ece6b71f2148f016536444b7de5a9af19670139a53736062e9e50741576eab |
Hashes for indexed_bzip2-1.3.0-cp36-cp36m-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff4fec207c692fa51831c5d403b6c8e4e696903620aede2b7dd801b9d0f16251 |
|
MD5 | d4ab5f12d9cad7e6ea593a3049eeae18 |
|
BLAKE2b-256 | 0d38a096f2cfe90b1cab958d5f545f3894b0c56fd3ca2640fa9a3c230dd00189 |
Hashes for indexed_bzip2-1.3.0-cp36-cp36m-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e5b519da9f933be4e0288e42397174bf62c625c1d038c4705361fad609960ea |
|
MD5 | e06fa33f09917c47380caafd9c963e9b |
|
BLAKE2b-256 | 3c305d46eb084ad739e7ad85dbd6cffadcf011b5e1022460b5498840ae96762e |
Hashes for indexed_bzip2-1.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55bc4f83ddfdd14a3dd8ef50c157a5357288146e6ccdcef29ce6f6447e3adee1 |
|
MD5 | de5369a4212ab4368fa6714d1919504d |
|
BLAKE2b-256 | 1877e0da10a90445f14fb9de6dbd09d4e6440c47a2743fe5488e3adb3239a5b6 |
Hashes for indexed_bzip2-1.3.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7cf232b842601c020dab6a7d08b4183f183458e3e37e75e2936659a71c8d0213 |
|
MD5 | 055f46fc7cad2cc7a0e768b8dda956e7 |
|
BLAKE2b-256 | c03e43777bc1ce4158f04b3813c3016b1199a05c097420d644c39f712db5b1da |
Hashes for indexed_bzip2-1.3.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8f4ae188d202805d5e17d810f3fc79edeefb89f7bc271770ad8f2614de389e4 |
|
MD5 | 04c14d281c01c98984bda9169d2afa73 |
|
BLAKE2b-256 | a12600cb8472b738e80adff74deec97936b63ecbf4ee39132f1ae60f674d5dbc |
Hashes for indexed_bzip2-1.3.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8397c980b69de084bb601f1fb157a2b74ddcbf9ab6a42afddeabf1d734a0f41e |
|
MD5 | afff2e78238df64c15b216e64abe9cf3 |
|
BLAKE2b-256 | 0a7cacd2886a0fd31e74c191faa4bcc32c9d72aa355b907f997d300bfd90d686 |
Hashes for indexed_bzip2-1.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e53b1297534b2198413fae20465ccfec1bf94893f59c0acf676dafc7d5311d6 |
|
MD5 | a609c76f0fea1c39fb8c01fe9abdf899 |
|
BLAKE2b-256 | cd35eb6c4a8c43657af72f67a1f0e1dc75fc0b7001c835d37fe6ff205d2e47d9 |