Skip to main content

Fast deterministic dict hashing via mypyc

Project description

hash-utils

Fast deterministic dict hashing via mypyc.

Functions

  • dict_hash(d) — deterministic hash of a nested dict's full content (keys + values)
  • shape_hash(d) — structural hash that ignores string/int/float values, only hashing keys, value types, bools, and container lengths

Install

pip install fast-hash-utils

Usage

from hash_utils import dict_hash, shape_hash

d1 = {"name": "alice", "config": {"enabled": True, "tags": []}}
d2 = {"name": "bob",   "config": {"enabled": True, "tags": []}}

# Full content hash — different names produce different hashes
dict_hash(d1) != dict_hash(d2)

# Shape hash — same structure produces same hash
shape_hash(d1) == shape_hash(d2)

Why

shape_hash enables massive deduplication for jsonschema validation. If 13,000 dicts share the same structure but differ only in string values, they collapse to 1 unique shape — skip 12,999 redundant validations.

Performance

Compiled via mypyc to native C. ~335K ops/s for nested dicts on a single core.

Method ops/s Deterministic
shape_hash (mypyc) 335K Yes
dict_hash (mypyc) 334K Yes
json.dumps + hash 112K Yes

Development

python -m venv .venv && source .venv/bin/activate
make install    # editable install with dev deps
make test       # run tests (pure Python or compiled)
make style      # ruff check --fix + format
make clean      # remove build artifacts

License

MIT

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

fast_hash_utils-0.2.2.tar.gz (7.9 kB view details)

Uploaded Source

Built Distributions

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

fast_hash_utils-0.2.2-cp314-cp314-win_amd64.whl (26.1 kB view details)

Uploaded CPython 3.14Windows x86-64

fast_hash_utils-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl (102.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fast_hash_utils-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl (100.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fast_hash_utils-0.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (101.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fast_hash_utils-0.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (99.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fast_hash_utils-0.2.2-cp314-cp314-macosx_11_0_arm64.whl (55.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fast_hash_utils-0.2.2-cp314-cp314-macosx_10_15_x86_64.whl (57.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

fast_hash_utils-0.2.2-cp313-cp313-win_amd64.whl (26.6 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_hash_utils-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl (101.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fast_hash_utils-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl (100.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fast_hash_utils-0.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (102.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fast_hash_utils-0.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (99.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fast_hash_utils-0.2.2-cp313-cp313-macosx_11_0_arm64.whl (55.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_hash_utils-0.2.2-cp313-cp313-macosx_10_13_x86_64.whl (57.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

fast_hash_utils-0.2.2-cp312-cp312-win_amd64.whl (26.6 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_hash_utils-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl (102.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fast_hash_utils-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl (101.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fast_hash_utils-0.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (103.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fast_hash_utils-0.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (101.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fast_hash_utils-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (55.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_hash_utils-0.2.2-cp312-cp312-macosx_10_13_x86_64.whl (57.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

fast_hash_utils-0.2.2-cp311-cp311-win_amd64.whl (26.4 kB view details)

Uploaded CPython 3.11Windows x86-64

fast_hash_utils-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl (101.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fast_hash_utils-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl (100.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fast_hash_utils-0.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (101.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fast_hash_utils-0.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (99.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fast_hash_utils-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (55.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_hash_utils-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl (56.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fast_hash_utils-0.2.2-cp310-cp310-win_amd64.whl (26.4 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_hash_utils-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl (99.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fast_hash_utils-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl (98.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fast_hash_utils-0.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (99.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fast_hash_utils-0.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (96.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fast_hash_utils-0.2.2-cp310-cp310-macosx_11_0_arm64.whl (55.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fast_hash_utils-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl (56.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fast_hash_utils-0.2.2-cp39-cp39-win_amd64.whl (26.3 kB view details)

Uploaded CPython 3.9Windows x86-64

fast_hash_utils-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl (99.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fast_hash_utils-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl (97.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fast_hash_utils-0.2.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (98.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fast_hash_utils-0.2.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (96.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fast_hash_utils-0.2.2-cp39-cp39-macosx_11_0_arm64.whl (55.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fast_hash_utils-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl (56.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file fast_hash_utils-0.2.2.tar.gz.

File metadata

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

File hashes

Hashes for fast_hash_utils-0.2.2.tar.gz
Algorithm Hash digest
SHA256 c1c2d5e5c53ec82c4be5dfb8a45f680a6ee23a51b955fe882d6c54f58cdf57fc
MD5 118fa191e5492ac3edfe80653ea0c79a
BLAKE2b-256 a4c4591360943964d6b7fafeb16a7ef1213b96b70109234e4a8641a180656873

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2.tar.gz:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1862d8a019869b6b1253f26e6d3df7afa760d5c445a0c07b87280fc05273bc58
MD5 03b587484443d1366c40818446b6b136
BLAKE2b-256 2f9350a668ef69f07581ed630f6107dd420dd926c3cd8a1466cb5e914fb313db

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp314-cp314-win_amd64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63d86fbfb207a4ea6247110b61647f73e6904b74dc3f8bbc6ba1e99867a9cf91
MD5 dbe8fa52378200ced432743d5343f718
BLAKE2b-256 6e7e1116fe32d2934bba13e6974435f98672c91ba6a53b0468b3cfaae5dc9ea8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6620152c7c4e46b80ada66a07c5a0f19fb41b61168fc348f358655cc9760c743
MD5 71f04e73d3d1e55899fc933370988fd9
BLAKE2b-256 bfa1f49b76aeca590ba93061b0cec0aefe1925e5e1ef51ca080637a932c88b5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 05c6f37e9913f4d2fb051f3fba6283fe1132d0ccbc1bb301e11b554840970218
MD5 ec2eea11f99da504a58e85bb51218185
BLAKE2b-256 e78159cf4ef136b7a0f154c2fbde0a0ac21f1b47205a41c5ecc65ccf3bd8dd69

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cbe4646a15d58eaa65acc9fe4e89029e420e7be746a816dd9a4c0ca9504e239b
MD5 21fed35ea1b8ce3becfda26e17881346
BLAKE2b-256 9e1b2d44da045c2a1bf5f097757cab72cda80911d697d0f1383caeb86b19155b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40e4b215a4055cee767bb0c4f0fc59c6faa4c77f6a84f4c012dfc29e179774bd
MD5 555dfbe60502183bddf3919ccd202e3c
BLAKE2b-256 a1913117e3ed23a8ab430ca102641478e14bb98639eca4207ee5ec8fd299d57e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 747d74a2692cc8235ac19fb4016baa6d729bd1efaf830b0d612967d89e84d5b6
MD5 bf3e47966e13fc0fef5a56abbdf53066
BLAKE2b-256 bba81c2c53a48bce0b321aa69602102c33803e76df0ff4b5ebbea618576ba799

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 80519b1b5c3600f69d4e922af5856101104ccf69e5a8f3af7d992c7a200b3bd8
MD5 f815e8e32b2d71ee495278156af6d2e4
BLAKE2b-256 6016e85a0213ceb91ec868c4b01eb60a7077e4e74d2e4bde38e51ecf3dd70561

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp313-cp313-win_amd64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 661214138ac78a8527b76a9917491e88b4ba59f3af10f6413f99d1bdd43a4a34
MD5 5243e032587e92cf0fc5b988fc44e2c0
BLAKE2b-256 683920e060b7d1233c416112924b44b3d2c13d595dc29551b7ccb087b98586b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56fe2e2281cf8732204a7f05bc3addf4661c45ce98e02759274dfe5f6a4d3a0e
MD5 64668ba0c2bc3f8b6b9788ee89db99c7
BLAKE2b-256 416eab2ea63dac69e309bda3e7be64ee84a894192aa3cbbdf9d76d1661de49d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 451b01829937400aa6bc6e04cae2b6ccab443dfb03a52f54af7b9f5b2dbb1486
MD5 79390798b7b5b36fee2d3191e2c953e6
BLAKE2b-256 153d0b8152615214db49efd248bfca9f97c46c5824027972eab68a63659ef9c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 640eec19a3efbf59431563eac7813bdeb288b07818179192860a8dca1599aa85
MD5 4bf5f688c1722583129acced57017e25
BLAKE2b-256 cf615459e9e563da17bcbce8e8bd6a8c07e49db20a72fbe1b15f2ebebae81b9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afe7a80a7604cd5f2c9f0e3690d10b62246b8fbe7b81a7e4b21b57d51d9c1e05
MD5 aa8d22017922c4363f5bad8a661c0263
BLAKE2b-256 377fe18db74de02fef7c67afba515a95aeaf7afb6a88093abe730bc821b5c4ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 90999a859171b78d8d4ee11cfd2e344662d2e4c1603cf967dc2ab856a25f3969
MD5 6ed35fec5f047d67e6bf90cbab867548
BLAKE2b-256 4f90f2fbd76382e1902c0f5ad37891f0ac459f3812761a818646791e5066dbdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8449bad11880957cf710ede62f84de6768342fc8cfc21c26a51323fb43034f0f
MD5 b742506c45452ce76e998b06205c7274
BLAKE2b-256 db9e1297b505c3b8120f9464dc3f86d9fe3706ea3fb1ccf006291dc8457cd877

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp312-cp312-win_amd64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88e4c00a7e22ddf95ef115182be8e40baca42f4ac4880167a8c6b6c155dc8468
MD5 50b778c77ea4efd3a02cb2a46a50fc24
BLAKE2b-256 dc6fc151f3b4aa0ea34263a31ba7e022402d533b498afb4ce0cb226b893a12cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82841634df8c69a7b1f64141efadc0595dd814484c064f79ac01a56b84a21e78
MD5 dee7529e5e163bc2925ace96c4838d5e
BLAKE2b-256 97840d8736e04b07485a1439bf12dca52b820fb62a72e6352c2b1720753c4613

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 89056d66521ab2b45404a24f74f2518da5b3b56ac5eefbe9dbd9c7973c1ec5f0
MD5 0637868abd85d82bcedf5b0c30018101
BLAKE2b-256 675cf855063d2af2dfeb9d6ef6dd189fa37db5e43464c4a9fea0dc98c86351de

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ad091c658404851ebb96a3576c0fa2920dd40c84f6bcc3bf12187ccdd3cb4021
MD5 b3f9276b62be9891f952a319578a08ad
BLAKE2b-256 caa519cfb609a3cb3e586ada5c6f02a2145712e98ef42f57b2b9452574f88c90

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be62d1aced99867961e3e7ae25c4bd06dae599447af5f4e539891297df61cb6d
MD5 ef0e48538a4c1f0ae5b6d0f71e325659
BLAKE2b-256 a638586c7c0e385e91547ee4aebf3ad725551091b3dbbbe16f8b06b4d03f9084

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fcafab3339b019fbd916f56e41b5af5c8b9b425c47efecf7b61beaaeac456ab2
MD5 a9c358a2d3f342dcbb32d3f69f95bcbf
BLAKE2b-256 3a3a4426d5636041c2ab64a9a4cf4370fa92a02b7d25351adcd080af4039c1b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 81c6170c4c2109d8a8f1feb4e311b602cd38f4eb9ed48ea19411ef9d2ada0337
MD5 e219803dccbb3043666ff25287e2fefa
BLAKE2b-256 4dddec93e86d5543fb959eed7ff6fec501c5b65202a880b9847ce19ecb2763f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp311-cp311-win_amd64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67732925e7734fba046d1828c6f0a9f581cded3bd6e08e6d3e1c754d58a02c4c
MD5 b0ae86badcf89436bff5d23cae14f843
BLAKE2b-256 42642d8693c6b6e5a0db8e2e9039b113d78580473e259cca9d1935713c86a3e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f04d90e24c1693924aefe43d233397282db6b7c698fddfbd912bbfc8895f6887
MD5 fe2c426b56856fc4e369b15ee580b978
BLAKE2b-256 d9ce594f654e821596cfb9456e3518cde4efa12c4411e92c05347ec5c9bc25a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a8e8e2fb4915353d1269f6c3f46558613dbe0b87e8e8e1f693668fd68b7fe9b5
MD5 0589b8615fc3a0a02faba971fb73ac57
BLAKE2b-256 36cc53850f4a741cbf79f7fb1bb9cab4d573bd38153063dff8e4f40fde92e25b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5541ad224c306b5ee18fb38454fe0c7d991b785321f299dd15f3c43eddabd26f
MD5 3a303c7c2966909895626691d9d1de2f
BLAKE2b-256 14533618c54cd3c0c97766d88efaf0b9349118e73277ec414db2e6a1c44022c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6bf22c72d9f59556b4cadb1861160f256bb244d247526b80aae7a16cd6f2076
MD5 d135183254262f4deb00c3697488d032
BLAKE2b-256 a698e9c68ba1665e2ec5ad846e57dc1af53bd4db1f376141f70de47bb3ac0eb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6fe2b04a63c5976b8f3ce2f6320ba46fa44665291508ffb9dab5b6e9aa0b4cc4
MD5 71c4787ff2363d5ba93d7375f020d30e
BLAKE2b-256 473dc67688be5c8a620c5904794067f743ca305d7138e4fb9993bcde53b522dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 041c9bcd1f7f433f8b2390b4d522fa641e932fe7e1c17984e11191543d4c84da
MD5 03a9e844850d26898b13030e7cfdd254
BLAKE2b-256 5754048ac4dfb438e5798b85dcec5fbe0fba968532e95b572c6c97987b1f1043

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp310-cp310-win_amd64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 668c1ab72c5e5f4a13dedc17d5d7eba66fcc7fc19a569205bb37e2896981e154
MD5 7a6a1b664e628792362a3796f23cf002
BLAKE2b-256 f23916ae69979a87e9523dc08a5437f9460d5033b2de0c5ff9cdf28a5663c19e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee9f1eabfd86ac26010d85f3281d65b5b03985e1b5a9f2528484134d3cdd0d15
MD5 62f9e7b60a8b80d5ab2ecc89c4e8322d
BLAKE2b-256 5cff4c2f0ae5c5009892a241fdbf5b2de911685b0f94e8a2c2e44ee7f40c901b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 72e7d0d1724ddbb5abdee8213290af31361a53780160b10e9369115296d169f9
MD5 3d7e8645b22c8abfe7d883af6320114a
BLAKE2b-256 d9fe507739956bcb158bd7b8188fbf1f286e59b6ef562ede0a219ce4ac3c26f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f68eb0b3adc325b3cdf49c19c8e4bea7f4c1be9bac1e224cfc15fbc19867751d
MD5 95ca28c1f760ecffb64f95f7d4fd0f56
BLAKE2b-256 b55b6dc9c2b9920a794dc3bdaabfb6faaea03450ebf3588cd2d1505a1ac3a008

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b24d32277b183b26eceabba1455a2e77c7de3266a6e5336b4479332c9d403cd
MD5 474f962222f3ca03fc624f3a0b3466a8
BLAKE2b-256 a05b14449c3dfee1037c7f8d59382549220ab3d3656b8d53c309b6cd19d49b6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0c1b68a8fc1e4c0dce2a745fd125f7e8d1c76b8c91fa6f2ab29d3607ad5709f3
MD5 061b17d5c831221af4c9f215878f7d9e
BLAKE2b-256 af3bafe9eedf901d17649101f4857f29dece01a4e6a30be79e508afd4a2e308b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 90a7501065173e517f1c3da81f1d9e7e7147e2005966c36081b36015481e30d4
MD5 317d4b3c13b2ba11b533cfc5a7c6ec19
BLAKE2b-256 c087b64cec27936cf183c5709a0aa99cea5d1548636b0653e9e119d186af14ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp39-cp39-win_amd64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2469a311e260605871ef19de666e67fd22ea0019237133b22544e775d4aa862
MD5 ca1bfd042a29e2dfe321d7b20b03f952
BLAKE2b-256 6fedc38002932355b14287ccb7c239b1d138e02758dfe89d710e20065e58a252

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1f3acb0196253ed0172767f71125e98079991bf4397c142d593cfa433699ddf
MD5 c8b4c072ed7f64c241e256d7109d4062
BLAKE2b-256 3874978942d52ca4d80ecdb5c4a72aa1c52ecb289b7a5a01cad4c6df2ca8deb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 116c97648907bb4a6ea74fa08de8835367783b98fad32af629abb109ef1f6956
MD5 778b818d8d249590711bdbf28c7be0bd
BLAKE2b-256 e679e1b750bb27ba4b8aa473e4000455ed11d96640067b4af9cb445a28d8e511

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 63f3f6d32a94cfa14faec9fdcfe8cecc69458b9a0450dc9a62511e86ab7be9d2
MD5 98f327b021a98812a939b3ee787925fd
BLAKE2b-256 58e4af87bc7a66c1dcd57d01c666fa7ee351cd11c81bb8eaea49467dc88b7bb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 080dd41a0c0d982b72750bc707faecf3c1187a4dd85185c4c7fbcf0581eea4c3
MD5 51075b3c4b615f29b4e40024fa129089
BLAKE2b-256 928bb26b315acc575b7582bab3c94244c619befb1b2ec0621744d43a426ceb36

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on tobymao/hash-utils

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

File details

Details for the file fast_hash_utils-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fast_hash_utils-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 121e4d5bbe35032deca32a168f98cd032876d1faf24e87988abd6078df2d607a
MD5 fd7949f54bc2012ea725504ad8ca8ac0
BLAKE2b-256 37a615560ed4acb332236563eaf9da4c68435070724fe4c0efbe28f46e5a8920

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_hash_utils-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on tobymao/hash-utils

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