Skip to main content

Python bindings for the Rust blake3 crate

Project description

blake3-py tests PyPI version

Python bindings for the official Rust implementation of BLAKE3, based on PyO3. These bindings expose all the features of BLAKE3, including extendable output, keying, and multithreading. The basic API matches that of Python's standard hashlib module.

Examples

from blake3 import blake3

# Hash some input all at once. The input can be bytes, a bytearray, or a memoryview.
hash1 = blake3(b"foobarbaz").digest()

# Hash the same input incrementally.
hasher = blake3()
hasher.update(b"foo")
hasher.update(b"bar")
hasher.update(b"baz")
hash2 = hasher.digest()
assert hash1 == hash2

# Hash the same input fluently.
assert hash1 == blake3(b"foo").update(b"bar").update(b"baz").digest()

# Hexadecimal output.
print("The hash of 'hello world' is", blake3(b"hello world").hexdigest())

# Use the keyed hashing mode, which takes a 32-byte key.
import secrets
random_key = secrets.token_bytes(32)
message = b"a message to authenticate"
mac = blake3(message, key=random_key).digest()

# Use the key derivation mode, which takes a context string. Context strings
# should be hardcoded, globally unique, and application-specific.
context = "blake3-py 2020-03-04 11:13:10 example context"
key_material = b"usually at least 32 random bytes, not a password"
derived_key = blake3(key_material, derive_key_context=context).digest()

# Extendable output. The default digest size is 32 bytes.
extended = blake3(b"foo").digest(length=100)
assert extended[:32] == blake3(b"foo").digest()
assert extended[75:100] == blake3(b"foo").digest(length=25, seek=75)

# Hash a large input using multiple threads. Note that this can be slower for
# inputs shorter than ~1 MB, and it's a good idea to benchmark it for your use
# case on your platform.
large_input = bytearray(1_000_000)
hash_single = blake3(large_input).digest()
hash_two = blake3(large_input, max_threads=2).digest()
hash_many = blake3(large_input, max_threads=blake3.AUTO).digest()
assert hash_single == hash_two == hash_many

# Hash a file with multiple threads using memory mapping. This is what b3sum
# does by default.
file_hasher = blake3(max_threads=blake3.AUTO)
file_hasher.update_mmap("/big/file.txt")
file_hash = file_hasher.digest()

# Copy a hasher that's already accepted some input.
hasher1 = blake3(b"foo")
hasher2 = hasher1.copy()
hasher1.update(b"bar")
hasher2.update(b"baz")
assert hasher1.digest() == blake3(b"foobar").digest()
assert hasher2.digest() == blake3(b"foobaz").digest()

Installation

pip install blake3

As usual with Pip, you might need to use sudo or the --user flag with the command above, depending on how you installed Python on your system.

There are binary wheels available on PyPI for most environments. But if you're building the source distribution, or if a binary wheel isn't available for your environment, you'll need to install the Rust toolchain.

C Bindings

Experimental bindings for the official BLAKE3 C implementation are available in the c_impl directory. These will probably not be published on PyPI, and most applications should prefer the Rust-based bindings. But if you can't depend on the Rust toolchain, and you're on some platform that this project doesn't provide binary wheels for, the C-based bindings might be an alternative.

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

blake3-1.0.5.tar.gz (115.1 kB view details)

Uploaded Source

Built Distributions

blake3-1.0.5-cp313-cp313t-win_amd64.whl (221.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

blake3-1.0.5-cp313-cp313t-win32.whl (234.0 kB view details)

Uploaded CPython 3.13tWindows x86

blake3-1.0.5-cp313-cp313t-musllinux_1_1_x86_64.whl (555.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

blake3-1.0.5-cp313-cp313t-musllinux_1_1_aarch64.whl (549.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

blake3-1.0.5-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (384.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

blake3-1.0.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (395.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

blake3-1.0.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (509.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

blake3-1.0.5-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl (446.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686

blake3-1.0.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (374.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

blake3-1.0.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (373.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

blake3-1.0.5-cp313-cp313t-macosx_11_0_arm64.whl (328.1 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

blake3-1.0.5-cp313-cp313t-macosx_10_12_x86_64.whl (345.7 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

blake3-1.0.5-cp313-cp313-win_amd64.whl (221.8 kB view details)

Uploaded CPython 3.13Windows x86-64

blake3-1.0.5-cp313-cp313-win32.whl (234.2 kB view details)

Uploaded CPython 3.13Windows x86

blake3-1.0.5-cp313-cp313-musllinux_1_1_x86_64.whl (555.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

blake3-1.0.5-cp313-cp313-musllinux_1_1_aarch64.whl (550.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

blake3-1.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (384.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

blake3-1.0.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (395.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

blake3-1.0.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (509.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

blake3-1.0.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (445.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

blake3-1.0.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (374.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

blake3-1.0.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (373.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

blake3-1.0.5-cp313-cp313-macosx_11_0_arm64.whl (328.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

blake3-1.0.5-cp313-cp313-macosx_10_12_x86_64.whl (345.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

blake3-1.0.5-cp312-cp312-win_amd64.whl (222.1 kB view details)

Uploaded CPython 3.12Windows x86-64

blake3-1.0.5-cp312-cp312-win32.whl (234.7 kB view details)

Uploaded CPython 3.12Windows x86

blake3-1.0.5-cp312-cp312-musllinux_1_1_x86_64.whl (555.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

blake3-1.0.5-cp312-cp312-musllinux_1_1_aarch64.whl (551.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

blake3-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (384.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

blake3-1.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (395.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

blake3-1.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (509.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

blake3-1.0.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (445.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

blake3-1.0.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (375.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

blake3-1.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (374.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

blake3-1.0.5-cp312-cp312-macosx_11_0_arm64.whl (328.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

blake3-1.0.5-cp312-cp312-macosx_10_12_x86_64.whl (346.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

blake3-1.0.5-cp311-cp311-win_amd64.whl (222.4 kB view details)

Uploaded CPython 3.11Windows x86-64

blake3-1.0.5-cp311-cp311-win32.whl (234.5 kB view details)

Uploaded CPython 3.11Windows x86

blake3-1.0.5-cp311-cp311-musllinux_1_1_x86_64.whl (556.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

blake3-1.0.5-cp311-cp311-musllinux_1_1_aarch64.whl (551.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

blake3-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (385.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

blake3-1.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (395.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

blake3-1.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (510.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

blake3-1.0.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (447.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

blake3-1.0.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (376.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

blake3-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (375.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

blake3-1.0.5-cp311-cp311-macosx_11_0_arm64.whl (332.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

blake3-1.0.5-cp311-cp311-macosx_10_12_x86_64.whl (349.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

blake3-1.0.5-cp310-cp310-win_amd64.whl (222.2 kB view details)

Uploaded CPython 3.10Windows x86-64

blake3-1.0.5-cp310-cp310-win32.whl (234.7 kB view details)

Uploaded CPython 3.10Windows x86

blake3-1.0.5-cp310-cp310-musllinux_1_1_x86_64.whl (556.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

blake3-1.0.5-cp310-cp310-musllinux_1_1_aarch64.whl (551.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

blake3-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (385.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

blake3-1.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (395.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

blake3-1.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (510.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

blake3-1.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (447.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

blake3-1.0.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (376.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

blake3-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (375.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

blake3-1.0.5-cp310-cp310-macosx_11_0_arm64.whl (332.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

blake3-1.0.5-cp310-cp310-macosx_10_12_x86_64.whl (349.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

blake3-1.0.5-cp39-cp39-win_amd64.whl (222.8 kB view details)

Uploaded CPython 3.9Windows x86-64

blake3-1.0.5-cp39-cp39-win32.whl (235.3 kB view details)

Uploaded CPython 3.9Windows x86

blake3-1.0.5-cp39-cp39-musllinux_1_1_x86_64.whl (557.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

blake3-1.0.5-cp39-cp39-musllinux_1_1_aarch64.whl (552.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

blake3-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (386.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

blake3-1.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (396.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

blake3-1.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (512.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

blake3-1.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (448.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

blake3-1.0.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (376.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

blake3-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (376.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

blake3-1.0.5-cp39-cp39-macosx_11_0_arm64.whl (333.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

blake3-1.0.5-cp39-cp39-macosx_10_12_x86_64.whl (350.3 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

blake3-1.0.5-cp38-cp38-win_amd64.whl (222.6 kB view details)

Uploaded CPython 3.8Windows x86-64

blake3-1.0.5-cp38-cp38-win32.whl (235.2 kB view details)

Uploaded CPython 3.8Windows x86

blake3-1.0.5-cp38-cp38-musllinux_1_1_x86_64.whl (557.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

blake3-1.0.5-cp38-cp38-musllinux_1_1_aarch64.whl (553.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

blake3-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (386.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

blake3-1.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (396.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

blake3-1.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (512.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

blake3-1.0.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (448.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

blake3-1.0.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (377.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

blake3-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (376.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

blake3-1.0.5-cp38-cp38-macosx_11_0_arm64.whl (333.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

blake3-1.0.5-cp38-cp38-macosx_10_12_x86_64.whl (350.5 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file blake3-1.0.5.tar.gz.

File metadata

  • Download URL: blake3-1.0.5.tar.gz
  • Upload date:
  • Size: 115.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for blake3-1.0.5.tar.gz
Algorithm Hash digest
SHA256 7bac73f393a67ea6d5ac32e4a45d39c184487c89c712ab3ed839c1a51ed82259
MD5 df113dd32df130152f8eefddc3a6aa8e
BLAKE2b-256 e70822b6326dbe002ca77c92082b37b14a935003897b0e3eed025da92c700751

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5.tar.gz:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: blake3-1.0.5-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 221.0 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for blake3-1.0.5-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 efbf948b3c88c980e42d256d92e7d7e30089665b895e7c1e1f19e202fef464f4
MD5 1c819777cbec9f22cc082b444f1f88d2
BLAKE2b-256 e9da1e552eb583a968280abc638f1a6473054215da6831d38467465432107130

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313t-win_amd64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313t-win32.whl.

File metadata

  • Download URL: blake3-1.0.5-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 234.0 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for blake3-1.0.5-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 2fe3464aa94abb8bfc395f98cf6455153f28aa9278526ecf71aed7dc8bdd3a72
MD5 4a8af39dd869458ee684f36310c94373
BLAKE2b-256 e5953c0bc68accf45814072dbc73800b177200ffe833c72c3b587f2c20d15f50

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313t-win32.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7d3941c3bb28d5287467f0ee3b1e15682d4664b6eddf156ad556475523737f95
MD5 8e4e408323efdf2e8f353a135b1833d0
BLAKE2b-256 a9b0f3ebf5c88e88c1787e316640808a50f4371bdfbed01b8f061ce888d01e7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313t-musllinux_1_1_x86_64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 83c8f2141caa97dda6109e91304f53c973358a70596c78947795d5dcd0dfe2b6
MD5 095b0bfab23fffcc3941ffa4e4cbacd4
BLAKE2b-256 988c4f5dffa401bdd7d75533597045fb2a5bb853b60736ef294b8b4362a172aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313t-musllinux_1_1_aarch64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5cb1f16cf65c799d551b62205bc361f84501c78c5bad1e136c8fd0b719a27e4b
MD5 fdff2ca8938f1c5e3b9d67993c57e037
BLAKE2b-256 18d16e1ba4be82f70df6014d6646aac68c67b3890778a88de13beb668a6adf45

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4683e46a056b23a550a58e50b6d4ba278888aa435951729615a72e50ca36674b
MD5 180ec352643cc154ac8d72dc61a00df9
BLAKE2b-256 561f2062a84b46a5d762b0129109155afbc8154616031e647bfd9c54658b7380

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d3b56b7df6de580a71cb2c5b24a87732d6ccf225399e70370ae976ecda39c5bc
MD5 9df473370cf9375d8e47d60834f32810
BLAKE2b-256 dcfeabeb8dd2ed5a90b75e2eac318643df66c03ad72e5c3df37c3cc36d96bed9

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ec1c8d9da5e4184337af2d8e4403b97088aa64d6d72eeca5e980ee3e283ec75
MD5 39e86917fc3a899510efcf037b039e15
BLAKE2b-256 0feac5ef763aa808c2467b2cf78b4bbf85a4836ec1f68975121353af5bea7888

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4084a9d3a5ed301fd8b97bed502cae341c89f8fcb891b4abf793f73b71a80c1c
MD5 f464ca3ff30983ab8b22bb74546c39c3
BLAKE2b-256 9352af32617c297df04708b9ab18f496466c347959bc48bacc9bae185d34d830

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36c072cbc196a17e92a039f76917356a92a0e37b5af1d8b1a5e02c5ee8cf5677
MD5 434c29aa3b34b67337f04555795790d3
BLAKE2b-256 681e6fa940402007eb6c7425efb28f03b085bd20c0a934306055ac8d5f6cecdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1eb5b09f7b11e3f04efdbaf0231f7d55d233703264bb654b2d84f94d2c9f86c5
MD5 ba2925152eb6d4affce210cfbd12ec30
BLAKE2b-256 e7f50b6032e29eee5b1d98f0855717c742c66b64e1405fb1eae466a944f347da

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 402a44fd0e8c85d91342e397a23e4b36809bc2f11c859b6b33ba5798a31b46c5
MD5 c8859c1c9fcc37d9bbfb1dd8993f18ea
BLAKE2b-256 12f8ae5cf4e0d305ac055e034dd688fd85ed51c69e0218faeb9c92ad162d9dad

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313t-macosx_10_12_x86_64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: blake3-1.0.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 221.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for blake3-1.0.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 15981940f96691d08f2c4593a0153b720a57fedb32799ba96d147dc54a3f7ceb
MD5 2b18a3067c8dd253996292f261310437
BLAKE2b-256 c8572d18ee7b155e1530e2ad8d8bbf9d01789c2c14013b14257814f9078e2b1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313-win_amd64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313-win32.whl.

File metadata

  • Download URL: blake3-1.0.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 234.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for blake3-1.0.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b3425aca2799ba992750f364de74cefed932d93e54e62b3b450ac33bf8269eeb
MD5 8a6c3e4cc2163e2ba24ea6fb553148c0
BLAKE2b-256 82c71ced9a0c895e114d0c280b882be39131931a88fb5d4fbe5eb3b10e96be4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313-win32.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b0d5c2f30f542d855dccf71a2bf59ff8c92b321c573fe4538be7aec635e4a11c
MD5 506e822a999191432920c537558cd271
BLAKE2b-256 e3479eb21dac9c78fefd52475d235e48c703122f58cd760f2696e6250dabd1a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6e9a1083e1dcce1155aac2288a01a1031b2bfaf17e210a70fb9aefd9454bcac9
MD5 f6cf87b78bf3376e25cc538aa1bdee63
BLAKE2b-256 8e1101d43d9129a837ffb05b8c5cef4542a1680e31e1e036504066e3e2b27218

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313-musllinux_1_1_aarch64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83dacc3e029672152240a93e81c9ee02fca599785cffe5e3d2c864aef582ec2e
MD5 bce096cf4378c8d3b5c52566b87b3717
BLAKE2b-256 93a290cb6cf880c708f38469890fd38bd112cab9af81ee8d5d6cece2e04be595

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 344ae90921f68b4ce60a15ea5b5e6410eba5780e0b7f350b69768772176a10de
MD5 a4582ffca45014b09c2e4408254e9a25
BLAKE2b-256 c135b09914fa19d9688bcc63ea1d0b1cb2aea29d99c82ec02e5ef07e1e395f7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 71bdb08e6425da9a13135dfa9a9554438b2ba90aa97fe43f385b7e89781124f3
MD5 513bffe47f61bc27748a1b33460dc31f
BLAKE2b-256 7a2ac16d4754805eed680e95307e46393c2d640f9ff060462c319ca5603ceddd

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24f6c9957973446bbafe0b93b50d1cd07fe31227d7a5e46a4da8d78ccf882dc1
MD5 11b2cd0249dad7d072d84d7e722a2b48
BLAKE2b-256 392f411beb9c70e25bf5a2b1a7c5bbe6da620dcd0e4f91a93eff1bd09fae9e9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5e9c26b9bc02ed039a67227cb643548f52226e48c2a68fe3a864cf3f204c5d2e
MD5 200efb72b97d88eaf596381c39f1a5a8
BLAKE2b-256 a1a95dc9dcc31d9b6ba127a7d27b15ff47b88e5d59821b20343306ae44a911c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db12ab293cd55d827829a5e96dcd348ad78aba777dbb7139883cb3bf1f724bcb
MD5 45991d40d7a0964103fa7cb345363238
BLAKE2b-256 70fdd387e5a1dd987bff808b67feca806005d4187f2766a60a2aa5649367b629

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee4517f925717bab87061f5c3fde7c669609da50c9ec4ea86c9239302b31b198
MD5 ad0136079b3639676adab7f120d5f6a0
BLAKE2b-256 ff20b579b052ae5c37f007015d282f7ff3bd9052e1d713274498807c9d81fee4

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 53d3469f99d868c065a202e1e6ba52beb715123706bb2019d0fc00f703bb95ef
MD5 16a0e3f951efb6ca9125c35e6d4252ee
BLAKE2b-256 e0886d3a1523f748a10841894706cc34f8293c942aa6e3bcb9f7ce26daccffe6

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: blake3-1.0.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 222.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for blake3-1.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 adb54b8bfe4fb2e8106b3a1bddc3614d2de555d2b657861068160176ff723eb0
MD5 4e911d4388e3ea303395f00d5e8071fc
BLAKE2b-256 09a576cd4402c685ad1d336351f22483bc2ecd48e5604ba5f5ad340e22b8703a

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp312-cp312-win_amd64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp312-cp312-win32.whl.

File metadata

  • Download URL: blake3-1.0.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 234.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for blake3-1.0.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 cba3e6d12bd310b5ff4970daddd7e77a0ca383678e1f0a1ec414d4c7cb083f9d
MD5 02146072e0c37552cf042a8104a09227
BLAKE2b-256 451580d9b2866af5d7ec4c665bb961b16d3db9a9527a80de78e44b828129d51f

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp312-cp312-win32.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 21240932fc914fd719e2d33297f29742c28a31d8a96cb666ec4679bf2c35aa48
MD5 fe2b6dbe44e2d8c0da360f287e5433a8
BLAKE2b-256 1399a2e644e0a2039977beb67abbc1f48f6f6c7e0f0c345665811cfa2880b196

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7083e1b2cfb737c812e20d790c232c38045c7bfe37ef02526f395d491f90f213
MD5 e391d7b95774e7405b62b12d48491298
BLAKE2b-256 6bbf93ce719f88b48d5bcdf2f765789a5a955ea6a02a33f310321508c8421ad6

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f39e8d36e33f413938230683f192f0565f44ee2b050ad92fb94b343706f3df55
MD5 1a7af91f6c48ab73b8c0220971f1eb25
BLAKE2b-256 5c04a86bfb3c20e859e43ead0b13be59afd98feb166ea929e76fa3d190f65f6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a12b12df3c40089bf2785c333f8f1161b2a66ecacb44828de9fbf2868037934b
MD5 095215609da1a4a02d9c03d6af6cd063
BLAKE2b-256 9becc1676c275592efdb3a6e4489d0f5e029d38565593466ba70c42b73e76b1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 15ecd628f824d5591a1958babd4217749f1facd3945f33a14c3e5fbb52ffb922
MD5 4e0e1a64d44ce66ccd198df62ea3576a
BLAKE2b-256 ce91e335f22765d7e80fd5aa6a25b2f2f5f0c5d649049f88d0c8ac1f6a8c431d

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 12e5c722ef966f2b8df0d4024e6f4afd4c466bb0dcd3f8f671fad6cb5dab6a3e
MD5 00146ad82b6dc1c9af1fb2f3ed70240b
BLAKE2b-256 26fa879c74815dbb39e9b91d35b672b25c3547435e479b9aaf1a80191a86f3f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ca8935b4a733968a463d6445dc7cb0dcc09759c280df4847f020deec8fcaff27
MD5 0a55586caea3f407baddf2ae6704ab77
BLAKE2b-256 581b8fc14c7b7ae116edc42f8e8cd5c21a99d8b68ab761e31347c4c9c6bbedf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abe84cc2db3172bbade48dbf7b6029decb82e9cd382bc3cb783b8624a3ee55d8
MD5 d0131b5d6584c5ce6d762940fde2aae4
BLAKE2b-256 c140b81a25077df6fa1722be8c268732205281e12a244f9d5a15e9e72c2baa04

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4e53332a5db53a652395f5e56c72fb81c7e584a192e6931a4eb3f9b32edcf0a
MD5 c842ccd9805f0a1a548c4b083c35736a
BLAKE2b-256 130987c56b1d3113e1381178e2ff386ac58d32b23c65b20054ce4b8de59be93d

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 73dd1bfc802e2343113805d104b9600e794bf700c844f05dda86a9a05c0e7c41
MD5 2449e04188aae548b4ef19ca14a3eade
BLAKE2b-256 8fa47ea6cb45d8ce36b05dd01cc35a1bf9921c07d36dc56869e461f0e832ca76

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: blake3-1.0.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 222.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for blake3-1.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a2749ee55babd303aaf916038a84f2bc5a395950c3566aa8d5df8652483c81d0
MD5 161acf2e02c3537de8ac61043c3b55ed
BLAKE2b-256 0c104a31b9f46ef4c3622720984d66f05065ddac09caa74bf8014d2f059ce86d

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp311-cp311-win_amd64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp311-cp311-win32.whl.

File metadata

  • Download URL: blake3-1.0.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 234.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for blake3-1.0.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9cba19637499955aa91aefa42e5da42314867c2e0d2d32620b47c224c12df1ba
MD5 e398c6736b0ee660f1f9efc660e1fdf3
BLAKE2b-256 dd225dd64c001baf5aa8278e7b12cbbfad3622b745797acf277d6c6b44ad52cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp311-cp311-win32.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b5734d527edd6a8841b8056fb9a45683eb4388c55fd7b31949e4c904a149b1cc
MD5 e21d12676f4f4519d9744f0e772c1585
BLAKE2b-256 0be3910661b716d877c3bad7713d2d1b062699aa95808a36dd5a1af7cbe67dee

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6c195195feceef51282a232195b2684cdf6c9d0684b3cbcd2162334c0921b21a
MD5 2aec23a1dc2c44de7523408b69b4a6b9
BLAKE2b-256 f7a89668b4c1ab88fc5776952b39cd6b0f5840c6e8ff42037f4a8806caf5ee0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e9708095242ebb83297c5a3d4ae030799d679a73b1f3116cfe09ba6db6e36e6
MD5 b2c4e9a5e22f686084fb4e8569a680a0
BLAKE2b-256 63fcd9a91e69e52f8ddabbad30a68a4185644c30fd26e33605120a185438c458

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a11b5227f6b64bb1f6f497fc2878d0d4ee1cb22ae5fad67b0560c8a59d562b02
MD5 4774139fedbcaab44e049c5f7a573c8f
BLAKE2b-256 ade8021316b0ad48ca09f388c2b2228a3a5f5327cb8fefcc68c63a902886e093

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 975fe08ed27e0c4d8ae21e8154afff996fc1b140703b14b8fe5987e8fb1e23d6
MD5 961c46f4933a801e5e266ba25e7ed6e9
BLAKE2b-256 f6520780e0386e88c50416082a48618cb91084ea1f3bfe6bcae005f00141ff3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bf416d9d435a3b804c6df1dc9603388f0df261f1a45962f6d6be5079ff8c7d8
MD5 8af7eaeda1bf7ea674f8fe9e5351bf5c
BLAKE2b-256 788a0abecd381ea68661c2325066feeee3c6ce2bafb90cfdd748b67b2a199b6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3f8ab3f6914ec5267079197e6438d2e05ba37f323658fc18e6d3fc1b3e4ca732
MD5 b904411b3a6396b3ea743f7ba780f6fc
BLAKE2b-256 83fcaef6f20b7f37fd0ef09ecf3c7e22889a94c4d624006d1b60b18602dd7343

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78a8628d060e46787094e0178def67b4a71df30e71022ff33441481dab7d2dba
MD5 831b1e6ab5c13528e4e538b891d52f82
BLAKE2b-256 d4b8416afb5942c31230c119a7456f05532d38544a801be29b39079635116e5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94e514468492e8f7eaaa885702db1d365e05214fec3219f3df120b45c7ac86f3
MD5 eea71c689ea0ba0ab12977ab3cff7bf3
BLAKE2b-256 d63c3fc09f05849f060cd3065eb90b1abe7455fccece86e6ff096d558b75861a

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 75a17094007f7bbed0b1b82f7985c2008b691c7375b21dfc0e9197eae2e622a3
MD5 e8cba6398f4311bd65a90e3be79aca79
BLAKE2b-256 6f336c03c1082da982f7c6ed550eb6db2a89eeb3cc4a10d9311f0bbaa57aa314

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: blake3-1.0.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 222.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for blake3-1.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c9eea9b91d729b2d98c9646247a7c0f5de003542e375883fe8f1b3e652adce24
MD5 f1d5fe8a937d686bbe6296732743ee65
BLAKE2b-256 2964344563833e3ef63dba0ec20174128abb6b5686f232414b379c07e88eaf0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp310-cp310-win_amd64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp310-cp310-win32.whl.

File metadata

  • Download URL: blake3-1.0.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 234.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for blake3-1.0.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fe333852c5bbafd7735d36da2d60d44a022247bd180f2c43facb2585134c1792
MD5 54bad80b024f1fc2a5075f34b1c26686
BLAKE2b-256 2a8a27dc64a5411835eae0190d6d5e192f9f0d4ceb226efd63d2e6eb5f77639c

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp310-cp310-win32.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ddf4cefe9bca6a60dc967c1e59671bba78211b75568417a00bdfcd7a0ebf304b
MD5 5edf8eec3f59b9bc462a587804ffc174
BLAKE2b-256 2aba2f6cf4acbb47bb245fd14a1ec8229e96365751cefdbe2c204c51ab17aa2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 57fb75a77c8c465a3261d9f729980e4f643f74bbe4f752353c8bf27eec6738ec
MD5 a7e6a21acb030af768908c3f934aa1ae
BLAKE2b-256 3cb8dd2bc0864a40ee28b0d0d909592442253a31793c322a11b1695e7e220185

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 337f45bd080b21ebe6c248f2d6de4339f83f13dc853020cb93c7a3f93a0ea4f7
MD5 2d508eeac8e6654c9570a28c51975a73
BLAKE2b-256 664178caf5b8fdab4ced3ed88041aa33120460ace99310bc19ef7fce640365ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b374d32d3d169590d7fe6832429f78be4f3837e5d743f1353d71bd11e77f0d3b
MD5 c49930f08246e2e1cc73ebf394b4dc3f
BLAKE2b-256 831d66dc1f6d8de4ddbe5cdfd4435eab310f847ddee1c2299c1916059f45ff64

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc2d2c8c74d0d681309fcb2e61b2db04db5261333c8608fa84a4ba4c493d68ad
MD5 b194e47d1e134f8bfcd0701d505e3b0e
BLAKE2b-256 2334c813f663ff5bd57cec4492c98d896c109eb231ddcac19443390ab02cb8cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fa9da43810aeeea8d2a817fc43d9b2279417dbb87d2935c7a044f20404d70067
MD5 6004aec96142628a01068880eb8876dc
BLAKE2b-256 73448d87d3749156e7004efa6e56ac068dc7deeb64bea8d020185e76446a89f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e9dfcc3ecf191a14f983d64cfcc7c68af99b74e3728f75bc99677d7ef824d170
MD5 af643d85aa4729c0972a8298957e6ff0
BLAKE2b-256 e06c4459e9a5c3a0574bb8711c67d0acb082ea7f6db3191f67558997054531af

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e5018a934271a16d4de8a3d2935ab15f61fc5b12c1fb33c22af6e40533cfd56
MD5 901e22234c054d61fb4313c4d7c91aba
BLAKE2b-256 7f0865ffe9c2a3708ffcfd44a4feadf5bfcad0e2a5a1e93b32c4ab17fce19a91

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 606676dbb974b66afea2240741dfd4afafd8ed6697454eff0e1e0c4dc130e5b0
MD5 f4400636eb1a7c8c2e8189238fd52eba
BLAKE2b-256 40183422980bcf001006ec0f5146a520bbd41a667a10671c98925d755fed71ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ba833ff7dee08bbf56b1e9d0479fda74f867b90fbe12c85078f8fbf2b505d6f
MD5 05aabe9836b17e087d2f8f5fb38fffd5
BLAKE2b-256 e12609d833a12f8884de194bfe19d9faf1274bce1ecbaa2a2f933439c2015549

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: blake3-1.0.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 222.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for blake3-1.0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3d278ade6f38705b7b95b234d1a0deda41b1a039484d7c3e0330c55e7826e9fa
MD5 217c88e218144473d8a87be8d4b5e6f4
BLAKE2b-256 ee5e49b7747e18cd9713f18f90fac49b3c73a03e55eee431d891cd4aba536150

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp39-cp39-win_amd64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp39-cp39-win32.whl.

File metadata

  • Download URL: blake3-1.0.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 235.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for blake3-1.0.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7428281d06cd554710e5f03a5f91cb634d45a44b9f747ad0bcd21e9397c171c2
MD5 c83090900fd640053b1689471fd219b3
BLAKE2b-256 12f49d44e8d381848737b479f8019ba8b034e8682716864a372a40270c6dc943

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp39-cp39-win32.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 03638a6dc8546365c3576fdb293fb2c53b898ac80525b5742d9cf00b4f44dea5
MD5 5340a9023cdc54dd1c07e7f07729b848
BLAKE2b-256 fbbb6ffffadb7046604d92774e9b43c910fc0a37bf44e8578948af4a29091451

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp39-cp39-musllinux_1_1_x86_64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e5c3290ecedf18a9b1786de82746d30ef758f3cc526024b71505ed538ea0dd0d
MD5 482a11ecd35a7d20abefea87a6820f79
BLAKE2b-256 0c9f6aa6d43d951195bfe89b85b20b090f30bb7ff3e9aa398a0c494843827d66

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp39-cp39-musllinux_1_1_aarch64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 785c391530df821743e6d6dcb4afa4c940bd3ea98c5e02720198b65ce35f91fe
MD5 030dd346237f6eb0756491e880223365
BLAKE2b-256 12f635e4bb7ea7efaeb2a8eb34c9d6205b058f99168d3432627e9ad712fb1e93

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd8f4ccbb940164cbb9cf9d0f5393961a50e160710c677aabc93b1fc5e126c5b
MD5 0ef71ef23df58ff2bf316c70952836c6
BLAKE2b-256 db54d8a3b12e83364b1bd5962a713e42fcc7321140db43304b1ee73757cc244d

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a50bb5909fc44594543cc6b60aa403bae96f93d36b017464afe32370f5eded81
MD5 5bf5939335ed952745b9e456b0a1a557
BLAKE2b-256 bfaf6713fd863f58ae6b5235e97fc93800bcaf3b3f4e940b285d70d1c35fda00

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ffef3dcb1c86cfa9d28fd03a11d4cd2518bff10a573a2a4c2001e1a16009318
MD5 1d95d86b6558307d584d7b6ffb04298f
BLAKE2b-256 f0a9666608efaa66cd257c19c922e9209802e12ac54dcd5313e878ed22620e6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0eddf0440046e7417f5d99392d4d4e6a6e5097fc1f7316c88add8e1d189cdda1
MD5 96d80a992b38320c8c70ab94b790afa0
BLAKE2b-256 663abbf12b23fa260643d2c1cd1bac62c9ddbba5b653fa4dfae30a0781da9068

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 feb0d1558d720a476f888566ddf2faf91d9147ada9261f3ccf11400ca3798661
MD5 c73eb2fd637f23861d95bf5d57ffc884
BLAKE2b-256 3c4bebeb7ea6d05c900290700745ee91c66d10ead246f89f7ba22e566e2e5c51

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9ac2f58929ea76be86f54eb9ac6c30dc5338f4e15014ca4254b02294d6fe30b
MD5 70d5027faf84e9933458090fa6d1213b
BLAKE2b-256 f358032f4d33dc1fc4ed39ed3efddf8fd1f7f3d1791aa0eb2789960b980ea031

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 66ee8fe43d88e0c9e009a27b7f451c5d2ca7fdc8ac3c9a47890b3c3cd8c61aa5
MD5 fa97e31c8ff67c2fc235a91e943a100a
BLAKE2b-256 e2f982452120890581236b6356c2f59e91b678695dff4dd8b1f2454ac170ea57

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: blake3-1.0.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 222.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for blake3-1.0.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3fff121e32eadfe8cb57dce8b4258f76c76586e101f0b6748fa849aa97cb657b
MD5 56d498dc3617e8b8457c61a83a696fe2
BLAKE2b-256 90b310fe2ac61ced88dab049d4ff98cfbd3daac8b2b967dc216aca3d617d0c9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp38-cp38-win_amd64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp38-cp38-win32.whl.

File metadata

  • Download URL: blake3-1.0.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 235.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for blake3-1.0.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1a9b63add3ad9f5beacdf831ca212fefdf51c05f57644f67a08ae847e2d2d966
MD5 4855eb443c9c8055cdc12bc24cb90842
BLAKE2b-256 759150c7c18f1bfa3709ced4bd84ec2e6e9973458734bcb9844298ce93354f5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp38-cp38-win32.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 043a226cebfedff7b51ab9c87d4476c06d2cd10776855eaa9c619f2272b3c32e
MD5 081b62908b7a4bcd75bf7c00c4cb6b65
BLAKE2b-256 d9bd5c913be33026345abdbe92ec13ecf442ddb81dfb0cffd396e513ceb31ca7

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp38-cp38-musllinux_1_1_x86_64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f21ec3a17dbe4e8f03f98c41e686f5a2d0f80a170cf85cc1458a454628588387
MD5 1ced015739d6e6236bc2c56d715d4513
BLAKE2b-256 2a208edba5d35cca9920ceadd267bc54d7807109fabda6d9c9d6251b23d0f393

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp38-cp38-musllinux_1_1_aarch64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12bb776f0137015a09fe92b4fcf780ac3a07c2c3b78bf97dbea878ae88766790
MD5 7e11ed3d040704b36a4ec6b9b1708dd2
BLAKE2b-256 5de3140b50fb96cab5997c3776db22e07bc6e9c5f46855af29058cb3a1a44e38

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6570f6225a1e765b060af81608f75aee662cd0272f9af062b5349c13ee36ef64
MD5 838249cc08d902b0096f85f83aa0eb24
BLAKE2b-256 da875e13d2d450d5f7785e0eaa4bffbb66c4d076f4bac0a0730eb746fe0a45c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aaf6b434ca484b23251ce5f8b857b4f967eef1337483621eb1011c5c459da8db
MD5 3095530bdf02ff64106d43462a36793e
BLAKE2b-256 c9f23eff95bf2188f64b9cd48a3594362e44a92676ee630b8ad78d1c6070b427

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c0e6804f7da8d3746ff406717005449d5adf9f828a50b75b49c1fb6140dbf22c
MD5 6bd96e535bfcdb8e6727941c1380e417
BLAKE2b-256 7db70aed84ba102b8e61bb465804069552c61b19f2abb137c30af05e26a75b42

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 75f82f2b111f4ec02147ef9def7ea3737d211c0a7be0c5c234a52a18644c7749
MD5 0b38a203192b1247b90d121499ed2f9d
BLAKE2b-256 fbed1b2ce3e49727d05ba6d31c89294fba73e6434861c5ab294791716f67b910

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ecde4c20c38ae06b8af5397dd4fb7ced497fbee4b2aaa22dac1d3c900b82823
MD5 abbf7a05c9a2e6cb8be83e71b348f1ea
BLAKE2b-256 872ab1581098f6b77d080e001d9e2dbc8ff486dc21948b500320eb22f09f21f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06c337c6517493fc093b63bd09fb436176076ca68de429abe046b4ee4b91d1a7
MD5 b7aec50a7f715d92dfe63f7948803550
BLAKE2b-256 2302985c30cbb5b938167f25dd0088e4e8c0d7a1ce7b8192c1b437f484c91d35

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blake3-1.0.5-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.5-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f6bf4e563902e270637cf02d97f6b85fbb6b96a53f6d1fcde51b411968a54b1e
MD5 89f3cfa477d2fe953106601d253e6302
BLAKE2b-256 c871cc6ea761a1a6cb4ea0c67700c424eed22ca6883a295c99c3a452b0b75e27

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.5-cp38-cp38-macosx_10_12_x86_64.whl:

Publisher: dists.yml on oconnor663/blake3-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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