Skip to main content

blurhash-py

PyPI - Version

A Python and rust library for encoding and decoding blurhash strings where most of the code is ported from the original blurhash library.

Some of the optimizations are inspired by this blog post.

Comparing with the original (C-based) implementation:

In [1]: import blurhash as b1

In [2]: import blurhash_py as b2

In [3]: fname = './mio.png'

In [4]: %timeit b1.encode(fname, 4, 4)
388 ms ± 414 μs per loop (mean ± std. dev. of 7 runs, 1 loop each)

In [5]: %timeit b2.encode(fname, 4, 4)
75.7 ms ± 349 μs per loop (mean ± std. dev. of 7 runs, 10 loops each)

Installation

pip install blurhash-py
# or to test out interactively
uvx --with blurhash-py ipython

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

blurhash_py-0.3.1.tar.gz (8.8 kB view details)

Uploaded Source

Built Distributions

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

blurhash_py-0.3.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (453.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

blurhash_py-0.3.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (485.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

blurhash_py-0.3.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (523.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

blurhash_py-0.3.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (420.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (249.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (265.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (366.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (248.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (243.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (264.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

blurhash_py-0.3.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (247.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

blurhash_py-0.3.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (260.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

blurhash_py-0.3.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (246.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

blurhash_py-0.3.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (261.4 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

blurhash_py-0.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl (450.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

blurhash_py-0.3.1-cp314-cp314t-musllinux_1_2_i686.whl (481.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

blurhash_py-0.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl (520.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

blurhash_py-0.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl (416.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

blurhash_py-0.3.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (247.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

blurhash_py-0.3.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (262.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

blurhash_py-0.3.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (363.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

blurhash_py-0.3.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (245.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

blurhash_py-0.3.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (240.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

blurhash_py-0.3.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (261.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

blurhash_py-0.3.1-cp314-cp314-win_arm64.whl (109.5 kB view details)

Uploaded CPython 3.14Windows ARM64

blurhash_py-0.3.1-cp314-cp314-win_amd64.whl (112.5 kB view details)

Uploaded CPython 3.14Windows x86-64

blurhash_py-0.3.1-cp314-cp314-win32.whl (106.8 kB view details)

Uploaded CPython 3.14Windows x86

blurhash_py-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl (450.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

blurhash_py-0.3.1-cp314-cp314-musllinux_1_2_i686.whl (481.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

blurhash_py-0.3.1-cp314-cp314-musllinux_1_2_armv7l.whl (520.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

blurhash_py-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl (416.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

blurhash_py-0.3.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (246.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

blurhash_py-0.3.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (262.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

blurhash_py-0.3.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (364.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

blurhash_py-0.3.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (245.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

blurhash_py-0.3.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (240.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

blurhash_py-0.3.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (261.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

blurhash_py-0.3.1-cp314-cp314-macosx_11_0_arm64.whl (214.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

blurhash_py-0.3.1-cp314-cp314-macosx_10_12_x86_64.whl (218.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

blurhash_py-0.3.1-cp313-cp313-win_arm64.whl (108.9 kB view details)

Uploaded CPython 3.13Windows ARM64

blurhash_py-0.3.1-cp313-cp313-win_amd64.whl (111.6 kB view details)

Uploaded CPython 3.13Windows x86-64

blurhash_py-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (449.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

blurhash_py-0.3.1-cp313-cp313-musllinux_1_2_i686.whl (481.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

blurhash_py-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl (520.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

blurhash_py-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl (416.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

blurhash_py-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (245.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

blurhash_py-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (262.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

blurhash_py-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (363.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

blurhash_py-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (245.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

blurhash_py-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (240.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

blurhash_py-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (260.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

blurhash_py-0.3.1-cp313-cp313-macosx_11_0_arm64.whl (214.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

blurhash_py-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl (217.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

blurhash_py-0.3.1-cp312-cp312-win_arm64.whl (108.8 kB view details)

Uploaded CPython 3.12Windows ARM64

blurhash_py-0.3.1-cp312-cp312-win_amd64.whl (111.6 kB view details)

Uploaded CPython 3.12Windows x86-64

blurhash_py-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (449.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

blurhash_py-0.3.1-cp312-cp312-musllinux_1_2_i686.whl (480.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

blurhash_py-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl (520.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

blurhash_py-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl (416.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

blurhash_py-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (246.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

blurhash_py-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (262.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

blurhash_py-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (362.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

blurhash_py-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (245.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

blurhash_py-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (240.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

blurhash_py-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (260.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

blurhash_py-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (213.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

blurhash_py-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl (216.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

blurhash_py-0.3.1-cp311-cp311-win_amd64.whl (113.9 kB view details)

Uploaded CPython 3.11Windows x86-64

blurhash_py-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (452.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

blurhash_py-0.3.1-cp311-cp311-musllinux_1_2_i686.whl (484.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

blurhash_py-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl (523.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

blurhash_py-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl (419.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

blurhash_py-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (248.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

blurhash_py-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (264.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

blurhash_py-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (365.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

blurhash_py-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (247.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

blurhash_py-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (242.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

blurhash_py-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (263.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

blurhash_py-0.3.1-cp311-cp311-macosx_11_0_arm64.whl (218.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

blurhash_py-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl (218.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

blurhash_py-0.3.1-cp310-cp310-win_amd64.whl (113.9 kB view details)

Uploaded CPython 3.10Windows x86-64

blurhash_py-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (452.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

blurhash_py-0.3.1-cp310-cp310-musllinux_1_2_i686.whl (484.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

blurhash_py-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl (523.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

blurhash_py-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl (419.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

blurhash_py-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (249.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

blurhash_py-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (264.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

blurhash_py-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (366.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

blurhash_py-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (247.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

blurhash_py-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (243.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

blurhash_py-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (263.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

blurhash_py-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl (452.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

blurhash_py-0.3.1-cp39-cp39-musllinux_1_2_i686.whl (485.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

blurhash_py-0.3.1-cp39-cp39-musllinux_1_2_armv7l.whl (523.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

blurhash_py-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl (419.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

blurhash_py-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (249.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

blurhash_py-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (265.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

blurhash_py-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (365.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

blurhash_py-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (248.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

blurhash_py-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (243.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

blurhash_py-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (264.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

Details for the file blurhash_py-0.3.1.tar.gz.

File metadata

  • Download URL: blurhash_py-0.3.1.tar.gz
  • Upload date:
  • Size: 8.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for blurhash_py-0.3.1.tar.gz
Algorithm Hash digest
SHA256 0f722cf092ea5e2f0a876f55b7f10809a774264154b74d8d36d510c733cae82c
MD5 7c3ac23acc8f84ed6cca799d8d564b3c
BLAKE2b-256 ff218995fded368f36623af8ddc9a9db0b2d66588e248695524d1c7c9c538410

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1.tar.gz:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 666104b530e9b7bde931ca03266a4329bf91ccbd4c2954b8aa523638f74f431b
MD5 0f54f2f4a3e8724c5477a8c363328ab6
BLAKE2b-256 e3d69e69bd33ad252d469d49ff8c2066c52378059f9cfef4a0aeb0d7728b54b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce3cc9a72c5daa2d780401772eaba714d6da160f19b1eaa4dacbca08fd132c99
MD5 36f63ebc55253f3dd4901ed4fddfd8b6
BLAKE2b-256 9fd095433b4b8bba346bcf02da4e23d95731c9844d64305172dd680f5e6125ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d74ec75d582d0b660434f78359d408f8c77096be995d73a630a728ceff25f4d8
MD5 fe33c66df5542896cdaa32a0120a51c3
BLAKE2b-256 ff1eaec9103454f01b840b47256b9a60691aae9f2e2e04e9197de532a7e918d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 efe00f48f206bc23b0ecc679ff0ae94ed5ee768df0b5cfc0a5767e7f215adb2d
MD5 428fcfb668d5e5e47852dd3619b2c837
BLAKE2b-256 2c45d3a813dafd627ab1524ceb67b8bc5cfc771e0cb0b7df36cb008e343271fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aae0aae5e3615b8a2f6bf8df8948d7767c82c2c4b74a9817c577e2651c6911a7
MD5 d783c753fd6a72dc57f245473c8b3ab0
BLAKE2b-256 4d57a5f533228fcd4dfafab81249d34d04ad3f7322931f8905a4dd349489aa3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 71c4348294be505f38a2a541a5e97beb269f20a60259255d4d19b108bc4036ff
MD5 372a19ac32b6b67ae396d4898ec0289c
BLAKE2b-256 14703579940e87c64652024d28843d3de70a18a11bd8344ca235e90adc323f7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e3633ecd6004de13f7647ba7e92f99471897b723dd1f9b9e31e79b5c1774cd8d
MD5 dbfe36d4c209688604466273b8c361c2
BLAKE2b-256 8cc8723bfb3cb55fed5195a8bcfb1dffb38a1f6ee42615b03deea4bb84e58845

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d77bebee78de07f8468bdc8d9e353c6fad3e286e2d367534e487381432d7c1f7
MD5 a5df3a42e864053cba94ef6b524c50ab
BLAKE2b-256 147c0ca8878d67ba0b4271297095f2a2a1d89cdbf7b25dace3458a537bdce751

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d5674c3bd30fee398298d19cb1430e7d12a4a97d5c73efa07bd3eb35ca3ee90
MD5 7b79e48655996d32f738318b772edc79
BLAKE2b-256 80aa04d932d6c62245012b5defebef460e8910e26ce9b2a1b343f9b3c141ee5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0c9394fbf6c365a30288dc32b588e3bfc5975116709f1aa6791d95960bf6e937
MD5 e493895a6322a626603cc48df5a625d7
BLAKE2b-256 5557220e5ad2ad51b7b90acef19da36a7a7b951986429d6c3baa4483de0adf11

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1402293a69860c996538872fba925821d5c0b13469dc2b4315d2ea093de6df1
MD5 4808ab78d55e08c944499f13b7b92512
BLAKE2b-256 cfbfc30b3cdfc2223d7ad24ed95158e1eb3a11c0295f8563aa561fc688c51777

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ba2791224b9153116825d9e555bd2b7a51e0101872d9089ae8253affc85abe00
MD5 dfed6ef860ca3addf27b8e503a901e6a
BLAKE2b-256 e80f7d91f2bc506cda162a0a7ca3ff89ee1e389e043a17503a2398ede02c0ba5

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9aaf0e4406a58ca6c013fb622a472d8ec51fbdf4870a39866f41d278fa46226c
MD5 d12a77ff8d30d8afce016310325cb211
BLAKE2b-256 f1acb0fed47c50ce19e23c45bc53daf38a388616c9b64ae4206c5d07ad2c3e8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 61287d38bd7315947e0966a413f26c2318be10ca711144df90d67947f7ffdd44
MD5 27381b9e2b94017927cbd9d5f74fe398
BLAKE2b-256 093408aa5da70e1494d19a8b5130fbb3e65fcf9a26cf851bdaedf0b591bf5aaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 064dfb74c1e0c1377245605d3346c62cdcb81083460c20ed79da5c622aef2efd
MD5 79059f20d38a26b04dc73d8dd1a5ec88
BLAKE2b-256 68830c84a00c1160e9ca671e5c5a1772bd68ca4b7cba37962b1f18360e5c17b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dcf0c5075382d6ba5e4c51455ce09aa61579741737fe9bc996bf194fee872bca
MD5 0b394186453715bf0f42269422f5508d
BLAKE2b-256 31c677101049be78c86d4745675a4d4e2a9afa7cdf048cb3b3fe3d20bb30555b

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b1d24d0da461165ffc8fc2646530b2ab4a5010667a3e56bd77df2f3834c7a5a4
MD5 9f0c6da341e4e29af3f421244ce8a35d
BLAKE2b-256 ca5c7eec3187756248dcf8e93faa5b6266884d9f9f3ccf65ec39ccf0c23a6057

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4a29c903d3ad14e9aa3a0ef32b8395cbfa3f5c393176af300cb8a0fc797e5a32
MD5 f79c5a2f6240573d507268a426009365
BLAKE2b-256 4c9c50a0a7336f0422525760697e2f67cfce678a20ef693f4317c534f61a5879

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8575c84795f775b76915c147bb63f938528b16da38bdd89e28e9493a9f529716
MD5 a341a8bb8b820288d07d462b0b429185
BLAKE2b-256 70fd714365c116bccc7fd5b41cb8f7242860c9cf647c1ee75d12993458dc00e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b7bdbe8025f1505225fc990fe61bb9998d57d3b5f8c62069629d5d612e2883d
MD5 c75e2196bdad82fc6f67a5ecb3808c34
BLAKE2b-256 ad3381422ec69b9719296ac0e16e325855e11c1bd52fb9c4cd541809354f9aa3

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f0a41260e7742821ce75113fbc35064dcc72ca2503e70400a39bce68f3b1a207
MD5 6e9eb043c7539e060ac4cdc01484a38b
BLAKE2b-256 e77cc2008a85a8bd5bc4907f841c2226af4376632ba13f1cbd837b82089c828b

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b4ea892c98cfd29da8c9ff99755e1ae307f98c1196d7b19b73232e604232a518
MD5 802c498a31efadfb10210face317e4d0
BLAKE2b-256 39bac9fcb6495e6f7bfc1a5d87655d998929e873f98da24fa6ad2a51ae11b2ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6714d1ff7771b22ea1f5c163f3421b304c12c04b978dcabf3f9477687c0841e8
MD5 fd18c5e51b3033ce145e7ff01f8bdaa9
BLAKE2b-256 19f061c556a01d8aa32027288ca09f03fc692975cc3c3063bdeb08fec56b0358

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8df4cb52e95d469739af89899946fce2085264a27b63e0e13e17d8c1616f6842
MD5 dc8ec954b94fc5f0f41b5baeac691485
BLAKE2b-256 275f4ec30b047a1160f74af1646463ce78ca466007db9e2cbad43a58c1334372

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: blurhash_py-0.3.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 109.5 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f17c6db3c114e1f5837efef27a1315705f1dfb75e6f0c68b0ded262834015704
MD5 01108c7209c9d90a3406b53a460b4c30
BLAKE2b-256 59e9bee8679a62ff92ae14e1e18f66fe43f0abc50463d1d4bd913117919a0973

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314-win_arm64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: blurhash_py-0.3.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 112.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 04053d5cb15f01e56ea20b0b7d21bc9dfac3c333a34fcf4b8a5d92864df7b722
MD5 0bf28ee0688394a0738baa933e6231c6
BLAKE2b-256 2fa70b9e6283b834487511439323ff386d624b43e80fb92f31a20d88aa02854b

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314-win_amd64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: blurhash_py-0.3.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 106.8 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6284ff9901779302850d60611130db52d4438728f5ea864c90fa4692658e60f7
MD5 bb51f5362a852ab1915552291ffea71c
BLAKE2b-256 aacdfb1ce411b909603e1f338e5df2666c5b28b47b8ab94b641aa0ae8f2150d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314-win32.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d35dcc774936aa12d46c957e7086a657c133e8f0742875d2b2fade993960f683
MD5 70649aa4a685e2b54232e150eb283cd9
BLAKE2b-256 21e30e4de0a9e0096caccf1d09654c66b1968b10ad97a1b0a954ef9f98b8c38d

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2ebbfeb6b486575110f2d7991d6ab3aa1b434dc3643563807593b76f5fa394b7
MD5 812cb38a747a0ef7f5403b428a006502
BLAKE2b-256 298307bca9c293a41aef4f95e8eb5048764e2be3abefc2ed7a915a1a430cabc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9c25c55e4aa9661fcc998cf50d01e8986a159945fed6628638d0b1c5e1791f4c
MD5 f0b5fbc4843139cb5b6ccd12f685ef62
BLAKE2b-256 7525c67548557f81eb6d74980aee1ee4f778f9442c4542fc314397ba53595e04

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08c35229c395b3f318ba637f8f01e77d5f6011bf81c98b53dbdf42947f473fc6
MD5 8992cc58f08278d7e748f66fd190685d
BLAKE2b-256 7d62ca7ca76f34ab03992d24942920f3f62897762a4b73b6397b318214b3ec59

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b988ef1fa7ee1a6b4d682772c6213d128326dcfe98fc3f556909260a5aac86a3
MD5 e875dfe6f7c4a9c0e3cc2ea33fccbb33
BLAKE2b-256 449e57cb1152e25c479afc37374876e5e1bc8dcdb350ef326eef7ed3c63a0cfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c62640a7bc35dadd04cd1ab6c19da818cca740d9f26680994881cb7e333d472
MD5 4ead418adeca3892e03934330f25cbc8
BLAKE2b-256 ae96a1ad1d6f5c7a2ec9f30266630308718ba530968f6197a372ed40d121cc38

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0838c6308c34a1482d38e5e6e80d36fbd84fad8a3368920c05a63bdc4e53762c
MD5 fcc5d101cb745394b05e55d9a15bd815
BLAKE2b-256 014356ef038beff40fcc5334e0215128e583009fb6acb9e5fd292bc0ee6f9494

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 89b55f9d550d71c451dbcb30fadbdaa13e05a8093f8a4809dde3ab5be4536500
MD5 e555f60dbb3d742afd3d811756c9565e
BLAKE2b-256 88b6a2db49ed5fc6b65fcd25f1734d36257f71839f800affe9b7e458239e4d70

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10ffaaded5e02a0573232499ffa95c0b324ed573e3d39b41ce49bc6e25ab86e2
MD5 c5bb9f576f10aa65e6a718f015449d6d
BLAKE2b-256 3f54da89c3810d7c4232c67c64ce376c0d41332b68fd9a8493748eaf4feaf4c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fda820757eba11d35f8ea19947bd956f5f8da11cf3ce09a1b8738c59e50d0693
MD5 2d2c88246ecac6404556d53e36661b05
BLAKE2b-256 fb3e64a449b277b4d6c99737cd3a97abd21f5a339c317fb2004817ca38e56106

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b4258787de7894d8a745f05ce0c40236853f316537edaede312490bd7fbfe54
MD5 e522201e8313f3f60793a49216907387
BLAKE2b-256 aee76c892a22068910cf77eb2a29d42d019319ad32bd26b0d0d3bdd437455ce6

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 35f28c2af1e2d97914278ca883204a358a13ef9363f7946fb1a3036bc4d0fba5
MD5 cd0c9362098dba069d9e701f46aa7cc1
BLAKE2b-256 c7f21de3b4aaba521444b283c2c993689ebd8bd8af8f51a22cb1c95b1addfc29

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: blurhash_py-0.3.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 108.9 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for blurhash_py-0.3.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 85f4a4832f883178e0d44e268432051956cfc8a555fe14ac4b1fdadf3249d0aa
MD5 9c1a7b6e2b79e5d9b1b5694cca254f40
BLAKE2b-256 14df0ce276dbec468f4f7805ebd1332cc2dd43b7c50d471f6973247bfc48d475

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp313-cp313-win_arm64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: blurhash_py-0.3.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 111.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for blurhash_py-0.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 db27b1b609bf973da3a29ad46303a3016d577c91c7677c698c2eacd9de15eb4c
MD5 4d14775a0df55825bd433eca05195146
BLAKE2b-256 3180468c3ec73896e89aa0561aebd11b1bf9139085d1b11b24b64ad775179a03

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp313-cp313-win_amd64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 165f964aeb1138633330827160c8b888f90edaa200af543f98b1d318ee85b090
MD5 623af1d8491a28887d7fdd72855ce35e
BLAKE2b-256 d74bb694af07ba5f364d2e6ea18ef03771d8e8f9433fa2a582f92eaeca569734

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 801c23ddde943d00c3e7f36312c1fbabf5f7a6412bcaec1acfd4deeb51bd1382
MD5 92293c95c6bbaec1da672682cc98705f
BLAKE2b-256 5feaf510dc28f9ddf873c1a3777aab4991bfe4c1da83bfa4b2b3dc673e40ca1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9dae14697b7f6f3729cee69f9848cb98f1c02d0ba6e8e89294352f8b0e82b4ff
MD5 d8fd5d56a72412e41dea25ddf735195d
BLAKE2b-256 0c3e403315de5d8551d118c45d435471212250bb47a21f63fa6f7ab6d6ec806c

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3bf01fe3e465e1c2228a71f2eb4ab1a01717be9c2400f5e4737e15cdea7fb121
MD5 712c9e7e7c28cdd98478f1ef0bdc9224
BLAKE2b-256 3f6e1891ade0a3895f2681582463c3bdb719e29fcc8c0e1554d97c35ab75ee2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c7fcb105dbcee4d93b4a7266ec7567debcf875a6102d60adeae6aabbf3ff3cc
MD5 31d60b1d2ee5bf869ef636e6c0a6a0e1
BLAKE2b-256 91801ebbc3ed5dd41d51a0f415b3f2573d2bcf6c4ffee13951ce867d186b42d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9fa5bbac1116f7738e957a223c57695d3160900d16fd840c18701bed8bc23b4
MD5 9b5ba37041b8d500855817b45b520672
BLAKE2b-256 1f2564231ec2fec36b9e69c70cc7dcb362fd9121eaa422af13d8576fa79cb19a

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f78e9f4f6450e8f3cc30c95d021a11efc4726db747c14cd00f2ae28721590da7
MD5 e038c413ac44804be43b69d59b924636
BLAKE2b-256 26e4404a297cde551ee651c4f4f4298a6bb516b4f71bba1e0f628458fdd8caef

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0c910b67f6c5dadeb5d1f4dcae4c13fdcf5baecb12718c8c96d4b5c1c7f3d65f
MD5 4e0bd080d5be59f30444ebb6f2410f69
BLAKE2b-256 2f74985c0a0bc4c1c1b3408276cb4ce898795a76f70fe1fba7065ab75192e81b

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be109597e3f2d2fcb5675e5cbe0509f0bf6aa1f0e9b386772301835725fa60e5
MD5 df7b55e80912a5e4694d0d4e23962b2a
BLAKE2b-256 f30c40d04e68e8ab1335254593cac2d25f3259fc52c7b4a33edb090e1d0351d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f31edbb2cec17140a9f0352ae7060cdca7e815c7b65dce3b8533a900459d06d3
MD5 2a559de3bd52128b103be121d90f8493
BLAKE2b-256 4f6794fc0e7012a2359005061362db851105024a7c3be6214717353ce4053421

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f344bf9d2dc87822af7304ab4b5b13c7d2e05b1181d8b79bc27c99e633b27281
MD5 0358e785f5cc09877ff841654a3ac47e
BLAKE2b-256 cf629c95a3b6dcaf2c835ba6f17fff7903a1a377abeb6de9025729222be5b88a

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca8f1df1d3b7cdff8b7c409f185048c303f7c47262d435dd37cab06fa8be845d
MD5 c2afc68e39f986ff6454105f3edb8216
BLAKE2b-256 28f6517da6f4e9378eae0a06353e33e1a68d664faec3b2e04f73fc2d518fee96

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: blurhash_py-0.3.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 108.8 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for blurhash_py-0.3.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 580b658bf4cbb7214545dbfa1d37905257c91058f0976f1362a2fd195a450f3a
MD5 b88b4756d44116cb535807225c540f1f
BLAKE2b-256 67f46c45a4b2c5fed894b5cb127e8041e6ad7c0c3a9f4a614504396d0a54aa5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp312-cp312-win_arm64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: blurhash_py-0.3.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 111.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for blurhash_py-0.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 236264061b19efa231dc3b700701588b6be8cbda2b87bacced8c40da10e8fb24
MD5 2de4f506d22f442131ac57316164257c
BLAKE2b-256 3a55838f4fdc15b0dbe5e9cd20c089098766e46c0e3424fa73a0e901b7049bfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp312-cp312-win_amd64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9aaa7dcce04eb6ff1b7a40c23527fa46df4b11c84673977975038d444955dcf
MD5 f44cb3528aa3d932509e355ddb49241e
BLAKE2b-256 cb4aca4c578f951a3fa5d33248d459c9718a168900f56849c1752d991ffd44a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a44cb4faec22cdb44abf0a1795450e13d610a55c6bfe57a4d04535a92f7e8814
MD5 3877c783c8d45b5905bed0094129469b
BLAKE2b-256 ec16fc724526b04779f1aca800c3a1fabb6522ab5aa239d8089c4771b9d45ea6

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b5a85f02229b85432d3d74828ebd925653d22ebf8840cb368c1c93b2ab9a9c72
MD5 f1f4b86b7681e8c4fac1c8b5c2e89d50
BLAKE2b-256 12dca0ae0973174cc0b5cc702d3a634e5c83ab4813f78cfe7d325febd8f13e98

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00321ca45f0a17892dbabe8241a9c722243ab3fc34a5ed8262ea0ac05e81598c
MD5 c12201656b97da1ab1461a0da1746dd0
BLAKE2b-256 b17fdc2a5212c79ecc16179132b7110b5b3f4f3af4b2cadb924c0562d6cf6502

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7c508b698fb4b06aec536b1a1a681a3c5ad9d5cf0af7494d2f2cee090c81b3e
MD5 487113da80534106dead9c672e2ae23d
BLAKE2b-256 612aeb1abab405a7bb9622fe4c099e98a9dd640bdf32e910d9e1ea2e775b966e

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd46bb9b1e58739c4501d66f442028fa4f3be1884a28237cfe107add1f422075
MD5 7176faba047290ecf4fc3377d266bc66
BLAKE2b-256 a963ff5aa3adc0d8eb80f8810a186835a01dcb7e51214d53f3b27cb1b04c78ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6a89001623d31229da74df567c6c970506a372e344eb5fde122d8ca999285343
MD5 2f7fe3e887a13c1790848818d3a7148d
BLAKE2b-256 7ca9011435c92f53c38eaf4d3aa4dcfc65e67d936e80994c57d43d17c60a1c48

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 558aa332b5738a382647b6dbad38e826d1742fb98ffdcf8d3e1eed1ba4dc3b7f
MD5 488f95b931e5bdf32eb27704ccbc01ca
BLAKE2b-256 c438357bf5fa7b7b6e15c0acac3af7275c938373e67db4900e94a12cb1563a8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0269a8f6bcabe72f2c1b2dbe7169219572c8a0e141d477fe2a27048f534cf3d5
MD5 2ac7cab2afb0b177a1243156a24fbb47
BLAKE2b-256 c39f9c8dc689ea37221ed9a0c2e08ef53e5952f27bd9c074d11192b69ad73628

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9153bdc16ad17a83213574233e703e9450f44264e04a6b8f8203c8c559fecce3
MD5 1a4ee37a9966f2b921ee2ed32db62062
BLAKE2b-256 08ddb42bc4770fa3fdf2da88c6ea3e102f308bbba92eab596d1d5664606e2e18

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4ee087a051b10dd28fed39d2cc1287f398aab2a621f8251d743d5d5fafc524c
MD5 539b83fde61e3bc700295dc446acabb0
BLAKE2b-256 ac69774af5670b99ec657d3029fd7dcdafdc2e5a46448a2664e56a4dce8a4af1

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 568c7695b46ebaf394acfa4de91dd77dae1bda0bd9ab1e2d317e8f9d17fca03c
MD5 0316d7bcbb3cb6542f505c55d00f7de8
BLAKE2b-256 ec316eec1f3c5cbf9b327902d470366312ddb9158698995229c8796ad7f5a0c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: blurhash_py-0.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 113.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for blurhash_py-0.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f2666996124e007156eb8d68bb19f9c7d2ff625d4cc28b4a1b56c124b033d7b1
MD5 0c8e8c8f60aca1d598f222abc1f74c53
BLAKE2b-256 38aaf77a3ee79f4406461f845bebf569969103a8a03754ad5c96329a0384b864

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp311-cp311-win_amd64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e699ac4c975628a6887d1f88644585036641e0936644127c3894ad723abcec04
MD5 4a766471d433ac8cabc9a9880fcb36a4
BLAKE2b-256 8b2bd86afee9467dd5c60f6d24045c14e58b4dfc8b6ccb48500ab2c595dd3d6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 01b90b60186e6ba042f0fa0dd86a3aec7e2e196461b66d884c5bbcd08a8a997b
MD5 64898e566b53843f1d140b01d8a12cbf
BLAKE2b-256 123d0c58a9879ae8427a6cdc0f111bea5d9eb939c53c41ce6d8adbf957bc1c45

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 292ba3d38b2e67cad53ddb02a88448a1ef6b031d7cda79a22bcbe020cd43b3d7
MD5 e2a0e92c2d76372e0d7e4c7a1c50fdc4
BLAKE2b-256 14b2a8e6bfe8ae4fd91c674494b5fe643fff3870d58043b17549ef5bed540920

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55dff4e87599a979ed576384d91fe4506335b3c83ce6ea586b6984709952b6be
MD5 cb517313a996f406a9fc979c7699e5ca
BLAKE2b-256 7e1b73b4ebe0fc92715b9fd47f458209ded197c80e4655077d8a5dacadcbdb8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7dda56243863f8218552ca45f8fb9ad7bf2a51a2f157067489992a03445da6e
MD5 945104b6a85399ec7e207a884172d169
BLAKE2b-256 cc92a7acd7295e7ec5db86fc1f02bd011b0e54190090ee844626704c4d380a92

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7d28e0a52429c57a484e8296786ce78650e543395b12d2e34f66a094cfa4ad3f
MD5 3e835f6d59ed136ce58062d453b05a19
BLAKE2b-256 4ca8caf08feadc2999caafb79df043056d24e8b154c467ca553141ce6eba64dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a2d68f5a31a719bf90fcc9e01f19609be056ee26f12b96f3846e608b7b5a2275
MD5 a3c9704aedb901c2b597bb0393cbc02b
BLAKE2b-256 a2123a9bd964e366aad8c03b39902a3f6c920d9755f60ac500749b3183323c7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c26240def90671f73deb0730640cf1f018af9cfd67a227f25524692b05ae8ec2
MD5 2879e3181a5d27517e9ad3c9608de55e
BLAKE2b-256 b153f611d7ecb8271fd78fa043d4f27e5b9cdc6a9ce2a2065dbce2a05d13951e

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 baf22a951356ac0c582315b188cb86f7a287984001b4e6da6ae702a4cb7806ab
MD5 10ec8379a5af055a1116e0486d4e222a
BLAKE2b-256 aa72471de727aada223050f9bd86305f8f95fa40de30be16a3ffa668b24834b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0c83e672d9a1f028001863a5e6c622bc5bb5dfc379ebfea1463ba483d09ba9ef
MD5 8c4e9392adb0692e3ef7cbb946d57bb2
BLAKE2b-256 9caf04d749d88bb77eac0bc0fa36faeceb7b215a61f0c1c0c91d986d0b189ea5

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34d3521c7aaad21c779dde0ea51f626219821bbf6e527d5da113f6c10208e4bf
MD5 8539c6ecab7e7537153c855c9dd8b600
BLAKE2b-256 590598f98cf12268e3dfcd40bf88a61f6f2335ce9d5b43f2277ba80f13c240f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0ba83ee1d6cb105f0e2473c1635069fe1d9498de08d1dc55b280432dbff7b63c
MD5 6b5e38afcd7eac17d2b1b92ed64081cd
BLAKE2b-256 6bd42e954289c0b406e155b8764dcb983a2b078f389f1e63441334fe9f05cdf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: blurhash_py-0.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 113.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for blurhash_py-0.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a1722bba33d7fb1e4250eb541236c8cfc153255b1e1eaedea02dbc9ddba15ea7
MD5 84df1a5538ce58cf6f664de1bf7af91a
BLAKE2b-256 e05252fba420f8643a3bead401d038d7c3dfb8a9019bb947dffd395c77753bfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp310-cp310-win_amd64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c25145a1c10e3201ee1f4222462388d64cf7db76ae43eff60236f3fc930c61f
MD5 d3654e73ec3a7dd7d6765c4f3611d308
BLAKE2b-256 f788a925afed042f942b1ab28674ba26c906bbb435766b813c3cdc92baa1ca24

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 99b95b627ddf9bdeb39a8cbf055919ecfa37af3320521a625fc877c801247d07
MD5 86d9e7683aaab09c2bbb8b0f96f72fa6
BLAKE2b-256 d1a0554e12de2ba733f5828df6b9ed8da5819dbcf62a4771883653e15136aeb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1c4d9d875c9beae9d911a6819e39ce20eed379e818fa7c322c7456333327b874
MD5 a67fa921ebafda021a4f7b6b0031c888
BLAKE2b-256 5196ed98d0fbb973e60eee980e6eb3b87a59f3b99e8e92a707f92b1506d7bfe6

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6696a9423504b099a046a964d325bec2f5f231d0fa9abaf2e8d66e6eba62e9d1
MD5 07af4ba18d7ebb3a1bd36e65f0ed8680
BLAKE2b-256 cb322e826423dcba870d867d125cd79af0bab573acb8274880e33f02fd9c75d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a62bc4b38b85ac942812be46e5cac2457d33e01181501befa2cfa86a9c973394
MD5 7396383849f79c35700b3082e7e5dc0e
BLAKE2b-256 a1b888b4ebc699d141c08678d519cc23b2864dd0a869224c847875c5430d58e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 71a560e2849c263ef1fb6ac956de2b69f4ee4fd0d9a3b406f9bcd989cdcb257c
MD5 8588ca429eb0240768e9f7fe6179b1bc
BLAKE2b-256 b683f1777e9b411f5f10c7a9ec3fa3810fee9c73e9386c0380e0ffca429fac81

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f4e82acfa9742f4185ea8490844fbfa695d334fa7f012fb8ba99f248be9a80db
MD5 63ecb810826ac1f538738e5311a778c6
BLAKE2b-256 0f881530c33ae3d64cfea8c4433d6fb7ee0dbdf91a2f595c0eba0fd6e07d237c

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 38ac203f31fb2b219610993b1b7bdeae65af86a37ce9d01ac95a39fae1fece4f
MD5 4bb3642a6506de15a251ee6a2becb8a0
BLAKE2b-256 d8b67c01db1c13e0136b5fa4b1a896d2ff5657902941b061889b5e78afe0f607

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b79fa67e7deee162a0812113e627241510209ac53b20744bd3ed8a7420ea4d7
MD5 f6604a439a1bb8b00a2c1255e8d02604
BLAKE2b-256 2813a58a6fb17ce2398adc2da031de1da4397126bb04c2ea64a837307e49a237

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 25fa8a34004980a6a7027a9ddcd482d81cd7721d5d68c96036419d65cfb2878d
MD5 e718dd743500fcf63d3092298382f481
BLAKE2b-256 447b07485c97d75c64168c3bc420fa16d37f09c9a2b45de36292e056c3276299

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 758354fc5c4bfce355a57b526c3214bc3090502cfabc97eb448ed87017e48252
MD5 fb668f3fb991b8d481c7d1246626ab02
BLAKE2b-256 93fc8ae3cd63b18f4b6e86f6e7fa781b437f186a5bd17ec0a92d1d8cd10ca5ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 998dbfe6293742b46caf7041fa7710e08b254441b7118ee670bdc68df1059298
MD5 235720a8b3159c995bea1e8ee9380056
BLAKE2b-256 3e54b0c5138134773a45a9eecf85a48d00083af6900b38a485967da1fc49b6c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 720fefdbe774a8fa442eb323d39d869000adc15f95901e3e77298e0620f22362
MD5 4b51f184616bb5ce3077cc3019b6c38a
BLAKE2b-256 00cd9231d6c74caebccad569daeade15783c2299441867115ec85d50dfcd511a

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 986c6b5327cd8e1c1f9eeef4439a581edba8f4f5dc7962a80d93cf9541d38b44
MD5 b3260997c684bc8cbd88b8104c88de10
BLAKE2b-256 62a8b230e8f54e01738bd7a5ad85f6069a2e3634ddd54577240881fab54a20df

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7b1f93c2c42d607a632d4478aebb7445fd476f6a03a4371db3658e36d7652e6
MD5 08b456e63fc6a3e0cfd48d412c3cc792
BLAKE2b-256 b8db4e519fbcafe173df332661c2df2d52b3d551e5f2c30af1e82042fa20af2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ea461cadf70d0655062ad2e61435cf7c5e7c052e07b4a1af9aec92d2bf562c8a
MD5 b9b4c8cb03afe6700f684bc4b5a619d0
BLAKE2b-256 18f297901dacf5dfc45d06d7c1c243c4c979d5da501221a23355a068dce8055e

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 efcc326f36be7dbb6f24651e6418e124a934d54200c597ae52ec2f1b6493802c
MD5 02d4d936c9ab2127c1f75751a6fd420b
BLAKE2b-256 d54d73d4478dc51b16784d557f1be0788f6981d20d020b2dd36a9b7ad20e049d

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3125fe3f7209b714d85e82515319d4334ba99d805694a62917286de741e8bf8e
MD5 66f9f3acd8451aee70f24c1d419f77a2
BLAKE2b-256 f7de9dd16ae7f015aad401ffd9734643d815305266bf92d5d9416665db7f189a

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9ed3f7569c2a0f1a2ae8493528b6ce46eae521c9134a67e0239fe1f59f53598
MD5 2f556e23814d018ccdd65588bac0b832
BLAKE2b-256 f748b8567251ce0d77a247268b56457aad8d6380bb5e745961098b4e040470a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

File details

Details for the file blurhash_py-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for blurhash_py-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 49fa6a033056cd5624113010c2e9ec512a7117b30b7d63381243db2e10de7bea
MD5 5be30bca98143eb98300159fed5222c4
BLAKE2b-256 5ebe4ecff970146f49b126234cd63f2e4bd2cbf83338f000bfc3ba739884a7a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for blurhash_py-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on jimexist/blurhash-py

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

Release history Release notifications | RSS feed

This release

0.3.1 This release

102 files

0.3.0

103 files

0.2.3

111 files

0.2.2

111 files

0.2.1

111 files

0.2.0

54 files

0.1.1

111 files

0.1.0

111 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page