bz3 compress and decompress
Project description
✨ python-bz3 ✨
The python binding for bzip3 with parallel support
install
pip install bzip3
Usage
from bz3 import compress_file, decompress_file, test_file, compress, decompress
import bz3
with open("test_inp.txt", "rb") as inp, open("compressed.bz3", "wb") as out:
compress_file(inp, out, 1000 * 1000)
with open("compressed.bz3", "rb") as inp:
test_file(inp, True)
with open("compressed.bz3", "rb") as inp, open("output.txt", "wb") as out:
decompress_file(inp, out)
print(decompress(compress(b"12121")))
with bz3.open("test.bz3", "wt", encoding="utf-8", num_threads=4) as f:
f.write("test data")
with bz3.open("test.bz3", "rt", encoding="utf-8", num_threads=4) as f:
print(f.read())
- use
BZ3_USE_CFFI
env var to specify a backend num_threads
is only available on cython backend which have openmp support
Public functions
from typing import IO, Optional, Union
def compress_file(input: IO, output: IO, block_size: int) -> None: ...
def decompress_file(input: IO, output: IO) -> None: ...
def recover_file(input: IO, output: IO) -> None: ...
def test_file(input: IO, should_raise: bool = ...) -> bool: ...
class BZ3File:
def __init__(self, filename, mode: str = ..., block_size: int = ..., num_threads: int = ..., ignore_error: bool = False) -> None: ...
def close(self) -> None: ...
@property
def closed(self): ...
def fileno(self): ...
def seekable(self): ...
def readable(self): ...
def writable(self): ...
def peek(self, n: int = ...): ...
def read(self, size: int = ...): ...
def read1(self, size: int = ...): ...
def readinto(self, b): ...
def readline(self, size: int = ...): ...
def readlines(self, size: int = ...): ...
def write(self, data): ...
def writelines(self, seq): ...
def seek(self, offset, whence=...): ...
def tell(self): ...
def open(filename, mode: str = ..., block_size: int = ..., encoding: str = ..., errors: str = ..., newline: str = ..., num_threads: int = 1, ignore_error: bool = False) -> BZ3File: ...
def compress(data: bytes, block_size: int = ..., num_threads: int = 1) -> bytes: ...
def decompress(data: bytes, num_threads: int = 1) -> bytes: ...
def libversion() -> str: ... # Get bzip3 version
def bound(inp: int) -> int: ... # Return the recommended size of the output buffer for the compression functions.
# High-level api
# Compress a block of data into out buffer, zerocopy, both parameters accept objects which implements buffer-protocol.
# out must be writabel, size of out must be at least equal to bound(len(inp))
def compress_into(inp: Union[bytes, bytearray], out: bytearray) -> int: ...
# Decompress a block of data into out buffer, zerocopy
def decompress_into(inp: Union[bytes, bytearray], out: bytearray) -> int: ...
- Note, high-level api won't work with low-level api, see this
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 Distributions
Built Distributions
File details
Details for the file bzip3-0.1.6-pp310-pypy310_pp73-win_amd64.whl
.
File metadata
- Download URL: bzip3-0.1.6-pp310-pypy310_pp73-win_amd64.whl
- Upload date:
- Size: 380.6 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 29ef97afbad4e7e6688c97d859fc6b62273b70df91e24ac0a38b1bbe51ea65cb |
|
MD5 | f7112621624a82ffd33be7d3c86dbf00 |
|
BLAKE2b-256 | 800ddb8563240e6d3bc39e0615d68173e47a1d5d9da1bd0c318dcfd9f9d6f71f |
File details
Details for the file bzip3-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bzip3-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 489.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 51b2082262bd5ebe8b4548c7507eb02bb7b606390f704642aa001e0c83b43924 |
|
MD5 | 4e92884e413aef70c71ebf976d2db50f |
|
BLAKE2b-256 | 05f48b2da4e3c65eb16a0ab884658563d288bd48397aa36f2f624951279f06c2 |
File details
Details for the file bzip3-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: bzip3-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 486.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7572b33a7c285fcffe9ac897040f72ae67dd06938eb9939405a17dc175549a3e |
|
MD5 | fa5c55cfd3f363bc45f9d84f5a7f8056 |
|
BLAKE2b-256 | d556a1fcb7e6cb14d9eea5ce9eecd09eb20b9ee9e42d7bbd1386d5e911ae7706 |
File details
Details for the file bzip3-0.1.6-pp39-pypy39_pp73-win_amd64.whl
.
File metadata
- Download URL: bzip3-0.1.6-pp39-pypy39_pp73-win_amd64.whl
- Upload date:
- Size: 380.4 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 505af48a54a6aaed6d6a58ca159e33fcdf4e304d0e306c01a49b391be27de3aa |
|
MD5 | a25d24ed4938bb6bdada1b6e78c052b5 |
|
BLAKE2b-256 | 8d1566c0c919dcbfe989d3ffd58068a9683c108c36b7d54d1f0c212d86998f59 |
File details
Details for the file bzip3-0.1.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bzip3-0.1.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 488.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 897e5ccbb8264ff43a6fc31ab27b4e8d2ead68657f788aef3b68ec9fd9bcaebb |
|
MD5 | 0bb5ab9ad301e274ad224d46f5419f27 |
|
BLAKE2b-256 | e6f9426dfe82dd0ff84b35790144ec377e16e28139ac9a975b0edb8354ae2fbc |
File details
Details for the file bzip3-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: bzip3-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 486.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d634f8faed98dd2ee1eedc45237dddaa763d08f7bfc71715b1bdc28a2284d200 |
|
MD5 | 75674a0d52ea93e6f83206adedaa352f |
|
BLAKE2b-256 | 8cbcdc50b552dce7e80179c88f8930565bfd30b0a8649b90eb755ebe3c392f31 |
File details
Details for the file bzip3-0.1.6-pp38-pypy38_pp73-win_amd64.whl
.
File metadata
- Download URL: bzip3-0.1.6-pp38-pypy38_pp73-win_amd64.whl
- Upload date:
- Size: 380.0 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e8d776d63d4579ed9d7ef4db6e530f26ecb39c9208c64ab0b9f804e18e640bee |
|
MD5 | 84866cdf9daae191cf6e57cce110e2a4 |
|
BLAKE2b-256 | e2fd615fc19bbe13c997cc3b73f7ac8d4d6a604c7e2b8a97f2372913604ed8f8 |
File details
Details for the file bzip3-0.1.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bzip3-0.1.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 490.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9cef061dcc9e00496ce8684d83947df262c3181e623a0c9be8b14eaf017658d6 |
|
MD5 | f7a63cb230194988f148747aa812a63e |
|
BLAKE2b-256 | 65a82968ff0b3d712e042458d812a366891a818e016b9e924e2379e69dbcbb30 |
File details
Details for the file bzip3-0.1.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: bzip3-0.1.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 487.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82c3874c2fed338f718a2bf94f9c7e43046b80eabba0839221963c7ddf63f018 |
|
MD5 | 6e8102a0751dfeb713b91010efd69228 |
|
BLAKE2b-256 | 8d410bb889b1b306ea23244a0c2b0f11531df9cb4492509cc88630bbc3c51b12 |
File details
Details for the file bzip3-0.1.6-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 392.4 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 907aed9a8e2781364fc2093b9610111c1aad4c2e4d067b9112910fe010427948 |
|
MD5 | 6081664d333a8e7d19dcf5a3f6e5b887 |
|
BLAKE2b-256 | 1f9bb91ba32171d5e7abd5a1a1b1f588db86440ad6cfce9c8336fbdfa2df8542 |
File details
Details for the file bzip3-0.1.6-cp312-cp312-win32.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp312-cp312-win32.whl
- Upload date:
- Size: 367.5 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a57b9d0212c0cedda34e6d5a70268a2db33698607de0f18d6f9c12dae690a85 |
|
MD5 | b0718d15092dcee18a335974366bc6f1 |
|
BLAKE2b-256 | 89f4fb9ed403092e0df7995bc8a8a21023e5bed7475bd98600fb868dd2be9863 |
File details
Details for the file bzip3-0.1.6-cp312-cp312-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp312-cp312-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 525.5 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4987c48514ad0134439d15a5888dd2b6f69f38f1856c21cff001466ab8d1c2c |
|
MD5 | 7a3a9e597f80f72b7785427d70d792ec |
|
BLAKE2b-256 | c1d6012c4734d0b72b0fbc88f1836862eae56df4632f195594cadae5225e93b7 |
File details
Details for the file bzip3-0.1.6-cp312-cp312-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp312-cp312-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 516.8 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d1cdcc9e8d5a4aac242dc8892dab24f0a85854e897a0027ffee6d89608c419a |
|
MD5 | 794d1ab0f79e72da5a9b546571648798 |
|
BLAKE2b-256 | b092879dcc6af0441202c5ddaf33762fa2881b8b44acb2ccf42faf592e90aef6 |
File details
Details for the file bzip3-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 511.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 996edbd7d10b2ed309959428d431862e5020d4e21631144c6f29bc5f7fe20e93 |
|
MD5 | 37e4e4cdf51ced86f85c93a2ceeffff1 |
|
BLAKE2b-256 | 65d72c2c83a7f321187214d3409c60dc0c9ffa86ebd77f5bb062954c1e224098 |
File details
Details for the file bzip3-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 505.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f471072ce6894d966d7fc526baae6352a40c82ed1a75e3a9cb14ba60f3244b09 |
|
MD5 | e8a47eeb5502746d6356bd4267dc039e |
|
BLAKE2b-256 | 9ab0d80957c78f0743a0cfeb2ffd9d49d4802c6414669d126cd1b74c442b5f48 |
File details
Details for the file bzip3-0.1.6-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 390.3 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c7a65ef02f202a7383e031c45e923adc958a4764d80c49f24e54ba335fdfd62 |
|
MD5 | 51ed8488eac6ce275b1a68b7473cf873 |
|
BLAKE2b-256 | bf1fe30546bf63e94351a9a4d4ffef50fbb067dd8051edd9e0d5717461bb55af |
File details
Details for the file bzip3-0.1.6-cp311-cp311-win32.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp311-cp311-win32.whl
- Upload date:
- Size: 364.8 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a2a5ef6e4991a2ddefaf58245fee37d36c95c41436482e1c16c4ebfc7e03d1b |
|
MD5 | 1887dd05b362341db70e1de05c2a9dd1 |
|
BLAKE2b-256 | 7d2e69863d59a47a9cfb9f541b3dff7fa8404f5163fca88279321de3d73d0ccc |
File details
Details for the file bzip3-0.1.6-cp311-cp311-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 528.2 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d442dfe8eb56e030044849b68e834e9deecad43a7e739de67540c942ca59b199 |
|
MD5 | 089d3312788ea188fadfb0c3fb9da029 |
|
BLAKE2b-256 | 372de3f552e230cc28ad93a6ae61028ad1459b6c02d6a26a13be6918a79c624a |
File details
Details for the file bzip3-0.1.6-cp311-cp311-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp311-cp311-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 520.2 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | de861bf78a39a3a7525b6007258eb551e5292f844e414119df229e42b6ebed63 |
|
MD5 | a5139ca52235ce063dc44283c17cdbab |
|
BLAKE2b-256 | 447f317a1d3f8013ffe2be0112d163d6b0e57627aa13b22d25a30fde54fd1792 |
File details
Details for the file bzip3-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 511.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 331116993900f4587f871ae77cb307ce8ee3f0c74cfcb927788e039ae04bb69f |
|
MD5 | 9d25b41f5a117f976ed3c5150b059a59 |
|
BLAKE2b-256 | 8e8809c9a56f5a56dcf357faf507f1557d295c04955fb26d825e45ca2882db4d |
File details
Details for the file bzip3-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 506.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe4d2c8dcec3d099fedaa3b6c0d3f4579dccdef8c31b8d95692948cacd9cbc84 |
|
MD5 | b986f345a532c07a1f8ffcc9016081e7 |
|
BLAKE2b-256 | f5ad30771b422699a75ca116d7438481421d06d1475d3261f2c8f9ba90b7bc01 |
File details
Details for the file bzip3-0.1.6-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 390.2 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 596709e0200907526240a59f115cd415ac062fcd5e4062c1ac0aff01b3aa7fb5 |
|
MD5 | a1971b140dd8f24353302711a81444fa |
|
BLAKE2b-256 | 3523fea53f06adbedad0580e414ea632bbeca9497eec01a9c3e173e2c82e2c7b |
File details
Details for the file bzip3-0.1.6-cp310-cp310-win32.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp310-cp310-win32.whl
- Upload date:
- Size: 364.9 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd0d6d3da3d0388e03c800d4e179104de92e12fbaa204e1c465258d0286b119a |
|
MD5 | c1bd7e7798cf657fe4f3dcd459c7b754 |
|
BLAKE2b-256 | 94c77306691b94dfe6dddb161b662d77a9333d54d548c66cdb5f45fc341be960 |
File details
Details for the file bzip3-0.1.6-cp310-cp310-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 527.8 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 740c65f9cc87fc455deedb56d11d4b755071e78ee3edc43cbd972c2a95079ca6 |
|
MD5 | af33f63ef784f34c5bc166ef2032b87c |
|
BLAKE2b-256 | f3e8a6a5b00a237e5f0daa14bbbb8aa600c0bd69391aa806d1995388a28cf192 |
File details
Details for the file bzip3-0.1.6-cp310-cp310-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp310-cp310-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 519.1 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 30a6299a0e017b1ffd4eab979d3b032827c0f260a6d113d411545db0bede61c4 |
|
MD5 | ba49f49788a0a3e1bf7d6da4e4687fbe |
|
BLAKE2b-256 | d8f0d73eef253c43364b4a71e8e96803134984807aa2fb9e6480acaa88659404 |
File details
Details for the file bzip3-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 511.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0aa76956af59a2fa3dc39799f8b1196d29ee4a0df355726370c27539fb053617 |
|
MD5 | f15515ac5e84d9c63a1899d08ac4b4f2 |
|
BLAKE2b-256 | 16d69d63f36090501eba5ce964e702d8b96b5b19b8a4b93132f1e1b141f4fdfe |
File details
Details for the file bzip3-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 506.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1d84579ed0ceb3458c11ec49290534f967c0caa38427b0e2028ccc5bd5a2a70 |
|
MD5 | 3bbb9ba768969b982dcb4dd2aab55f69 |
|
BLAKE2b-256 | 469a4f54231d094c5667099fe0c009d05d9ee99548973a91a5e59b6264c25dd1 |
File details
Details for the file bzip3-0.1.6-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 391.0 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb918a33d0998d6482506551fb3103d6071980842c15f898b6e2b2ff6a6a81f2 |
|
MD5 | 731bf5284068d9bf6f02e83a986c166a |
|
BLAKE2b-256 | f4bd3d77abff4299eb026fc5f0a15eb4753680922ea8a2ee26f28b78d1515e12 |
File details
Details for the file bzip3-0.1.6-cp39-cp39-win32.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp39-cp39-win32.whl
- Upload date:
- Size: 365.5 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 670e7d35ff2bc69df6223a36782644be79b6e53c66297d575455e8b95174724a |
|
MD5 | a9e63eec58716d7167eacb92fbd7aa1e |
|
BLAKE2b-256 | 5f10bf276c4a0fbb6518fad128e434f2c2a8f3222924ef236820014965b5e33e |
File details
Details for the file bzip3-0.1.6-cp39-cp39-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 528.4 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 978de72463edaef89e9685e7d6115e60bfcc5b9aac1883e507468437f4bb1fa1 |
|
MD5 | 9e16252a905f7f06869cf0e837547ced |
|
BLAKE2b-256 | 483ae6d5475e8c74e162575209f7c3315dd191277f48beb64a48e541164fc69a |
File details
Details for the file bzip3-0.1.6-cp39-cp39-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp39-cp39-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 520.4 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2366f2e7810ce7b7200df3b9bef6e11371f0c2e20bc1ee4eb32f98d03bc09178 |
|
MD5 | 0ae62674a788cef3e8a4b47059f4f750 |
|
BLAKE2b-256 | f644615854c7aa38410372e00ff381015830933ab26ff7ad8b9c6da4f88540c4 |
File details
Details for the file bzip3-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 512.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89ea0f6f1fbcc93ad3a5f453563f38c22e7e94657de554314080fef8aec0b179 |
|
MD5 | 727dd1b95152d5df0d68e7047a73c074 |
|
BLAKE2b-256 | 58fe1dcbe2597c55a99d518388d5c1470624f52ad2bad784c742a89dedc5831b |
File details
Details for the file bzip3-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 507.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | df6970abb8b4983fe87ea63e38bdbd77280a1a21c7b3308b9aa5ecd9816741bd |
|
MD5 | a07fcaf9ed0491af5845c19d8d5b5d3e |
|
BLAKE2b-256 | 96aae58c0f123cefae811e71cff9b48c064cfc9e4f0b5b45919486519aaaf482 |
File details
Details for the file bzip3-0.1.6-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 391.2 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eac258e50c510ba8dd57b05908e6c79d52568d356978501cb507036be670b0c7 |
|
MD5 | 108730ef03b0a04b31666457123817ca |
|
BLAKE2b-256 | 890bb7fed4032095584f3cf3bc1646b04391bc93da880d3eb5fef8837ebfd20b |
File details
Details for the file bzip3-0.1.6-cp38-cp38-win32.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp38-cp38-win32.whl
- Upload date:
- Size: 365.6 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ad89767614582a6888a476630a2777c7f9c99749db94841cdb930dd912d21e1 |
|
MD5 | 401e9cb333f329784b5ef9be314b8f83 |
|
BLAKE2b-256 | 428d331bdf94af046ace13c156a8f6d887ed694596821e008e594913b0cd2d98 |
File details
Details for the file bzip3-0.1.6-cp38-cp38-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp38-cp38-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 529.3 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 053d73d0e1bf03b73e25627a7695b446dd20df5360541fdc196f153fa3c2cc53 |
|
MD5 | efc9a8c8e69b6490654e473573f31aac |
|
BLAKE2b-256 | 2e30cf41753c206a2c3f2ca17c10955260e33e8dbd552d40cf78e09fda7640cf |
File details
Details for the file bzip3-0.1.6-cp38-cp38-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp38-cp38-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 520.0 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc5c8b41e91b742e643cad0a2f0e05456f16fca841618f26127b00ac1178b0d5 |
|
MD5 | 02c63ec1aaf9c288756e4b3ded925471 |
|
BLAKE2b-256 | 38f5c208ff18d54a9d0ad300fb0551c49e4c38a3565931bcca26098004145189 |
File details
Details for the file bzip3-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 514.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c651359beb1c72068e37b73125e646f81c5ae40b8f0bc51171673bd7788598e |
|
MD5 | d32571f0cc0e526526bb43e49e52ce6c |
|
BLAKE2b-256 | bebe0804e922ae3c0648669c35f50cb9bc326a58ac35c2e0ed48f61d94509495 |
File details
Details for the file bzip3-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: bzip3-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 508.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 76057bd59cb493b7281b9048fd7b0d46845b81f66007953ea6b288b6d39e2ed3 |
|
MD5 | bc19f3db527a1025c89fcc1ece5574d7 |
|
BLAKE2b-256 | 5983fd08f6e58dbe9f4bc56a9a3772d08e2fdbebd24ddd8a0758dea4a01131ac |