Skip to main content

High-performance BlurHash encoder/decoder

Project description

blurhash-rs

High-performance BlurHash encoder/decoder for Python.

Installation

pip install blurhash-rs

Usage

from PIL import Image
from blurhash_rs import blurhash_encode, blurhash_decode

with Image.open('image.jpg') as img:
  # Reduce resolution for faster encoding
  img.thumbnail((100, 100))

  blurhash = blurhash_encode(img, x_components=4, y_components=3)
  preview = blurhash_decode(blurhash, 32, 32)
  preview.save("preview.png")

Benchmarks

Run

benchmark.py --impl blurhash-rs -o blurhash-rs.json --rigorous
benchmark.py --impl blurhash-python -o blurhash-python.json --rigorous
benchmark.py --impl blurhash -o blurhash.json --rigorous

Results

Linux x86_64, CPython 3.14.0:

blurhash-python vs blurhash-rs

Benchmark blurhash-python-1.2.2 blurhash-rs-1.0.0
encode 32x32 (4x3) 486 us 5.57 us: 87.29x faster
encode 64x64 (4x3) 1.91 ms 10.8 us: 177.73x faster
encode 128x128 (4x3) 7.59 ms 30.6 us: 247.76x faster
decode 32x32 (4x3) 160 us 12.0 us: 13.31x faster
decode 64x64 (4x3) 626 us 34.6 us: 18.08x faster
decode 128x128 (4x3) 2.45 ms 122 us: 20.08x faster
Geometric mean (ref) 51.46x faster

blurhash vs blurhash-rs

Benchmark blurhash-1.1.5 blurhash-rs-1.0.0
encode 32x32 (4x3) 6.00 ms 5.57 us: 1078.28x faster
encode 64x64 (4x3) 24.2 ms 10.8 us: 2249.49x faster
encode 128x128 (4x3) 96.4 ms 30.6 us: 3146.95x faster
decode 32x32 (4x3) 6.91 ms 12.0 us: 573.46x faster
decode 64x64 (4x3) 27.6 ms 34.6 us: 797.99x faster
decode 128x128 (4x3) 112 ms 122 us: 912.88x faster
Geometric mean (ref) 1213.21x faster

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

blurhash_rs-1.1.0.tar.gz (22.0 kB view details)

Uploaded Source

Built Distributions

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

blurhash_rs-1.1.0-pp311-pypy311_pp73-win_amd64.whl (117.0 kB view details)

Uploaded PyPyWindows x86-64

blurhash_rs-1.1.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (233.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

blurhash_rs-1.1.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (229.3 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

blurhash_rs-1.1.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl (215.1 kB view details)

Uploaded PyPymacOS 11.0+ x86-64

blurhash_rs-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (206.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

blurhash_rs-1.1.0-cp314-cp314t-win_amd64.whl (114.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

blurhash_rs-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (311.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

blurhash_rs-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (292.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

blurhash_rs-1.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl (231.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

blurhash_rs-1.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl (227.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

blurhash_rs-1.1.0-cp314-cp314t-macosx_11_0_x86_64.whl (212.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

blurhash_rs-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl (204.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

blurhash_rs-1.1.0-cp314-cp314-win_amd64.whl (114.6 kB view details)

Uploaded CPython 3.14Windows x86-64

blurhash_rs-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (312.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

blurhash_rs-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (293.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

blurhash_rs-1.1.0-cp314-cp314-manylinux_2_28_x86_64.whl (232.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

blurhash_rs-1.1.0-cp314-cp314-manylinux_2_28_aarch64.whl (228.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

blurhash_rs-1.1.0-cp314-cp314-macosx_11_0_x86_64.whl (213.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

blurhash_rs-1.1.0-cp314-cp314-macosx_11_0_arm64.whl (205.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

blurhash_rs-1.1.0-cp313-cp313t-win_amd64.whl (114.9 kB view details)

Uploaded CPython 3.13tWindows x86-64

blurhash_rs-1.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl (311.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

blurhash_rs-1.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (292.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

blurhash_rs-1.1.0-cp313-cp313t-manylinux_2_28_x86_64.whl (231.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64

blurhash_rs-1.1.0-cp313-cp313t-manylinux_2_28_aarch64.whl (227.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

blurhash_rs-1.1.0-cp313-cp313t-macosx_11_0_x86_64.whl (212.9 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ x86-64

blurhash_rs-1.1.0-cp313-cp313t-macosx_11_0_arm64.whl (204.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

blurhash_rs-1.1.0-cp313-cp313-win_amd64.whl (114.7 kB view details)

Uploaded CPython 3.13Windows x86-64

blurhash_rs-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (313.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

blurhash_rs-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (293.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

blurhash_rs-1.1.0-cp313-cp313-manylinux_2_28_x86_64.whl (232.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

blurhash_rs-1.1.0-cp313-cp313-manylinux_2_28_aarch64.whl (228.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

blurhash_rs-1.1.0-cp313-cp313-macosx_11_0_x86_64.whl (213.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

blurhash_rs-1.1.0-cp313-cp313-macosx_11_0_arm64.whl (205.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

blurhash_rs-1.1.0-cp312-cp312-win_amd64.whl (114.5 kB view details)

Uploaded CPython 3.12Windows x86-64

blurhash_rs-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (312.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

blurhash_rs-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (293.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

blurhash_rs-1.1.0-cp312-cp312-manylinux_2_28_x86_64.whl (232.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

blurhash_rs-1.1.0-cp312-cp312-manylinux_2_28_aarch64.whl (228.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

blurhash_rs-1.1.0-cp312-cp312-macosx_11_0_x86_64.whl (213.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

blurhash_rs-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (205.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

blurhash_rs-1.1.0-cp311-cp311-win_amd64.whl (116.0 kB view details)

Uploaded CPython 3.11Windows x86-64

blurhash_rs-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (312.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

blurhash_rs-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (293.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

blurhash_rs-1.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (232.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

blurhash_rs-1.1.0-cp311-cp311-manylinux_2_28_aarch64.whl (228.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

blurhash_rs-1.1.0-cp311-cp311-macosx_11_0_x86_64.whl (214.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

blurhash_rs-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (206.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

blurhash_rs-1.1.0-cp310-cp310-win_amd64.whl (116.2 kB view details)

Uploaded CPython 3.10Windows x86-64

blurhash_rs-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (313.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

blurhash_rs-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (294.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

blurhash_rs-1.1.0-cp310-cp310-manylinux_2_28_x86_64.whl (232.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

blurhash_rs-1.1.0-cp310-cp310-manylinux_2_28_aarch64.whl (228.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

blurhash_rs-1.1.0-cp310-cp310-macosx_11_0_x86_64.whl (214.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

blurhash_rs-1.1.0-cp310-cp310-macosx_11_0_arm64.whl (206.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

blurhash_rs-1.1.0-cp39-cp39-win_amd64.whl (116.6 kB view details)

Uploaded CPython 3.9Windows x86-64

blurhash_rs-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (313.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

blurhash_rs-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (294.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

blurhash_rs-1.1.0-cp39-cp39-manylinux_2_28_x86_64.whl (233.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

blurhash_rs-1.1.0-cp39-cp39-manylinux_2_28_aarch64.whl (228.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

blurhash_rs-1.1.0-cp39-cp39-macosx_11_0_x86_64.whl (214.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

blurhash_rs-1.1.0-cp39-cp39-macosx_11_0_arm64.whl (206.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file blurhash_rs-1.1.0.tar.gz.

File metadata

  • Download URL: blurhash_rs-1.1.0.tar.gz
  • Upload date:
  • Size: 22.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for blurhash_rs-1.1.0.tar.gz
Algorithm Hash digest
SHA256 c736717d3ddebdcb1baea69e107f6e31c233c5f03c4ee9143aff298038ce6d07
MD5 924ea306cc80be7c527e3e4512904d7f
BLAKE2b-256 62b28642b79fbfff0007c8ffec9cf2d7fea42d480c022a623ec191acbdf2b97b

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0.tar.gz:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5a5df356d6ee96bd4572d54887797442518b8f27154ba05b0aaa840a77b10a68
MD5 5c240b09a64a42ccfc5f556fa782743a
BLAKE2b-256 885e4da8451cc6f2beddef57c51ae5cfe6b080204b2fa046d3597641e2674028

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4301841ccdcd8978cedd102797ce5bd58fa75cfa648b5390d0207b34fb548c83
MD5 92f016cea7538da210a97e55804bf9a1
BLAKE2b-256 7d3bf2cb787480353bb97a5bb7fe8eecbcce05587d5e60d41f136f9b5015ef5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d395ba32dc13e589b7dd72264ce41b10f40551f010cf26df7602cf4bd6da292b
MD5 c283079ac17c9bd3859ce29b60b7469d
BLAKE2b-256 270106e32e4b9764440b96d0bddc3dfb8d61a6c9d9fc2af1f9593bf348b23fc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9a29f098634afef1f1d91ca3b4f87b5db41348a9d3097aaf9d590b91a08f9e96
MD5 59b0c33b3e8a7ead92a33e99183b14e7
BLAKE2b-256 6720498d8ff51b74677ae09323974a99c45f4b5aea7e870b3ecb6cb1490c97ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d6d108e25f33c4be3906a963e2c8ed870c0449f79dc617f6d7bf71dd70e0950
MD5 4cd8acec91f867ec6c8060ff5fab13f4
BLAKE2b-256 3c83d9b6f631b7803ace3831d3e82653700f1c55a2dec9f6468e8ddcaabe1f24

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9bb4a917ae4fc55fe3e2850d327d222ad89345407bbbe3db618d0b849bf3d749
MD5 31ebb3db6040b1465465b9d28586960e
BLAKE2b-256 90dae5bdde7b60a40070385e4b7b33eb18e35f80dd22aa4a1a0a7fc9dc643ca1

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp314-cp314t-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67a72d5ab563620776dd064dedf47ca4e756f575a64cf5398c819b5da6195edd
MD5 1388db5d7988a4bbb807ed4a9c61b9f8
BLAKE2b-256 6c254247883eaafa708fbaaf6738b636cab9dd6c79fc63eb511b553aa69a3adb

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c51f513dbda29ec6bc3e3a1f6beb3b8ac4a2286527e9b9084f3e8f661a0272f8
MD5 e04f982f50f6a0ecf67149f76b0f617d
BLAKE2b-256 db2dde635bd01f9d348ec78ce9e3f152222564b119c83403e0c65b98bef7ebc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1cafe1bc645cda70e3bce68af74ec5dff9c5138195fdc560ff5b4ae7b5bc8273
MD5 74a4802efd4c04d3203bab2674d9baac
BLAKE2b-256 0eebc77036f74483c9873116c8734e360525426d4ced4087272a1aeb26eee01c

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cde2e8de2c05b6a194f7f6ece12dbdaa226938b4d1ff0d75818bcb1b3fffe0ea
MD5 ef34dbdb1326d6ffca4e111bf64b554a
BLAKE2b-256 467d4464bc0041f1dddc3183c52089dc9e1e9ac86434b12ac52e91ff462e136d

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp314-cp314t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 bc6a17a269336dff015f90f4e4d58963a3d8b09b6b40210c59b047425ee30801
MD5 501967746b1ca6a3fa29824086fc52bc
BLAKE2b-256 f84cbc8c9b3bc25eee433455b91875f5e33e9a171d42658d8c52dc06c68e21df

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp314-cp314t-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b083d80bf35607f477154b1786cd53392d7b3a19068df97d169d288cd1981f66
MD5 9b875ead2eebca745e14360fdfcd6891
BLAKE2b-256 e1114edb159b62c3044a8d83eda9a8cf14e53fec93a7cff1a7428d75ec417871

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: blurhash_rs-1.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 114.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for blurhash_rs-1.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6266f79261698bb9bf85da69821563226717b851ef3a9e48412338a2a4518ae2
MD5 c363be0584d0e25e4c506747c9f70113
BLAKE2b-256 bfebaf7284ad2ca87481e618cb3b46cc2e0cc0bed70d936681c292bb8f82d222

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp314-cp314-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b6241291562f0a16c40943536afa6a521ac0b4cf0aeb6b53cee8b59a2de2265
MD5 bc2d7c750333127b1e0a8fcb1360da39
BLAKE2b-256 6ca77bfe16cbf3f2bfe8f41d0a72091c7ecdf05159f2bfdae6e1d300fd8f5166

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c71d4262a3709ad782714a8fe9266312eac17e55054e94e32290511778580ca3
MD5 0cfc89f4c1afafbae133ce91fe44a6da
BLAKE2b-256 b2733ba4124cd64440f5d1add635cdce78b026a58ae0c8b8e06312cf26c52c17

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e59f059a687d39fa09f55273703d15f37e460f316059f83062c34724e4b61bc8
MD5 27a2242393293cc2dfe80770f61a3db9
BLAKE2b-256 ea63ee0c5f33165407657eb6256d2f0caad4c291400c5e6361cd311ee22cd3e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 667af886cfb7d2b6bc51ccd9c136809b6e37ad1fabe6c6eed47295c34f0727d3
MD5 76ec1dc2ed1fede2863fe7095096b0ba
BLAKE2b-256 e9ff4441bf11fd7d2e26689b76aa28e3d26a556488c0283cea5705661815eeb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 46b3480ec0141407a0d777625ea0d8e83efd665656ea2b39b5f56edc660e5745
MD5 2c888f7f1108333a530f5cbbf4df3b65
BLAKE2b-256 292b3a4b3bb5fc5f372298914026fb5cc5161b3ae75e0160136c94e7223b0602

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp314-cp314-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94e90eefeb4186ae4935aeca2b082582610f0280c16656bafe1f3ccbcce23f41
MD5 6dd099555d5f5f4a9243a8d5d6181dfc
BLAKE2b-256 3c5cea3dddcecd3ee08b4ea01d57027b78c3089572dd79c1ec418a2953b0bc49

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 5c32553b63814b9dfc79b31cef3a29e17aeb2df95e923dcd94dc3397cb60e490
MD5 b83878935639db20e4c273c67d592e62
BLAKE2b-256 54a0c363b68142ff42ccb62ce337d1e08c0650fdc9baa49eee640e0217c9c544

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp313-cp313t-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8860e2202de6f1ba80d7f1220bf4c24bee223807adb57a5ad1dda445df4e5e25
MD5 fb0e50a3846edb7d78e27dd3a6a7aad8
BLAKE2b-256 706651879a16a607e92b91fb852be1b58000bc8b1e88d3145b0e7c97e5badaad

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8bd104e0a0bb1c8073319049854eb77c6bed44fd4047beea9e2599743ad0b9d
MD5 eec965cd7c2b7d65aed5e55ed224d45e
BLAKE2b-256 5f498395c3ec98e4408efb7d6c91d084d5baecad5fe05366a4ddcaa39e04d34c

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp313-cp313t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 398c18a52557a0926a096d5a0b91f99866c66b6bee19e9c85f02574a9255c271
MD5 d9dabcbb733494b0635baa5dba0eebd5
BLAKE2b-256 7b416da91208a8934035d97d949ce56fd62e02a75e0f6706ff6878513729fa18

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp313-cp313t-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1904d0f5979010a2c050f8db5604566c4037679b15435853e953dfd4db507776
MD5 bcd35253f7eada5ff8fd91266b4f97ef
BLAKE2b-256 29fc2b9541739aebdf97417667f1e6680994e97ef555024aedc4157db5da74b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp313-cp313t-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp313-cp313t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp313-cp313t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 db5e5864fed6b6bbb611a1a5a4a2ddb9352aa1959d2aa4a062c58c2e6a7f69fd
MD5 8e8289c6e1efc13244a10ecaa954609b
BLAKE2b-256 d1743e6b8051f87684ed56cfcaf970b3a9a8df2645c98b6b5e60e23784b687f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp313-cp313t-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0be9f248abb89230f1017c6813b824ade87890df3ac090ce187c4f88aa1416a5
MD5 0a46ae774e6e2b2262328ca15c3a1515
BLAKE2b-256 13950783f0f601ef06f75da701eeebd56af40780f44a1fb35cea832cb59a9264

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: blurhash_rs-1.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 114.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for blurhash_rs-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 99c3998d0d0c2df85ef7e5cd288686b8771e5beba201eab770aaa93c37b05d2b
MD5 d6ccf83ea876752c3bb1427fe60eeaf4
BLAKE2b-256 c71d2dbfe566782ef60ca9d8540af700c1fe2e5b788babb125ad01191d63433c

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp313-cp313-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 162dc1b7be6cb4de048b72af50534c52c8763f4c52b1611bd58b171455cebdf2
MD5 d1a07d55162b5ca721cb1e9e42d56e4a
BLAKE2b-256 e690adeebf1034f36a079295c1172564a7bb3d2315eb306a08ddad9dc584bd8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06e863db053dcf1a6f84c41d2f2f8a885794377422d0ba47579ef415d8d3b170
MD5 51c50ed670fbf12717f96457858c9856
BLAKE2b-256 892eda3fdc49802791f71d14d9a62e208582d24a016d1b71610494a9cfd54928

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c2a49545e95ab70286258f57cf0fdc5db5649ded51a336cd7ae09f1d907bad9b
MD5 0531f0963f5e706273fc60117c78b1ff
BLAKE2b-256 04884da6404bf2474b43168152965c56d4839b0ab0865e5897d05001201b10f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d4fd899ab125a9da52446a3db28dc0b7d522c02bdc348baae430e033bf7b94e
MD5 105ba9dce47dbc1ad156f3fe016ebef5
BLAKE2b-256 92b7be11b7fd41a37f14816d4bd529f9fd6bb37a4744d60b9aefc4dd0d6fef8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 a0cdbb13fa6a2a86c7531285e7dbf7b3ec66cf9d5263752ca336fb5237990004
MD5 c42e1b0ba141d3e1d0874e26fb114338
BLAKE2b-256 4be370052f82d07a23eb6425cd334f6e9b92e3e69831bf53cec60b8dfb0a64b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp313-cp313-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4b6981dbea207e2ffedb6c793297393443df072e66869ee846c587154330451
MD5 9a74ad6859b959c6c999071905687fbf
BLAKE2b-256 2f90795b7425422e730aa8d5523fcafe72cac1123ba2af8e5d728d241e114b59

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: blurhash_rs-1.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 114.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for blurhash_rs-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 005486048d877905a69087ab6eb7a160f78b91658045bbdd6994a1c46d56db51
MD5 e7769db25521cd36aab536f83b9c6e22
BLAKE2b-256 2e3eb925f5c2846fa4b5ec8f9279728397ee4f4f7455f83bf2cda504818698eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp312-cp312-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3cb238beb7d4e0d9f5870da8c445fd1b31cbe973c7a8fe327da8680fa4aabfa
MD5 7ccca7bb5ada52ec12a3c9468c5bfb38
BLAKE2b-256 7ce3a9cef34dadcdf311448e52c941ceae78f6b5210948196210cbf26888b1ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0deac5b72b77171bfd67f62ca50eb76f5d27d50a2a91a0347fc7dfe98708565b
MD5 354622a29fada747e6fd59456d02c1ce
BLAKE2b-256 05c44e18cd42e6c9cfdbb9c4a01b573b5184f117b1ac7d464c196baaca25fed0

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6db6a504bb82622e8cdffcbca2f9db570f9f6d37c7d6171b5a5674e29ac5f729
MD5 a8db517165dfda99b8fede68ab09c359
BLAKE2b-256 3d240fc9608cd9b938efede17b25f54e2b596e0e4ac332a54a7904c263fbb74d

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ac54347d8b820acbec0c0ff74377d1e85418d074cc3e2e19ce44eeae44d7545
MD5 9567af08cff44a571708638de287db3f
BLAKE2b-256 92c65fb7d11558ea26bc45c81651d320bd35cece9fb202361ded37fb47a8e2ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 c2f05e0becf55942d9614821d7ecf0f8d697a35e67887b4d4da01fa64e181d9e
MD5 dc66547aeddf97f8ac3de0d778ae14f2
BLAKE2b-256 739600a60ff28efa064095a9884603dca9d2c9bad6c91833547c27b3136bf9c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp312-cp312-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f4a47b6f8ea73b99a1cad9ad9c4a1322380dba11bdae5e298e5aee5938f47d1
MD5 bb0034462d65f439d00a18b1f2771e21
BLAKE2b-256 23860e575f847a63d2826a4a632696f4f87bef70f9b3f8655da478f2fa7d1281

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: blurhash_rs-1.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 116.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for blurhash_rs-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3095a4621ea1517ebfbe19d5836fce71177524cff4d1dc64979d4a3c19a6d97a
MD5 3052af1b5fbed3b27304a3012127ae39
BLAKE2b-256 c2794466e329ab6515b89786d3e2ddebd49a20b881b5eceee59d39faab523b30

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp311-cp311-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95b3ecfb1d68f10468f2e5638e7cd3f3376d251625a8ca6a2f4c84e4a2aa5372
MD5 52765bd8875b76315eefcee8c3967ed2
BLAKE2b-256 04796214b621878bbd2ee075ad1008e7c47282f397442eb798dcb9a2133806cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0aaec72e474d24967db5d44c66cb8e2f7eedf18d8179bafcd9ff8367ada7f560
MD5 3b145afb996812b780b2052dd460baf5
BLAKE2b-256 4c9a81e8d93b6c07bbfd8abde699e0ea8199e4a64a04f92a01baee35ea1b8da3

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 06b72b93b5d04b3741954b08c77040e4065c93fd487c24e5675b056b31821eef
MD5 e0d1e15b4f492ff55ec2a82e57f2bc05
BLAKE2b-256 41053335897a85d2d57418bb8240a7b9c533f82c45370c2ae3e3db538c157700

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 685d824392c89d9d35e8a72927930d08f8349615559aef85502a07d20695c3b3
MD5 dbe070d8582e679c6fe73cab8236141c
BLAKE2b-256 1b5dc8c692183445bf200306585e24db02211c90007f797c10ea661b1a9a02c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 bf75f1b7dabc3075392ca41a15d7e578bdb2e043dd6223ba95a6639fb56744b4
MD5 3ce3baa767856342f5650d4cc8664207
BLAKE2b-256 468c7edcabd489ec190161e88f72dc03a121d515d961fd1e661c05512aefda8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp311-cp311-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8cf6e30a7fb12d4a48c3a9a6f28dbee061f0c5684630ea0b3ca4044c95e7cc72
MD5 839ab000b101e0a1024e28150bd4904f
BLAKE2b-256 ef773b7af4e7451da16cf84d21be668cddc0fffa35d0cc6aef5445ebf9043b20

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: blurhash_rs-1.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 116.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for blurhash_rs-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6ec0681cbb7bc7ddef26d9dc4f6ee7f26d8c4e0a2998f7724efa11ae0b713b4d
MD5 47b317c0b0d856c54af08a89739e48df
BLAKE2b-256 16132fd33fcf41d8116443549865ff7b46338f87cd1b8327199db4a5cf04163e

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp310-cp310-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fedf86f10da674a7d845285687f69fdf287b42ec2f6a108d3562eabd532181c1
MD5 a7ed800fc9eea37c8e138c814381e76c
BLAKE2b-256 6a3f2864a2bcb929083feb27ebdd4945992566aea6344218dfbc02170c6f5bd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bace1c1406600414cb707eda44d6cd319e48ccfd0b0c13e6a9692ba8382353ec
MD5 43a703a723be48bc785db99279878d57
BLAKE2b-256 a5921a903e3fb054964994501e6b219879a0549b54e01dce137b84f5545edce7

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dfbe0709ae3198b7b5238aab7057bcd45b98289f61b8f995d303726b0d738b3c
MD5 e265669962bec4796a48f7386e190b09
BLAKE2b-256 f539e605d7c669cecc6fe4ed9ef65fd5c90a673ad494940f8344d304a594ee5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a8c136ae123248db89e0138b1921d66f24597bfef6fc98ff2744ee6ecacae0c3
MD5 d44e842eabc67f6fd78180bcd59da9fe
BLAKE2b-256 6c73338343154987b080fd4a9349ae4c3e5230b15fbf57d315da4b91c1345d8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 214222ce336cedd06f6f2bd02ee8dab6ffbed14816d742906eddc044a6695d50
MD5 254c6bbb75aff45adca305079312f0d4
BLAKE2b-256 90904b259512e4e11fe6722de230c1b9c32e76d07d6ed6ecadbbbb548867301b

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp310-cp310-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d71f845a39b54e2dddf9d0a56f839ebe2ea42eef9d03024c013dfe47aee69fd
MD5 02bb40e06209f0dedbd282b4d1077ae3
BLAKE2b-256 d707597dec79a760d247ebcd792955f7ff50391347137a81f113667c60a27eb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: blurhash_rs-1.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 116.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for blurhash_rs-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dd67d80eea893a0b024d60e49da452d0c54e06b5909f1cb169063e563922f45f
MD5 1f44b7cf299b58a15e17b71b98277dd2
BLAKE2b-256 0bbf7425228343c334cde89eac1f14f25577a0f05708a7dd5dfec78431f9fb52

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp39-cp39-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d4316cf833c3bd05a52dc46f4b27f28fee866b7072f6e0b0fd040a3b0c9ce2e
MD5 bd7d2519cfad598e8ffb11645a5f2a46
BLAKE2b-256 f4a0e5a22ce7286ae4b3bda0bca093bf28f854e8e04dffbd24019ab38edfc4c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d148273ecf3bdc99665492e66b5b792470f87153ecadac0dde413f67af29d397
MD5 d1d93666360ea4f252389f710b165d5b
BLAKE2b-256 ea3b1e5f8cbb4d0b4cf13dd51700f71f9ce64afe21a9fd0158e00b9fae472237

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 12b0e735b0a65de65dff5219b4a5f1dfa197f794173448217663a1921f2477c6
MD5 7282415cf1a4c4bf7920005b1702783e
BLAKE2b-256 4c091df4c9c3e12f44ae50eb94aa7ec19f5addb5695ebaf745d11fba98356ed4

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3a09b3346c1cef63cacd70c72db5233197ddafcf26ca785cbf6bd36c296c47b9
MD5 0003bdcc7ebffaae5952e69c46c85d37
BLAKE2b-256 5b5bc1804d640d7a3f9c34b946bac4af8fdb9bdb568b3df888c2ec56ffa1b506

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 98d2cc390e0b973811222d00b8df327760973c4474bc69720a05f43b730bb767
MD5 cb76d6a68838859ac46e08010fdc112a
BLAKE2b-256 ec2e951ed55aea922aac790970f8a86832bc0e645315dd5770015816ee018a18

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp39-cp39-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file blurhash_rs-1.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blurhash_rs-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d61bd60cd9114d652da039fc9961af8593d2bdbddf20869ef82ced6223b5262
MD5 7ed6fcda4c453a97894a5524496d3084
BLAKE2b-256 5a84414981f8068d0eda3e5008e335494463a29c0e32c1712bca26d8d53b067f

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_rs-1.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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