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

The blake3 package is installable from PyPI like most other Python packages. For folks using a package manager like uv, that's:

uv add blake3

Or the "old school" way:

pip install blake3

This package uses the Rust implementation of BLAKE3 internally. There are binary wheels available on PyPI for most environments, so most users don't need a Rust compiler. 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 first.

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.9.tar.gz (116.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

blake3-1.0.9-cp314-cp314t-win_amd64.whl (218.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

blake3-1.0.9-cp314-cp314t-win32.whl (229.5 kB view details)

Uploaded CPython 3.14tWindows x86

blake3-1.0.9-cp314-cp314t-musllinux_1_1_x86_64.whl (592.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

blake3-1.0.9-cp314-cp314t-musllinux_1_1_aarch64.whl (550.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

blake3-1.0.9-cp314-cp314t-manylinux_2_31_riscv64.whl (380.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64

blake3-1.0.9-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (384.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

blake3-1.0.9-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (384.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

blake3-1.0.9-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (487.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

blake3-1.0.9-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (446.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

blake3-1.0.9-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (373.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

blake3-1.0.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (374.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

blake3-1.0.9-cp314-cp314t-macosx_11_0_arm64.whl (329.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

blake3-1.0.9-cp314-cp314t-macosx_10_12_x86_64.whl (345.0 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

blake3-1.0.9-cp314-cp314-win_amd64.whl (218.5 kB view details)

Uploaded CPython 3.14Windows x86-64

blake3-1.0.9-cp314-cp314-win32.whl (229.4 kB view details)

Uploaded CPython 3.14Windows x86

blake3-1.0.9-cp314-cp314-musllinux_1_1_x86_64.whl (591.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

blake3-1.0.9-cp314-cp314-musllinux_1_1_aarch64.whl (550.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

blake3-1.0.9-cp314-cp314-manylinux_2_31_riscv64.whl (381.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

blake3-1.0.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (384.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

blake3-1.0.9-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (384.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

blake3-1.0.9-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (488.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

blake3-1.0.9-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (447.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

blake3-1.0.9-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (373.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

blake3-1.0.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (375.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

blake3-1.0.9-cp314-cp314-macosx_11_0_arm64.whl (330.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

blake3-1.0.9-cp314-cp314-macosx_10_12_x86_64.whl (345.4 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

blake3-1.0.9-cp313-cp313-win_amd64.whl (217.6 kB view details)

Uploaded CPython 3.13Windows x86-64

blake3-1.0.9-cp313-cp313-win32.whl (229.1 kB view details)

Uploaded CPython 3.13Windows x86

blake3-1.0.9-cp313-cp313-musllinux_1_1_x86_64.whl (591.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

blake3-1.0.9-cp313-cp313-musllinux_1_1_aarch64.whl (549.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

blake3-1.0.9-cp313-cp313-manylinux_2_31_riscv64.whl (380.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

blake3-1.0.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (383.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

blake3-1.0.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (384.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

blake3-1.0.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (487.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

blake3-1.0.9-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (446.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

blake3-1.0.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (374.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

blake3-1.0.9-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.9-cp313-cp313-macosx_11_0_arm64.whl (328.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

blake3-1.0.9-cp313-cp313-macosx_10_12_x86_64.whl (343.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

blake3-1.0.9-cp312-cp312-win_amd64.whl (218.2 kB view details)

Uploaded CPython 3.12Windows x86-64

blake3-1.0.9-cp312-cp312-win32.whl (229.3 kB view details)

Uploaded CPython 3.12Windows x86

blake3-1.0.9-cp312-cp312-musllinux_1_1_x86_64.whl (591.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

blake3-1.0.9-cp312-cp312-musllinux_1_1_aarch64.whl (549.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

blake3-1.0.9-cp312-cp312-manylinux_2_31_riscv64.whl (380.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

blake3-1.0.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (383.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

blake3-1.0.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (383.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

blake3-1.0.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (487.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

blake3-1.0.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (446.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

blake3-1.0.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (374.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

blake3-1.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (373.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

blake3-1.0.9-cp312-cp312-macosx_11_0_arm64.whl (328.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

blake3-1.0.9-cp312-cp312-macosx_10_12_x86_64.whl (344.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

blake3-1.0.9-cp311-cp311-win_amd64.whl (220.6 kB view details)

Uploaded CPython 3.11Windows x86-64

blake3-1.0.9-cp311-cp311-win32.whl (231.2 kB view details)

Uploaded CPython 3.11Windows x86

blake3-1.0.9-cp311-cp311-musllinux_1_1_x86_64.whl (595.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

blake3-1.0.9-cp311-cp311-musllinux_1_1_aarch64.whl (553.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

blake3-1.0.9-cp311-cp311-manylinux_2_31_riscv64.whl (384.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

blake3-1.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (387.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

blake3-1.0.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (386.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

blake3-1.0.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (492.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

blake3-1.0.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (451.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

blake3-1.0.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (377.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

blake3-1.0.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (377.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

blake3-1.0.9-cp311-cp311-macosx_11_0_arm64.whl (335.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

blake3-1.0.9-cp311-cp311-macosx_10_12_x86_64.whl (346.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

blake3-1.0.9-cp310-cp310-win_amd64.whl (220.8 kB view details)

Uploaded CPython 3.10Windows x86-64

blake3-1.0.9-cp310-cp310-win32.whl (231.2 kB view details)

Uploaded CPython 3.10Windows x86

blake3-1.0.9-cp310-cp310-musllinux_1_1_x86_64.whl (595.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

blake3-1.0.9-cp310-cp310-musllinux_1_1_aarch64.whl (553.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

blake3-1.0.9-cp310-cp310-manylinux_2_31_riscv64.whl (384.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

blake3-1.0.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (387.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

blake3-1.0.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (387.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

blake3-1.0.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (492.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

blake3-1.0.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (451.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

blake3-1.0.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (377.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

blake3-1.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

blake3-1.0.9-cp310-cp310-macosx_11_0_arm64.whl (335.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

blake3-1.0.9-cp310-cp310-macosx_10_12_x86_64.whl (346.5 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

blake3-1.0.9-cp39-cp39-win_amd64.whl (222.7 kB view details)

Uploaded CPython 3.9Windows x86-64

blake3-1.0.9-cp39-cp39-win32.whl (232.6 kB view details)

Uploaded CPython 3.9Windows x86

blake3-1.0.9-cp39-cp39-musllinux_1_1_x86_64.whl (597.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

blake3-1.0.9-cp39-cp39-musllinux_1_1_aarch64.whl (555.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

blake3-1.0.9-cp39-cp39-manylinux_2_31_riscv64.whl (387.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.31+ riscv64

blake3-1.0.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (391.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

blake3-1.0.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

blake3-1.0.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (495.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

blake3-1.0.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (454.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

blake3-1.0.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (379.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

blake3-1.0.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (380.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

blake3-1.0.9-cp39-cp39-macosx_11_0_arm64.whl (338.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

blake3-1.0.9-cp39-cp39-macosx_10_12_x86_64.whl (349.1 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

blake3-1.0.9-cp38-cp38-win_amd64.whl (223.1 kB view details)

Uploaded CPython 3.8Windows x86-64

blake3-1.0.9-cp38-cp38-win32.whl (232.9 kB view details)

Uploaded CPython 3.8Windows x86

blake3-1.0.9-cp38-cp38-musllinux_1_1_x86_64.whl (597.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

blake3-1.0.9-cp38-cp38-musllinux_1_1_aarch64.whl (556.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

blake3-1.0.9-cp38-cp38-manylinux_2_31_riscv64.whl (388.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.31+ riscv64

blake3-1.0.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (392.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

blake3-1.0.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

blake3-1.0.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (495.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

blake3-1.0.9-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (455.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

blake3-1.0.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (380.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

blake3-1.0.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (381.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

blake3-1.0.9-cp38-cp38-macosx_11_0_arm64.whl (338.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

blake3-1.0.9-cp38-cp38-macosx_10_12_x86_64.whl (349.3 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for blake3-1.0.9.tar.gz
Algorithm Hash digest
SHA256 5fa374fa5070ca084368776c19b420157eb0f2d3f091343d6bc59189929d62e2
MD5 8bd35515e582b09095014bb6ba9e0a8d
BLAKE2b-256 266a4cc5a9dd40fd8a6d283fd3761e5f59c490109571ef8e3c73245417e5a305

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9.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.9-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: blake3-1.0.9-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 218.0 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for blake3-1.0.9-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5ea0c60dd9c1e3d05610606579e4bf80f562854c46ed55f9ee8545e18987a480
MD5 e0ee5bfc556eef8461880692ccae4bfd
BLAKE2b-256 eca6ac03f37dc9aeebf398d42089720648b3bc8438e733d3e522196c5d12ab39

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314t-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.9-cp314-cp314t-win32.whl.

File metadata

  • Download URL: blake3-1.0.9-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 229.5 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for blake3-1.0.9-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 021309d760b390706fecf13498f9a25aa8f689bbb65a0896029b8fa223aae18b
MD5 07b06f6c1b93f014e280d83a96d6caec
BLAKE2b-256 c0e5b44c230108745ff9c70c7bbafe22563772bc0c22322a8d15c10455f6ca02

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314t-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.9-cp314-cp314t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8a99f896e7718050ed033a888245098aab3d6a5338f91cc9450c563b53f90ad5
MD5 d4316e77061d534582de2985d96f05d6
BLAKE2b-256 587d7aea0222f59cf84044ec52e2bfdaa0e3c355d221292b0ea1b722cf1edd6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314t-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.9-cp314-cp314t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 28404301de485e9546365d01b30f65eaa835520c4211d6ef61242975b6722b60
MD5 9c1a5ae7c6caa1c79c71f7c64c977d3d
BLAKE2b-256 b2017a84a7e10c5d14e6ed8a4403bd7f64c1e01f8ebabea0d6fe5f093b894cbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314t-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.9-cp314-cp314t-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 9cef6d4d07a7de0c44f5ba17f6383d55276d9efc8d601f75113538fcaa35008b
MD5 91286a4d782e0a94b560da52ff0b0bf0
BLAKE2b-256 ffcb452e92dba9402b36a953aa8b9b06253445ccce43dcd0bcf521c5e3c3e15d

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314t-manylinux_2_31_riscv64.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.9-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7f648fa425138452d1e585ac625c7aefddb946d9765906c4c12d564a1523cd8
MD5 5b2210d8654934cd2b48b55dfb8cbbb2
BLAKE2b-256 84fcb6e9aef02ca14ef62fa47783b9eeeb5b2d3f73fdf698d8bb94c36f5dd69f

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314t-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.9-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 42609e4adc4b2d7423137f2cb35135bca598b925c5af09d2bc0a2c368b25aeb1
MD5 67cb291f98c19e1c21b34765ab62e7d3
BLAKE2b-256 76169392bf1ebc81b5b09ce58b94613fa2d37308e825ff2dc7b54d00ee622c77

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314t-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.9-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4865a8cfb2b3d7c0baf5267f2fa6816a3384e836cd1bd0caf359f406cb1e8fba
MD5 6eb537c87e1cf8656b2168f9b179c906
BLAKE2b-256 acf508a9099c7177f282d2563abe4f7cc626c636642f7979cf58f2ab7ded2096

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314t-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.9-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9767f16199b99aa022b61ff825ac4dbd39864bf637ae712605a2ce1f8b6a55e0
MD5 b78552ec45d5812fc65938eec7cf87c8
BLAKE2b-256 b8e54ba968831b7afaec431c588c826cef76a96d6d6976188ed07d932072e673

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314t-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.9-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b5d5bf0f68cd77108a942c95db98e960d9c3d5643b95172f783822ce22667759
MD5 13a64df13e41b42c9c57fdee2f200e88
BLAKE2b-256 4f4d0224916202b773dfdf08dcbe4ed1ad1018d4ddcd4df7a7e2978d28f89b74

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314t-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.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09a69fcedf06785bb81d4d3d39f95ee65dbaf2cb246e174cfc9ff64d027f7551
MD5 dd6a144eaadd3bb1a4297836e638f488
BLAKE2b-256 9ddae25fa75d5bfea4527fc21024dde86a9376db798e469a084741968299f215

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314t-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.9-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bbdff61e049297ef3180867ce1f079cea7e5b372fd76953c3183da5b8124206
MD5 480ec4eaa37c9e11028acb523ea97c41
BLAKE2b-256 551ed92fb284fcacf86f5d1083e29d0a8c834b60432786928915238d9760f514

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314t-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.9-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5b35abe24a66a7b3db423eb4f8668ed7be1a362aa9c0024ab6483ec0b2c16058
MD5 b05002acbfc0c58c91be0fc8cf983fad
BLAKE2b-256 477ed932fe437ccf656cfba77abc466fb3d1a0ce3c31df92e760d9e4c34932b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314t-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.9-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: blake3-1.0.9-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 218.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for blake3-1.0.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0aba416bb2e3ef0c65e74d5eba21062483c714cd78e7e303c9d03c547fc7d015
MD5 1d79a6386a16e7e0de45da898bd6cac2
BLAKE2b-256 63abf29af72a8312b3827b50e55491f1bf9ae2347591de5c47365c5cbd2525a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314-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.9-cp314-cp314-win32.whl.

File metadata

  • Download URL: blake3-1.0.9-cp314-cp314-win32.whl
  • Upload date:
  • Size: 229.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for blake3-1.0.9-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 249e5964fa9e768924bc7cc3d4efe75a425bb5dd3fb7671c3eda8eeddfa50591
MD5 b03039ac211df487cb8ea7bd3c648995
BLAKE2b-256 5068d6198f4069a7c4a184ed854df45b82cc3e2d4b0be476b2a3ee65ad2344cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314-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.9-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 172d44245a19dfec08ab771c1b7a506b97783163cdc65f559fe020007e403c99
MD5 8ae7a3e9093034383ef5ec172c691980
BLAKE2b-256 d0fa06f46fc0aa486b799d776f9a80ed0b3605e2be1570cf48007860948aa5d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314-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.9-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f5c9d57f0dcb92243b6ae575c3065793edc9df9008d0ebd98d8245cdeb7c3f84
MD5 298a3b80f0ff211ac8224cd9ea45dce0
BLAKE2b-256 d6919af20d563f0ced71e08a60fc0ee534146da4e265710ed6792d5d799f4c0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314-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.9-cp314-cp314-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 ca7dfe8fb197ff8a3f5c915424183ccd52a99e8afb12680f51b2e1f4c9c6c97f
MD5 e4d3753951c0496f052f182a5277a3d7
BLAKE2b-256 3ccc0c29d9404155adfd6db716e9765d36ea6cbed287060759f5d764f0d9d99e

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314-manylinux_2_31_riscv64.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.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f65d77eb05331495485048f6804f53885b192b998acb7e6fe1487d941bf08435
MD5 b3c36c0ef3e010bfa782969f3d9617e6
BLAKE2b-256 e1b81298806dd6c464a6f807df24c9640ad3bf27ee54ff4de82b2b5a823a8aba

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314-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.9-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32bd4521ec2d477627ad93eb70f9ac4d01e12d1489024159bcaeff79466332f6
MD5 ee6c8c7e43288afb75a24c4feb891a49
BLAKE2b-256 1ec5a2b3c086f7e37c9db6017dc2890a76ad2a729e4a554896e855e511811e6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314-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.9-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8adb0b0032e53919ee95b3d4f911448d3268316c28cd7df232ff2a1e7c9a4ba4
MD5 18f668957231a533ed6a82e921b8676f
BLAKE2b-256 60fb6636ae8a46fc3352694188f5a5a325567782bc88fd1823b0b67be2c92184

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314-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.9-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 689a7e4069de681d9c5d9445b8b6473ee880ad04d7960a6789c60bd788980250
MD5 03ea005396cd768763c47a88e9696c60
BLAKE2b-256 9ea0f512799d1d0c0b4718fa6f0e99ccbe108e98bac7bf82c200803a62b57876

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314-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.9-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1bd981dc318c05375c3160a99df493b7cc4c83fffa1a34d14b18a071b47b262b
MD5 1eedec614cbc720c68e97398cd90f585
BLAKE2b-256 1075711b1842e0a90aaad6a1c9a9022e90aa16206ac1f224516118bc24482532

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314-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.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 95fc3545f80901b0dcd0508d16bc40f15ae39556709fa6cf86675f742d4f3c9c
MD5 da2e1b69613ca2e008d66f82bb2b1644
BLAKE2b-256 20f1d03950a86d105a6332a8c422cb87658a7d247e214f1ea8f29ed09ff04e00

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314-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.9-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83b4a2336105af3800f7e17ac4b943f293a3927a2d66a6308d50dba944a6953e
MD5 60dd254bbc88f80af71e99cb972dbdae
BLAKE2b-256 c6dcc0dab2963ddf04a4a938363f61716f9b75de6d3a9bc4a89e78f0854d4d31

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314-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.9-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ab0c030cf6644c30e786b0e785bde4e4596013ae9ea6ce9877e39d52383e25d7
MD5 ad00d9c2c8656ce04697fbbb234e85c3
BLAKE2b-256 2e4bb2dd7c25378a3b5de30ed908d38e6427bc4c644c0c12e8359361abd3a9ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp314-cp314-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.9-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for blake3-1.0.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 caded2806d2cbeed638c5e2517ed8b2a94165b3452fda35e72896142d22070e0
MD5 4662e4b865d0fbe2a8211262479821fd
BLAKE2b-256 db2ef09e8ed426f360aa2005206466ceab2f707486eb5d9db7051dbcbae056d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for blake3-1.0.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 508ccaf8f9377cc47e6026c2897fdc37de61faeb1420dc023b6379cc2474eb65
MD5 813c2675d2d8c016e80a1587665697f4
BLAKE2b-256 208534c3ea03cc90b2516628494ab3e0a98aec4ca8b04d037840ccd390e480ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3cbe7f190164896dc3908e920716ee66bc31d40f1a0fb603ed59ac53290fb9cf
MD5 e6a2cc5b2fac38f66c5e1854e8c85529
BLAKE2b-256 a7d87bf71c2c85a0951e406971f151435e0751716907e3924c6c48a2d6dae0db

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 eca281fedcbe5c56655bd5a4176e6036eddbbe57df96114a03838fce08b1e0ca
MD5 06d9538deea104343083e72a7450046a
BLAKE2b-256 f1fbb171e47c1b835483bcf1545ebc289458165f8dc0f5c7f74a9176d7e9af03

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp313-cp313-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 dab59b324aa65c09e937d6c43de5de85ec9581627f4e79dcc9806d85b54a1c34
MD5 36cd8813c05d343cd03d4958ae0e4b44
BLAKE2b-256 2208f6a213b950e30fe9ef7d7fc061ec388e66ed62643570226882e6f7136ea3

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp313-cp313-manylinux_2_31_riscv64.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.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66c84dbc2a31eda88b55bbf5c5b711037bf0698eba0fd1faf06bdaf313c39048
MD5 856e8dd0a5c0b1948c4b9394ae826a3e
BLAKE2b-256 f3f0fe7188201a29ee9b042616c786a98afd864d537ca96198e64c3fe4ff13a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b27550ada40f839aca64c66127940e4318bb6ef3e291890ef913017f6f637448
MD5 53dcedb946174f2f92ab67aa7a7725a1
BLAKE2b-256 b27aa21b52253292ad3e4df63ea4a01ce11d3ee8f4a8a8d80eaf0c7ce92a62bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 73a48f7e9f0e047f51a445d9b0361ab1907bdc72b6857815a84dacd2e59556f8
MD5 1254bd550b67421e8f6538f3d09ae4db
BLAKE2b-256 b10155b89389c5036c9d24b1d762d6265e91552e10b76a3c99fece3c4a7a4783

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d1ea0bf17b184b03444007646d902207d2b4d4f3e91a0cac3836552d83db74b9
MD5 df07f2d6b9eafd4c960952abbc8f5ce9
BLAKE2b-256 7e62d3c7c364925b3f10828e5137376f3947f112c32188e899b42f09c2fde98a

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 128a62136c9a39c7cb9fdaa5fb38471f2418853da7f5a89f31495735d0ba6f2c
MD5 c3dbaaaafe7c43327180915724b71097
BLAKE2b-256 1c515d4e198bf3ae902c6697ad6ec77d7210736ad8f680980e8b648dcfcd09a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 766f1555cbe614f14f399c2fbec0983568d20edb36837ba04040807eb9e1a609
MD5 e33c13ecda3a992125230254ad5bfe37
BLAKE2b-256 5eaa0a6967ff9a6ae182419a681aed54f7338b34a1f71372e90f787a2afa42e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0cdfeff65488089ef86f7587c76055ff72b28d28d10e427b547f5711477c376d
MD5 527cae6a37723cefe6b4a3f201d91015
BLAKE2b-256 4b9dadec22c719d8451af1dc9e624bf5907008ef1e0afa51aa69fd1e8c91e60e

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69ff5aebc7650954443aa701feff2028d7c7ea5b5e18ee265f15e2104e892328
MD5 2065ce2a92fe33de4e551ca4e080c850
BLAKE2b-256 411b95b473d649f5322e69674622a307ffdb4f0b63adb0a0adcbc5cb8a8833c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for blake3-1.0.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 15566065ff90ab3da46ec0be1417406f00507af902b6fb0fbc6563e77f02fc42
MD5 37d0c4f69da3b4b7f77a3ecba05bce72
BLAKE2b-256 12917db93e4689f0f145bcb954dc62936e5f5090548a9fa20c6bbebfaeaa648a

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for blake3-1.0.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ae47c3d5729ff89baa6ddf6de47fcfcc915985d39eb1bfcd6db653331f3c6fcc
MD5 094dd9421c35d2aa7b537994696c4caa
BLAKE2b-256 ae554f0a23b72795292e74084834130900ea778c0583004519c86698dfffe1a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cfaa671b07eb73883162ca940442193868358b0b904cfa266e4b74131ce966da
MD5 3f98cc1aeea715b36ef6ea2b8dd76021
BLAKE2b-256 2c3c37c1dd3539b7bd9b6d2eef019802aacdb4a3d48ab484b140603bbf9c5b5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 91db52a809b68b5bebe7c413ddcd230e1f759398e7fa7a873104595a4fa648b6
MD5 ab5a11b97e0696d37a8be1d1a76866e3
BLAKE2b-256 540ae7af679c719368b400c9ba9c3460072aac2ba077ddbd4bc806fef28cda03

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp312-cp312-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 a288664d08dee154cc496e06e62517fc9e655ecec12b0d7db538d244ac79edf1
MD5 a039c548efd9757c28fff9531cab4d14
BLAKE2b-256 34cfc7863a185550706a9624f6aa7b6d46470aaed0bb46a827c5cda2a7d03151

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp312-cp312-manylinux_2_31_riscv64.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.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcd56a7a972c4185070f7042ccc20166927eec3c0f98b8405f375d007b604a0b
MD5 bf16b312ee0cff99e9b76b3dba783e1d
BLAKE2b-256 f610e9907f5b86410d5071982aaf05d149ca4d4fd8acab7e77eebbc9a333c7b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6edeb3d49a24c307995899b70dd47aa901d0e9ad51d2f8a79aba4f074f32d8c5
MD5 3d706721c6814936567b41b24e19e72f
BLAKE2b-256 8d3fa8dcaea9e0b26e419a540ca0cd6203c9fbb505e85b02b03c5a59bf9e6a45

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6879739e7904b9c42afbedbcc2e8c36cebe140fb3fc3f5c492993579cf5cd516
MD5 2422b4fa328252ddb39121e994f7df18
BLAKE2b-256 c551efd1f9b8a9d3e9a0e235f3ced99a738529a1019fe78b3988e29d9c2fbba6

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2a800b87433955f37691b5f361ad29c7dd3ee089c9cd109adc5aea8e24bc4c1f
MD5 48a79df7ea57ec53af5b9fe582176d5e
BLAKE2b-256 3c630d209c44b2041bbe130ced12a23c92dd995fbfe5bce7ee77fffea16f5cb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b25ccde5a64be070f20e5c7a81da70292db40b164b6c77588cbd6230856badbb
MD5 b8041db2bd15d952c6fd39be20cb185f
BLAKE2b-256 b179b5b17d3004bb81a5732c0b176c812703d200ed8c652b3b7713b9633bbe10

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42fa57bf462285ef16400601b0fd32214c248ba92505bbb94b1221ab9af5a092
MD5 9fbf5db2841e88dfe9fc418a809983bc
BLAKE2b-256 f27866580635d744c826671fd219938caffb16281a26f62c4f856695d4233677

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72cdecf088a9d25e6ec79948a578995649b0dbee407e7a46c543a9ecc0f6f281
MD5 6b0a35a96126aa1e870f07d9d5c6f1e0
BLAKE2b-256 369dbe8b1f7f85b12bb45a0fade6ca7bdbf83a507d23d0b6141ba29fe69c8cea

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a70c20542d5e7960983a0ff32999049a2b0e5ef1f22dbbbdfb51cf04828a4156
MD5 93550efcce711db53972bcb0b708c7b7
BLAKE2b-256 5cd29bdf8345c70993aaef635398f52edfb915d6e8ad2c000c801204e387c456

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for blake3-1.0.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d819457dccfd82fe34684ec99e36725f747bd5761a0e17f537387fb31d121193
MD5 6a4845d73b9ba76a4e400c07e46e7bd7
BLAKE2b-256 2368ea698e6df48eeb417671544cfbb18c60f863cb689306cc52f19666dd98f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for blake3-1.0.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2f4ce45da903f3d0a7e342fa70c7cce9c10cef6b529eadb4d6213be0ab0eaf84
MD5 f1ae356a5df463326b0d2ebdafe80e70
BLAKE2b-256 e6916ddc7a8b582a0871f23d6db722f4950a8918096d5fa10f9f0f992c2aea39

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b4102ba86b86c992a931b4a88c58a632d6097461e14a1e63ebd2ecb98ff0898f
MD5 e42eaca8606454e0867e6db5f9b0b099
BLAKE2b-256 39cc7fbce61a0b24bda1aac99da674bd74ac2b687b61db071c888ffdb30cb47a

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 82ecade6ac425fdfc39a4371d6d9232fd6e5c28748fd8d3489016ead17407014
MD5 ab7102a81ad5cce1a146df8f695790ba
BLAKE2b-256 3aaa317106349d10de3b51332ad1e761f4864ebe887854396b75975304dcfbd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp311-cp311-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 2fd000708662b04be211a22c1095b65fe399d7276e9f3bb2fd1ef8aacc545791
MD5 531a24fbcce73703f40edbfd37b0f66d
BLAKE2b-256 590ed4ee3d89eece42f86eb46663aa42702000516b7ffbc53f60b918efe95b57

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp311-cp311-manylinux_2_31_riscv64.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.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 964b642631a3c8fe117b3439c8ae64a9a0981af9444e409656d1f1e464bfa125
MD5 c4f51e33d302b80f065363b6d6f81f08
BLAKE2b-256 803ea4cfb269f3e0955598b415a7843c358c4f79e826e3c9118dc9fb1f101ee6

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 65c0c20014df687694af5ccf0cec3bdb194511da8ebd50c30b0fd55c83fa4fd5
MD5 1b37b28f2c3a988a9ab0e1695092e35d
BLAKE2b-256 eed1ed319477f6d263a4f6b7e9aa465b06be5235a854923edbc9ea09508b6638

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 28528d1f29e6f3d45faf3482e1197e5e175730eef38bdc74e56ee11b68e0ad0d
MD5 a2523f5b294a72a342eeae76e320228b
BLAKE2b-256 2fa10b1b0dbf2dd772483e372237bb65385602b019e24b67424b1fc9e5447837

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c99afb0459c82dd13e456b6b68d45c4768b539ca998dacd3ed726f1e75e91dc
MD5 4a7d3b3bb3e8a1cd4a75dadb074c75b5
BLAKE2b-256 e03dc7a699fb60d8ed31f3f28e6aec7658d29e45ec89e7054906b3040ce3ee65

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 09deb024cd75cb200e7f647cd038800e6edc8f190c8188e0c69ec1c2b920e125
MD5 451da6b56aa5e1d9c5daf4ba7e525352
BLAKE2b-256 9298dbc433f2a45be1b2344a6035d4212dfb6e6eb45046ad15103ead9c82d491

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ee96daaa850700fd342a811fa10a8780fd2e8464a71b83a1779c7b6becd3dd5
MD5 6a344437efc6da9dad7464731b4e8103
BLAKE2b-256 b9d6d5462ec19a7f3d084fe327e08618fa107799ee708df04b3a2d620bd62816

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5e1f21b49492d01fa5a02084894c491ab9e7a1867fced107f7126c80d067c94
MD5 2d52d0bbf3b9fa7d524cd7798b77be33
BLAKE2b-256 723a820d2f729dfe152d5ebde16390f808c762dce3f21fb764ab033803ff2b1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f169519c7ef25ef2c446b05e2f08e7e59fae312d569f98a3134b38d4caf7abd4
MD5 959e2f63a9f87622ad9d3770ff14ce30
BLAKE2b-256 2712aa8d72228b6ff61c675bd6f55ab138a91d71499c8a707cc9fb2052f1d2b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for blake3-1.0.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8cd10c6a421a7d3c81136658e52e9ef58bfcc1df04193466664eb24981784f4c
MD5 3a8856a3cdd6aab8158b51795b2ae3e0
BLAKE2b-256 f212f23a64ba2ef270457345499f857628757fafd83f52274c1588e1b4a5b4c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for blake3-1.0.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c755044ba7bec3d03dae44b968194112f0eb0e8c4523465f3dd9e1a87e178d89
MD5 37a414dd7bf780a9a8f0565e9cfeeed2
BLAKE2b-256 da42201d43f8fee831693f34f7b384a65e41ab7720e6cd8d775cb57d9da69993

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6f2dd643166dfeb7cf4ad53eb2d801f944d247212d3481950b4d5b4a20551461
MD5 1f4c4642d8494fa3ea0f0ee35729e568
BLAKE2b-256 19e5e9ecb843308db2b5ca29d604589a15f50d13c20df792260053bf9f014de4

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 216977b1d592a60150cd5de64d5853dc6afb0eb522cb387723ae7f78f380d947
MD5 f1cd679a1e84ee7a2bed93bc0fba80bd
BLAKE2b-256 6fe8fe7e40384c0f7995fe8dca57428241768897533b9e17cbc367c1614ef82f

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp310-cp310-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 24acb1e6f31021fa08b7eb31433035facfcf0d82e964170d5eb85a30ce913ba9
MD5 c9aa0dfd1afef1cce7bd0d0a7a4b2f17
BLAKE2b-256 c2b36315be017515868126e106f3dfe50223fbbb87bed67109bfbf883228f505

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp310-cp310-manylinux_2_31_riscv64.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.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa6e5c7533c915a24d840ae4be787e9a6059be7e77944b005b3d967a0257a17d
MD5 126eacaa5d42a6dec59d3c75c87abe7d
BLAKE2b-256 0ae4c8fa46a0e24cb877fbf28f839d8ceda39418259f677ec55d680ea433b62b

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bca166d0b01c00dcf2a936f790ed947bd9079b0a0a7df1b76746f201aa4f4ac4
MD5 48c089e786c709a7c6c41b6160814daa
BLAKE2b-256 a2027ca45b504796a755bcd765e54f0c6762c16a1dac1adec3a03a45ae9c2f12

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dad0a8a716dd201860f8e82011a340e6bdd5ee37a8eb4357b48ac64c4e6de1c2
MD5 5251fd938b4f74db900f5005e85debe5
BLAKE2b-256 886944423d63e7c6d09000ce69784dd9fb45bda93237f1d2f611099f5ffe27c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a517f0460007edec3767595115c520ed1f157ddd0ed23dddbf6b9d8b0082afb6
MD5 b4914e7f6a518381eb4bf57ced1b6465
BLAKE2b-256 d1922df756e410d18aba6fef6392b35b835c76412709739a2cde552d246afa4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b985eb08db76550ec97444e03b10acd737baa03fd98aaf3b8455a1c644c8f5d6
MD5 672341a62587eb8575d57d7112460a3c
BLAKE2b-256 3d8ecef564771169b6fb429d9c52652dd2da8c9bbadb63d2d66f232f8bf045de

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8114fb2a1f6cba9cba5411d62cbcb283b2205b154d0076f20b77e22592eb2719
MD5 b0fb46885b6dad37d599d8d602585b9b
BLAKE2b-256 a10a74c67827a9cae097ccab7015018182da9cfec347c686a25ef33faf2f46a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9e1d0392624c2f9d049d786f0dc547ce818d2f2b356bcf1c4d74b6f9cc026b4
MD5 cd922dff149437a53ae7c507de4ddfed
BLAKE2b-256 0b4d8aeca9a40899258353a8f79ad164fba1184bc1554ca18607cab4671952f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 38e61d3b0386af16b3c03a18e0db82b626d63796274637a1fef855fd1c778d82
MD5 a827c7789b9abc28c78632a12a5aa1de
BLAKE2b-256 9b2f5398493cef29d9f216be1ff74a303e809e4958a633a44545035a98af4f60

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for blake3-1.0.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 01e136de1078a9011c82beb4a1cb400644794068c0e80877415328bb46d93b47
MD5 d269be38167a1aee4222317643b5ee25
BLAKE2b-256 fdabf619cb20d8ea697952d4574697d88a0dd9d52852db192c03d55b73c2fb87

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for blake3-1.0.9-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 837e116ebedf06e48491f4c44a5e8804a864dad07cd7b897ebb507e410fed740
MD5 2de843ad8bd854d1c89b714691258ee3
BLAKE2b-256 1bf0d295f8cf0d4424d79d002d713c2b467c9232308909acccd0f0692a221418

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 78833070b782bbd2b987a2a239c796f525e74d338d8cbc23557945548d5488f6
MD5 7d1999ee9e2ac10b90b181992fc12d52
BLAKE2b-256 7ce7b5897f5dcaf50c37469998d027ed47c7e8ec7108cafca7c71b723583bd79

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7a760e8f8ac8b49761fc6a28ed5bbf6bbc8008026134498ec2b8b20f26850499
MD5 ff121e9aab7123c2a43dc17fddcf881f
BLAKE2b-256 75d42e183d2fd263a8a6f95a19b0027a8bd38ae7c28ca4e4b2ca4f240451a08e

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp39-cp39-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp39-cp39-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 2fff822c0a14b1378769f26eede9577e1230b289fa9a2e9d15c751b6d5a81cd5
MD5 55a0ad59d94e4183572d4f66e6b9df02
BLAKE2b-256 61a818903000b4444000886433c02dd7629fb0f2e194af2187bfefc6e820fdea

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp39-cp39-manylinux_2_31_riscv64.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.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34c947a95a68ec103846525e3a99193f9fcf5e762e40dcce80adbb8e398abef7
MD5 10a50081841d34ef66399c920388dcc6
BLAKE2b-256 6e906629859dd55e046634caeef4f55c6e27e5fcc8775f52c58f44238c06d95e

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c32a1f7ffa0a88c4f8dfb75f87297e8f076d3a63f714da99f7e763d8c435e14f
MD5 444c54aa949f34505a054dcdf82acb4f
BLAKE2b-256 8ec9250030d296dfcff24c53d6294dcfc9cb9e1e9f0ec6f1c9e89debaca6fe57

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e448a4f985b3e4709541dbce057e5bb073527001613f8eeb1ce2705988262f9d
MD5 99870dffae18addc5077bd5de75fff62
BLAKE2b-256 6cc962346bd03c2a2e4d0e3500e514a0edb4d58fd3e4c1d09e0b305ed3a355ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 54e35f3b71d5e2f5b1434a01f44cf386be2ff3dcd0ed6589eeb52a0076b2e016
MD5 f46f3fc5a5901b5b38103baf1225ec72
BLAKE2b-256 d2ae2ce423d4d8c5918a02ab87319144da41c404ce6c8705ce0010f3eeb7cea9

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f9d8b6c6af52a8ff499debf5fd15d7395e0ed837ec2a80fd828b4c6b970de3ed
MD5 2c593528dbb2a5c78ff94bb992c0c37b
BLAKE2b-256 287781b3a50ab0e3e3710b0a211c92f8b333d36125f58c5424af47542fdcd5c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a5917733828841e5bf6b9b7e63d62e0f70ec2cf262f5bd189db51c5a5508068
MD5 1fb06ee526a00320c9a8c99807bc116b
BLAKE2b-256 361e0b417346ffbc3c15ddb548771aeab73e15f1811a5dffbb2218f40eefbe06

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94d99e6ca7d5ca684bc48f3aa9ec6e78c72c775ae223d131b9efb217389f0195
MD5 5cdba912f8ffe666e113d428dee9e251
BLAKE2b-256 70320aa617e8667721cbc0db82d85384140e62c670a5102b852acba6b805e78d

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 85262504baa150d64a599563d7a7bf19331fd7a2cc4c7b050cb31edfd69edbee
MD5 ba9f76db235a92ff178000339552ce2d
BLAKE2b-256 68330edba145a4fc7ffd60046db31767cec57b63b5d1ea9c5bf92cfceac98f97

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp38-cp38-win_amd64.whl.

File metadata

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

File hashes

Hashes for blake3-1.0.9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1ff480ca2bee74f56d90658a44176f0abdd9b766a181586b995fee358a9c40e7
MD5 8f8af2e94116f1e98a00f0533d25a745
BLAKE2b-256 2e067f530065105e47ffb6d278f5b5a8f34dc552e14774f08d0971bb81bb5eb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp38-cp38-win32.whl.

File metadata

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

File hashes

Hashes for blake3-1.0.9-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b9f7205531b41674316de9f15592c13ad3ebcedadb562fda8bbd8641c6f6ef8f
MD5 cef96594770aaf52f729f44fedd2a2e8
BLAKE2b-256 62e6e868ae9e287748687d9734a0b92b4eef1eedbf5d3d892c4262bc2e34d53e

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 66aa1c40ad019fbb5e93d603300c4478a59b98c40c7ea13ac036676c26dfb1c7
MD5 7e857d88488e3d4756a8de571e848efc
BLAKE2b-256 0b2c006a4b87e4007f7659218244bd7a889723dd9eeb0a51a01b7fb4da474763

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 188127f98106309e4c477977d29ee8588ba4b153ea5a7eb9bc202d5b9f05d0f9
MD5 5d0435236b6996794422320ca86e958c
BLAKE2b-256 036ef1f9ba34555d17ad9aecd61c47ab478830e113509004ad032b981743a08d

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp38-cp38-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp38-cp38-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 40bcc18675d583e23722d6c106ea3068ba705f7575f874c1ca14a6af0728ccb6
MD5 72dc6b59d5ca1c05187d246a13820ee6
BLAKE2b-256 5931ad727bb5e504f42778164662af2ea30a427efdf4daacbaaf4405e5c0388e

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-cp38-cp38-manylinux_2_31_riscv64.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.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f5f60072fc7191d9918395bf2e701bcc60b44aeda0bf0a173abafcf49e10cff
MD5 f0eb59047512d59b1ad89cf54a6e24fd
BLAKE2b-256 a5e42151bb188abbb303b3e56ce536867300698e578f7a213878eb3328d06af3

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9d13051df059730efe83c6df142ba5a2ad67b82d50f9a62f3a556d6c2af201e
MD5 7e9f5a39455b8b2f0d80822a0415f022
BLAKE2b-256 3ed88762a66e7db4fe7c6fb60496329116ba0bcb7f2989e4ca91ffb21136764a

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c9a8b093d0e57a9fb612dac768b329a0719c09357e7ce1e5403106a7533b5ef
MD5 84377a7238317af1ccd593ef4a7f50fc
BLAKE2b-256 da2df1ef7028646f4e6161b46d32635942964427c453ef8a3908478e1adb8122

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e779710aa52a0fe4ad96cd6bcbcd5aee1bcee7a748221394e4a39a58b21d0bac
MD5 6a8bc52cee98210553f715bf7f3e8c48
BLAKE2b-256 df84810d1e02cea70d45cd6f4eb03ccd60629bb77a0fd19ce2f176007cd82140

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 baebf1ebe6ccad936730a651dd74d40433debc6e19cbb34357222050fbf31189
MD5 95f15befe6b5b73e1836c5e870756766
BLAKE2b-256 a57c686be4d9c52b7a1d5b6ed3195650a46b335a5ade667b83cd6d0f1b70e47a

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb5e6c80e7c0825aa7223bca0dd2c6e7ea506db7ec734094631ce5efdae7a554
MD5 29959b1271efe134ace6ccb28c897d47
BLAKE2b-256 055f1c248ffaf0059c956af32174ad6187ceab36ca03afdff0e06a245f3be52e

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c0570338b4e3f6dc7943196edb029e0e4f74fd55d9703a40028f5b6c9c09dc5
MD5 f136f06289780e7893ee62fc705cae45
BLAKE2b-256 defa7a5c4781f65ad5af8231919561c43f119e37449d3dd165cca128801df283

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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.9-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blake3-1.0.9-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fe3c59f8a7b5460fd374b264559c5da7af0a33657a9eca95fff6d843f02cde9e
MD5 dcb34466b9351bd1ac467c726dbbedb6
BLAKE2b-256 9a17b8e15b206c12e52bb8309b30e4a22f862f4d9f94457b6ba6b758dafd9bbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for blake3-1.0.9-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 Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page