Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

Python UUID Utils

Package version PyPI - Downloads Supported Python versions CodSpeed


Fast, drop-in replacement for Python's uuid module, powered by Rust.

Available UUID versions:

  • uuid1 - Version 1 UUIDs using a timestamp and monotonic counter.
  • uuid3 - Version 3 UUIDs based on the MD5 hash of some data.
  • uuid4 - Version 4 UUIDs with random data.
  • uuid5 - Version 5 UUIDs based on the SHA1 hash of some data.
  • uuid6 - Version 6 UUIDs using a timestamp and monotonic counter.
  • uuid7 - Version 7 UUIDs using a Unix timestamp ordered by time.
  • uuid8 - Version 8 UUIDs using user-defined data.

Installation

Using pip:

pip install uuid-utils

or, using conda:

conda install -c conda-forge uuid-utils

Example

>>> import uuid_utils as uuid

>>> # make a random UUID
>>> uuid.uuid4()
UUID('ffe95fcc-b818-4aca-a350-e0a35b9de6ec')

>>> # make a random UUID using a Unix timestamp which is time-ordered.
>>> uuid.uuid7()
UUID('018afa4a-0d21-7e6c-b857-012bc678552b')

>>> # make a UUID using a SHA-1 hash of a namespace UUID and a name
>>> uuid.uuid5(uuid.NAMESPACE_DNS, 'python.org')
UUID('886313e1-3b8a-5372-9b90-0c9aee199e5d')

>>> # make a UUID using an MD5 hash of a namespace UUID and a name
>>> uuid.uuid3(uuid.NAMESPACE_DNS, 'python.org')
UUID('6fa459ea-ee8a-3ca4-894e-db77e160355e')

Compatibility with Python UUID

Some frameworks (e.g. Django) require UUID instances from the standard-library uuid module, not a custom subclass. Use uuid_utils.compat for a drop-in replacement that returns stdlib uuid.UUID instances while still outperforming the standard library.

>>> import uuid_utils.compat as uuid

>>> uuid.uuid4()
UUID('ffe95fcc-b818-4aca-a350-e0a35b9de6ec')

Benchmarks

Benchmarks

╭───────────────────────────────── benchdiff ──────────────────────────────────╮
│                                                                              │
│   Benchmark                    Min           Median          Max           × │
│  ─────────────────────────────────────────────────────────────────────────── │
│   uuid4()                                                                    │
│     stdlib_uuid4            1178.260ns     1189.167ns     1260.025ns    19.2 │
│     compat_uuid4            248.325ns      251.257ns      271.325ns     4.07 │
│     uuid_utils_uuid4         60.212ns       61.642ns       62.068ns     1.00 │
│   uuid7()                                                                    │
│     stdlib_uuid7            1327.365ns     1336.479ns     1615.529ns    15.7 │
│     compat_uuid7            277.427ns      279.572ns      286.819ns     3.30 │
│     uuid_utils_uuid7         83.582ns       84.654ns       93.588ns     1.00 │
│   UUID from hex                                                              │
│     stdlib_from_hex         443.457ns      463.514ns      472.753ns     5.47 │
│     uuid_utils_from_hex      84.256ns       84.639ns       85.301ns     1.00 │
│   UUID from bytes                                                            │
│     stdlib_from_bytes       398.878ns      400.830ns      403.030ns     3.80 │
│     uuid_utils_from_byt…    103.698ns      105.417ns      106.426ns     1.00 │
│                                                                              │
│ ──────────────────────────────────────────────────────────────────────────── │
│   Python      3.14.4                                                         │
│   Platform    macOS-26.3.1                                                   │
│   CPU         Apple M3 Pro                                                   │
│   Rounds      10 × 100,000 calls                                             │
│   Date        2026-05-13 21:24:22                                            │
╰──────────────────────────────────────────────────────────────────────────────╯

How to develop locally

make build
make test

Or:

maturin develop --release

Download files

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

Source Distribution

uuid_utils-1.0.0a2.tar.gz (44.3 kB view details)

Uploaded Source

Built Distributions

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

uuid_utils-1.0.0a2-pp311-pypy311_pp73-win_amd64.whl (179.5 kB view details)

Uploaded PyPyWindows x86-64

uuid_utils-1.0.0a2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

uuid_utils-1.0.0a2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (452.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

uuid_utils-1.0.0a2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (338.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

uuid_utils-1.0.0a2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (329.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

uuid_utils-1.0.0a2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (356.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

uuid_utils-1.0.0a2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (291.2 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

uuid_utils-1.0.0a2-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (572.1 kB view details)

Uploaded PyPymacOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

uuid_utils-1.0.0a2-cp314-cp314t-win_arm64.whl (175.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

uuid_utils-1.0.0a2-cp314-cp314t-win_amd64.whl (176.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

uuid_utils-1.0.0a2-cp314-cp314t-win32.whl (171.1 kB view details)

Uploaded CPython 3.14tWindows x86

uuid_utils-1.0.0a2-cp314-cp314t-musllinux_1_2_x86_64.whl (532.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

uuid_utils-1.0.0a2-cp314-cp314t-musllinux_1_2_i686.whl (569.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

uuid_utils-1.0.0a2-cp314-cp314t-musllinux_1_2_armv7l.whl (609.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

uuid_utils-1.0.0a2-cp314-cp314t-musllinux_1_2_aarch64.whl (502.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

uuid_utils-1.0.0a2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

uuid_utils-1.0.0a2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (448.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

uuid_utils-1.0.0a2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (334.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

uuid_utils-1.0.0a2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (326.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

uuid_utils-1.0.0a2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (352.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

uuid_utils-1.0.0a2-cp314-cp314t-macosx_10_12_x86_64.whl (292.4 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

uuid_utils-1.0.0a2-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (568.7 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

uuid_utils-1.0.0a2-cp314-cp314-win_arm64.whl (174.2 kB view details)

Uploaded CPython 3.14Windows ARM64

uuid_utils-1.0.0a2-cp314-cp314-win_amd64.whl (175.7 kB view details)

Uploaded CPython 3.14Windows x86-64

uuid_utils-1.0.0a2-cp314-cp314-win32.whl (170.7 kB view details)

Uploaded CPython 3.14Windows x86

uuid_utils-1.0.0a2-cp314-cp314-musllinux_1_2_x86_64.whl (530.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

uuid_utils-1.0.0a2-cp314-cp314-musllinux_1_2_i686.whl (568.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

uuid_utils-1.0.0a2-cp314-cp314-musllinux_1_2_armv7l.whl (609.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

uuid_utils-1.0.0a2-cp314-cp314-musllinux_1_2_aarch64.whl (502.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

uuid_utils-1.0.0a2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

uuid_utils-1.0.0a2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (448.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

uuid_utils-1.0.0a2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (334.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

uuid_utils-1.0.0a2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (326.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

uuid_utils-1.0.0a2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (351.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

uuid_utils-1.0.0a2-cp314-cp314-macosx_10_12_x86_64.whl (291.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

uuid_utils-1.0.0a2-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (566.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

uuid_utils-1.0.0a2-cp313-cp313-win_arm64.whl (172.9 kB view details)

Uploaded CPython 3.13Windows ARM64

uuid_utils-1.0.0a2-cp313-cp313-win_amd64.whl (174.4 kB view details)

Uploaded CPython 3.13Windows x86-64

uuid_utils-1.0.0a2-cp313-cp313-win32.whl (168.4 kB view details)

Uploaded CPython 3.13Windows x86

uuid_utils-1.0.0a2-cp313-cp313-pyemscripten_2025_0_wasm32.whl (98.9 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

uuid_utils-1.0.0a2-cp313-cp313-musllinux_1_2_x86_64.whl (528.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

uuid_utils-1.0.0a2-cp313-cp313-musllinux_1_2_i686.whl (565.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

uuid_utils-1.0.0a2-cp313-cp313-musllinux_1_2_armv7l.whl (608.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

uuid_utils-1.0.0a2-cp313-cp313-musllinux_1_2_aarch64.whl (500.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

uuid_utils-1.0.0a2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

uuid_utils-1.0.0a2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (445.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

uuid_utils-1.0.0a2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (333.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

uuid_utils-1.0.0a2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (324.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

uuid_utils-1.0.0a2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (349.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

uuid_utils-1.0.0a2-cp313-cp313-macosx_10_12_x86_64.whl (288.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

uuid_utils-1.0.0a2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (561.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

uuid_utils-1.0.0a2-cp312-cp312-win_arm64.whl (173.0 kB view details)

Uploaded CPython 3.12Windows ARM64

uuid_utils-1.0.0a2-cp312-cp312-win_amd64.whl (174.5 kB view details)

Uploaded CPython 3.12Windows x86-64

uuid_utils-1.0.0a2-cp312-cp312-win32.whl (168.5 kB view details)

Uploaded CPython 3.12Windows x86

uuid_utils-1.0.0a2-cp312-cp312-musllinux_1_2_x86_64.whl (528.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

uuid_utils-1.0.0a2-cp312-cp312-musllinux_1_2_i686.whl (565.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

uuid_utils-1.0.0a2-cp312-cp312-musllinux_1_2_armv7l.whl (607.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

uuid_utils-1.0.0a2-cp312-cp312-musllinux_1_2_aarch64.whl (500.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

uuid_utils-1.0.0a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

uuid_utils-1.0.0a2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (445.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

uuid_utils-1.0.0a2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (332.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

uuid_utils-1.0.0a2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (324.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

uuid_utils-1.0.0a2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (349.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

uuid_utils-1.0.0a2-cp312-cp312-macosx_10_12_x86_64.whl (288.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

uuid_utils-1.0.0a2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (561.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

uuid_utils-1.0.0a2-cp311-cp311-win_arm64.whl (176.9 kB view details)

Uploaded CPython 3.11Windows ARM64

uuid_utils-1.0.0a2-cp311-cp311-win_amd64.whl (177.8 kB view details)

Uploaded CPython 3.11Windows x86-64

uuid_utils-1.0.0a2-cp311-cp311-win32.whl (171.1 kB view details)

Uploaded CPython 3.11Windows x86

uuid_utils-1.0.0a2-cp311-cp311-musllinux_1_2_x86_64.whl (533.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

uuid_utils-1.0.0a2-cp311-cp311-musllinux_1_2_i686.whl (570.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

uuid_utils-1.0.0a2-cp311-cp311-musllinux_1_2_armv7l.whl (611.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

uuid_utils-1.0.0a2-cp311-cp311-musllinux_1_2_aarch64.whl (505.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

uuid_utils-1.0.0a2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

uuid_utils-1.0.0a2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (451.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

uuid_utils-1.0.0a2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (337.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

uuid_utils-1.0.0a2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (328.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

uuid_utils-1.0.0a2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (355.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

uuid_utils-1.0.0a2-cp311-cp311-macosx_10_12_x86_64.whl (289.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

uuid_utils-1.0.0a2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (569.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

uuid_utils-1.0.0a2-cp310-cp310-win_amd64.whl (177.8 kB view details)

Uploaded CPython 3.10Windows x86-64

uuid_utils-1.0.0a2-cp310-cp310-win32.whl (171.2 kB view details)

Uploaded CPython 3.10Windows x86

uuid_utils-1.0.0a2-cp310-cp310-musllinux_1_2_x86_64.whl (533.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

uuid_utils-1.0.0a2-cp310-cp310-musllinux_1_2_i686.whl (571.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

uuid_utils-1.0.0a2-cp310-cp310-musllinux_1_2_armv7l.whl (612.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

uuid_utils-1.0.0a2-cp310-cp310-musllinux_1_2_aarch64.whl (505.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

uuid_utils-1.0.0a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

uuid_utils-1.0.0a2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (452.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

uuid_utils-1.0.0a2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (337.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

uuid_utils-1.0.0a2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (328.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

uuid_utils-1.0.0a2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (355.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

uuid_utils-1.0.0a2-cp310-cp310-macosx_10_12_x86_64.whl (289.9 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

uuid_utils-1.0.0a2-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (569.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

File details

Details for the file uuid_utils-1.0.0a2.tar.gz.

File metadata

  • Download URL: uuid_utils-1.0.0a2.tar.gz
  • Upload date:
  • Size: 44.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for uuid_utils-1.0.0a2.tar.gz
Algorithm Hash digest
SHA256 812416d8e6bd10207ef46d3bf3216f28717a5649d4ab3f94d974b93d9717ae4e
MD5 afb71998ad90d3237b6cd03ada5f3705
BLAKE2b-256 fcbdd758dfe441af849663cf9eb6a989a7b3bc735ad550ff6e4aff003c2cd9ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2.tar.gz:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 48aaefa35cc0ef46f8b64bc87f9c7952df08d0691d5ab5033be67521cfd2c1dd
MD5 41c868791a32cbc0253393a93134d05c
BLAKE2b-256 df7e351fb58ec1a8bc3d8fe80b9d0d6248d7310d4297d6488194183712d045a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-pp311-pypy311_pp73-win_amd64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f82dfc122766d06703286ee496bf0e3a08e1124caf7b99d8c8bcc7383c5f647f
MD5 fda42a0a068796a8075a186aaaef2c17
BLAKE2b-256 13523de775e69cb06d40fd8f0cab6c83e63b18f31053d78ae4128182b18dee38

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 460b9c29ac6121523615de3c810114e286de35ce29f2e985915ba49d1c689627
MD5 8c5d7ed66b1eef0553f68463a5d4e0df
BLAKE2b-256 95a1c9cf7e67a4da7988e525fb3a60de4e3933fed88c80df679e5d3d4b9ea7e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 929327a0fb0795260912cc7d411c3f5dc9cb4e65c12b57a4b82ff11d05dd0630
MD5 a0b8b8f77ee1e5fe6920a20785110f44
BLAKE2b-256 31d961719bea6dff5b5d19175d5277fb92cab88c133d82884539c09f2fdd54f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8c600baf7f08f0df20f12cd59f1418a667a914d38068cfb4c7714dd6bc3e46c
MD5 d0c45d041b4377c83b61756d4f077438
BLAKE2b-256 481ba4a92cf156882a6d8bb128499b8b3d8b1616fcc7554ac80ebe61b2c76a09

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c33ba48db8dfe35af1ab2cd908ddc25f9341e4d9e04379aa6c3545e7fbd38196
MD5 ea4d897ae56f4bc54696e9ffaae3d237
BLAKE2b-256 9d22e2cbc8fabdc781a4743185e47ff390c90fda96a884474c5629e8ae98ded1

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fcea360fd02e98c326e88ad22c4f51dc5c9f44839adc50f8c83b1ef9e93722dc
MD5 2497bf689102322a8c702b9dae90ee66
BLAKE2b-256 7eaeee38fad45bedc3748b4a4179677a58b66bd2645515940714fcc1656cf2dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 8c8e1727a48b32c555c7d0ca88893df9ebeb6974c8b0018650fb76d898ceedd2
MD5 39fe4da0dcc8d7289d42216c1df91396
BLAKE2b-256 933170f1fed8b377071a58efdda3dca7485614a3ef59cb329936ec097e4f680d

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 00f6317236a79cefb5c5ef1d8165377f0242e65f21a4fe13000df2ae2e3694c2
MD5 2cd7d3c9045f1bc039e3031caec99155
BLAKE2b-256 87a0b25a4dca3703c26c5bdbd67348e3eceaf56665a9a1a6a48ca589f020f833

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314t-win_arm64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6e19acf947ed9fb9b0200656db51bdeb03bd5a3097b2f1b873179ce9122b1cb8
MD5 8c4280d434e2fd29d1c4dd85496296cb
BLAKE2b-256 f371c1a86115251d7f1df080e356f643e4b186a819ea567f62a64437e3b705d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314t-win_amd64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: uuid_utils-1.0.0a2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 171.1 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a87e330ddd2d67a35fc0c37c00fd02af3a14779e0afc60ac22a64f64e1c036fc
MD5 bf4ccc228e7df8965a5c346398a4cb50
BLAKE2b-256 31a02d200e385c27ac1443b8e568f2f900d1a9ce0adb1afd6ea971f7e6144417

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314t-win32.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37bfcd3752615606501e59539ce6702a6f50f88bf185f94d020ca22c381249e6
MD5 7ec28b149999a5309a3c5a2943092185
BLAKE2b-256 84e8569729a0f1fe33f762b7c4aafb38aa3ab1718253839b9ef018ace806a776

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a63857e70ae14980ea7531ffc04a25a4fd0fb16f4939fb1416a8451d06050062
MD5 23434386c176d875afba0ae3db610454
BLAKE2b-256 dc6610db4b0c7ac0b3f00c605c504766905d44b62e4b66566d9b0053015f38f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 188d6ccf35d8423b6175e67de7ee112d7cbb7a52f5904d892e85ccd58ad6ad55
MD5 ad4b64833ea24646c0f4fbc0f15d3dd0
BLAKE2b-256 63558d59374db65fa5c9fb4805ca0c77b332da953f975fd66b0c46347450ade4

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4a1d4ee146198fa5c9c2f93bfd55bd03d30a53f5c4498b4fcab8b156e084571c
MD5 c9ebbd2e7406db13e26daf57c470fc0c
BLAKE2b-256 6368a8690bfca5996cab26d2a25f9e17f6b72ab5a33995b9baa7c4729b10614e

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d282ed54780d12e3b0fc51bc6b50ab358bf5188bc06740508c847c1bb116e10c
MD5 5d49a9acd1287071d12c0c87afc3053f
BLAKE2b-256 2744c34411207e9fffd4012536756b96bdf04971248465f7924aa73f2c6169cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2605d98e8ff58bdb9b6b3722e283d0b98f71a38c4ba47e33519e032d30953a87
MD5 b7d755e690b3967e5fed6b3665358f3c
BLAKE2b-256 6852d336dcb1819106173a96e42c992bee3f224b018dab77740765a341f28bf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f94ccbad3d00ebc58bf0261272fd87e82000f63d7084d43fb8eb868ae8bc518
MD5 393683489493e0ac14749c4d5ae06eb3
BLAKE2b-256 f638f8fa47be47523c7aab1073b9827527c302c7aea296902dae55e4bc130896

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9532e700d56aa4cbf37623fad10291e8b3528dd1062887356e724dbeee071e23
MD5 2f7e2504e52249d76f68f138cecbd00a
BLAKE2b-256 4f648cb95e507f6f7dc796c61f9d602f054965d8135b4a3352b693d5c56e60fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7d556d52b5a6d5ed507d7dd39f8c95e561c713c2156033705cffa8b399e8b9d0
MD5 4c5286064cd1588de2d6490f027fb9e8
BLAKE2b-256 e31a550d2cf6f6fe211e1f23d3c81d734993352f056e0a0ce10adda229d3d569

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c420df006992c4873be1341f6c0fe51de542e905a22a5cf97d62f29d8904ebdd
MD5 f811dd4d55bd4b57bb043fa4e838794a
BLAKE2b-256 d5d3fc5363ccd2cba69100a9d76a5be527358b4162eeb4be66c84e0443bbe67b

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314t-macosx_10_12_x86_64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 a45f76625e3ece1d90206187c74caa3bcca055362a9f640ea441c34b2195b409
MD5 a65bce5af2850c406475367825d11f41
BLAKE2b-256 eca19800f9cc6ffa4922b6db7bd0bad56025ef69f89737b2de56629fdbdd45cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a83fa450e8170d2b23b46200b5207798abf17e6b47f8641828eadda75c8e0d07
MD5 3c6b262ecb2a2355deafd32e6966df0a
BLAKE2b-256 f8755ce578069b5dfd7d7921cac858ab75eee3bab8b81eb62b1769811c66e2f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314-win_arm64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d7122e0f6726990096955982255a27253c03ac3d4f3c1a81079e33636b5c7907
MD5 2d8126a9cb449bf644a2417f8ffe9181
BLAKE2b-256 42773115ec0a25f993c59459b52fd5ea963765b36757c1b4b3248050c2e9844e

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314-win_amd64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314-win32.whl.

File metadata

  • Download URL: uuid_utils-1.0.0a2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 170.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 eb747c15dd63dc85a89571256b7f664f577611f8842214e0c6488b3b9284ac55
MD5 23402a00cb6ac3a3f9aae599f03df9ed
BLAKE2b-256 dcd271a99227f0397ea7f8f48c201ef51df455d4a1ab3302d89452a426c6155b

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314-win32.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 209f92b7e95885d0a3aadb3c95bd66898de6495e9fedb0f4e6c36e5449a2c6a4
MD5 4afe84ec291990d0fb81d2b7cbc842ef
BLAKE2b-256 6e8221e240532d8102882f11ba975e273a301110e20660091e6c74f5da61ea68

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2b5146232cecea422f8b8457ee459c29293d68a0b7dcf748827a8d6abd379ed7
MD5 f4bccd071c0c569caee6e6cefe659bd0
BLAKE2b-256 2745d78a0de9c321f444983913d9582e15a1ea1d799c31e1a45f5dcc9985f212

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 776c7ce7987f36148598bb4e50d8bd4700c3a7561cdfd73084b9b6d34278f080
MD5 fe8af49fa79d072254c3cf3e3534e78b
BLAKE2b-256 e203c4047a63cd9b214e1e6ccfd585edc22390197413dac41a880a95beecf775

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 635c5965f92ebcd1f0d1b835a38afaa1eb4a0db710936e09c270a3f9b93d5098
MD5 3a485544d56ef23e93e7a2b1c6377880
BLAKE2b-256 64b91a49f25d2dcd0dbe6249b934fd07c32031b2d0f5f1e80725fbf9b1778f37

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ab3f3b1fa9454c069f13b67e790099ca2e410c781681f248bcf2e1a23f8b429
MD5 4147fd7c67b7b5eeab3262ed69328f39
BLAKE2b-256 0549fdc73997f9a3d61c3ad99bb486acf92f39482da3137029623110a0eebd3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3a31b6be6c0ee161ea7b989e7dd8cf1f4bd5d35670496fa92e1eba1f8bf4111c
MD5 8d4497874d79e63aa045fab61ce1331d
BLAKE2b-256 ec9ea3fc4eb0ca8eb363371dacd40b66d54179a6d328f843b7ef3e76e5bb3847

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9224c7d2deeb4bcdac6c025c832b7892aa34d92252d4499dbaaebd7d9c2af6b3
MD5 d4c7c2196a130bd49fec6d0d05b03eb3
BLAKE2b-256 f636b8bbf359ae438eb310dfea8b76084c288be57a6e32581e7728088626fca5

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43767f0c12ec4a648d23e01da1e16d6f7d7e3e353b80478cbca26e46680eb402
MD5 90c90f1d2d8da246a947581ea101f6ad
BLAKE2b-256 2bcbc515dbb2991e2780ae6b25df94099501c10d48c78d880ec227978e233a38

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0993a513492258e3ddc38660cc4e9cbe781c03ba2ee63d4afddf2d2f5ac0d0f5
MD5 f8bd4d890d710285add71980513080df
BLAKE2b-256 d6186e4e3323c48dc97ac3a49050108e1e32ef5f18b9e0beb09f7ade9845c087

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1c9cfc805c9cdbda44a11f0fb669b8e364111e1a885aa950a820ea7e90b3f580
MD5 1b713ba67ec9f624ab930c8bedb7438e
BLAKE2b-256 e38af217bd61019565d3bbc579cc8e6947e3bf006ceb4d5e31bc81e3c796685c

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 5a627fa88eecafb498cb1a75cfb378e428e6d66efee9684e22de92e848f681a4
MD5 f94594b287f7c90702c76a7f11a406bb
BLAKE2b-256 6b334bc46ae848eb9879bc4cc2efb393d64b63b73b4f61ab5f5605f6476ecd39

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 6a942323c28bfb049fbaf8a29159de5dd25725e5e720c117ed45fda773c2c5d1
MD5 8944f21563cb6907066f6c1bdbb624bb
BLAKE2b-256 4c89756da5f631a8a51323875d9ea99c3fda0ac89e39ed0aa553c56214f9e7e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp313-cp313-win_arm64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b9d1c761aac34634fc2113758520413017df79f265bf2e2fad7de08ed1104568
MD5 a286b3c397c9edb3dcdb78318daff7e1
BLAKE2b-256 19503d3bbb889a0a698e36054e378753ec8f26c7b2031c60e4070d0e0cd3fff0

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp313-cp313-win32.whl.

File metadata

  • Download URL: uuid_utils-1.0.0a2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 168.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for uuid_utils-1.0.0a2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c9ecca30a25d2ee3c63f00c97694fa5e1cf1ddae3db9f02f0d882ec5108b6988
MD5 06e634216fb8b41f527c72edb2ad3423
BLAKE2b-256 0ac1f0d2fb20b710551c45fc29fbb7b5742d09ae3fd784dc598311c662b6b7cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp313-cp313-win32.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 100281aeb33d541e5e48a2f79462947cac9601a48612be215f32943a00caeb1b
MD5 9f2ec1779d794ddd5a38e17bbbe2bfb8
BLAKE2b-256 a3760277f944bf3132a1e2a4ef84bc093a19d7a99975dd6d0272c40bbf9989d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp313-cp313-pyemscripten_2025_0_wasm32.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2444fd6b1272412e514def1d30949d5d538c3f256e5dc54fc07f1012f1991e1
MD5 10a0d6b9f95d778108f43e0941b951a3
BLAKE2b-256 d115a7e3140b1a747dc5e5bbb1766c6e8d7638bff258f6d6491f99ad5af84177

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 355d46daf25163e365f52e3b10c658d77246174f02bb87f774aa3eb215f939d3
MD5 4972239ba239cf6003ff28fc2a9ab589
BLAKE2b-256 0a67ff9f92a6592f2ae2ce19a4018b2aac14c561db361e860f6d500ad9330b06

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d2607be479873a4d73ee73c116d95e999954f9f340cfcb70e7f3cd3ccd8f8414
MD5 28f70d9d6d64092c585bd8da2fb32641
BLAKE2b-256 7835b627d7d388e936c050ca57873d1e28896676c38a6824f59784ad85a26622

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65ced7e255266d9a34380cc9738d5acce9af4ba9cf042203e74b198a74750dea
MD5 cfb348bb407ffc91ddb918d4e2e686fd
BLAKE2b-256 038e4b989ffeaccdf322b1b0ccf62067c2e0490491374f5eb0e3a95afd497c02

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4431164d41e58d2b8d8f24167d49eb3cc60588bad2a384c3a7bbef51d05233df
MD5 7bd87acc470ae605c83650a7bd340d8d
BLAKE2b-256 7d6d4b7c960360eb7fb78364c1d567ea63796ab2e4b470d4709851cfe9163a86

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 230140e64cd23e3e1dddbfb22a49251a43d9c39b37bfe3440dc8fa040c3b74db
MD5 c4871839e8ab306a4feecf0eb6528687
BLAKE2b-256 2d05e6b1daaa5ba3f724b6a471d77b411f0adfe1a3c6d3b3e80cd3f77b85492a

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2193750e0ee2801ac37b913e95b0a2f8561307613f87bc461f1fc3568f37a7af
MD5 a4b237cfa031e0297aff722994e91e92
BLAKE2b-256 cc1a3d9aa874f56927a1d88d563a1f10fca5d34a8a4c1753c6296fb75a15132c

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40510ab203e469f68c5f6c8405dde88897976fa507cfc6fa8b0dd44dea5f3fe8
MD5 5eb16281ebb61261370bec0d45d758e4
BLAKE2b-256 0585d84a81a5f6aa033798b9b02111a8b7e71872ace12196ae1c21171e251c1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e97b744f419baa5be6eaedf16c8795a9049291efff617801518c4c57f5d613a0
MD5 4ace83706667bd55023759234b1c65da
BLAKE2b-256 9837fb083996a8badcb2f256ca466dabf359274d32162aebd4eaf43883738912

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ef103611b48fb131b811bcac2dfc57c3ddfe0475be559d4c0979bdd2caace3c
MD5 9f180bdf1a78f17a777201b6da90f8ca
BLAKE2b-256 727b679a5deb1d0dc8ea07dbe8bb90926199a7842bbd307937438d53a32caaee

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 fab55e25ccbd80dcb2ea578c19880ba11833e3c4a2bda6a820b6a835d3b7e64e
MD5 810a42d17baad43f29bb18fb171b8e2e
BLAKE2b-256 ea98692c6d79677c1a0e4ad78f3a3b65d8570eda1d71feaa6a21c84e8afe2274

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7b4c627ae2963d0e7cd6a6c98ffbd55c79655bdd8741f9a9400e90bdba22050d
MD5 f0810bf334a67d42c3f2616b2a858f98
BLAKE2b-256 ddc66558ae05c1ccadfc3bf7825704a44cc7f2baa9baafea72f7109f115bf2a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp312-cp312-win_arm64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b48a31f09304e6709a102cc740dce64409dbc92a0e3afd8f024b5a17c5774526
MD5 2b8ed99c6e7e74a7b850fab817291aef
BLAKE2b-256 bef483b36d3882267519f412d2665f72dc6a25e04ca1d53eab69013f04ce1a93

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp312-cp312-win32.whl.

File metadata

  • Download URL: uuid_utils-1.0.0a2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 168.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for uuid_utils-1.0.0a2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bd950e48c59f093d15d86ee5d31f548b504f2793c298b12c82c69b678ad7daf0
MD5 37da45b21898848c21ffa3112fb044f4
BLAKE2b-256 2731ef09271aa166d61d3c1caaa28104d698ed2cdb7810ad86c0583d17f78b1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp312-cp312-win32.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffeabe9b1ff1d8795704c910c399864f64f39b6d52e6bd5e60834d866d357a4c
MD5 c6f1d7ba24a470fe64a10ad8e1b66066
BLAKE2b-256 62bd451275796df48ed81ac30022204e9bff183319925cbd981a416179a3d978

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa4c2f34e9ce87a019bac3659f32263f370db5b684f1ba761882c2eda799f0d1
MD5 1f1fd4299e01275adda58d256841b41c
BLAKE2b-256 37d64a89e1e674892c0a28f99ba725322470ab85dd915d63eac9dfc54de05cc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7bd5ba6c40acff67a50eda7eefc72f8bab608e8189ac9c209ea8191e49d56a0c
MD5 90990e0b2f1c2b6610de35b6c94f870a
BLAKE2b-256 613b95d8129acc07dd95748f164ed1a2f3e87b120a12f8789ad81baacc93abbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a666cc704b9b4001ee0413698f4497189644e3a9bb886b0ac20ef51e68b54b61
MD5 928a91a212d72178b33b09b5b47bf95c
BLAKE2b-256 3d862af4a87354ef8d7ffe8bb112e9a4dd50feb6ae857b9a96309cc208a40e5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 daf577ace2279dabe74dbc02527e625f2fb3aea8c66acf0bae413bdf1c003ff8
MD5 7071bbcca6644ee4a64505269a39322c
BLAKE2b-256 61a0b68f21aa53731bad8df6b5c3f141c480406757eb68297d210a99b891aaf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e8aefa2ec957ca6bf456744b4aa8c06f1d9ec9d1cda9da2caa2f67a5032faa5a
MD5 ab632906186807da52b9c15745e8d217
BLAKE2b-256 f9b645a47d77a196640ebf06ac0721eca28f3fb08b3d53918d5d28b73624285d

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cc362418175be186db98ee7777d7a90e3a653958b836244e3e0cf46cd1aebde3
MD5 8eebc95ae8372e99029a3dd9db97574b
BLAKE2b-256 c7fbf5f13ff79d49f04bb16fe5cdbb5027de67391e659be3bf86a4344ac69cc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1bcad45aa8f393d1bcd5c5ae16d55e719c7f8a96ed76d100d9f7f7ac361a3f95
MD5 ef07cc7a5bff860dae26546aafeccd5a
BLAKE2b-256 711c2ffe5972c8f1132d0203cf406a8e226f0e02a1e51f02be5ff6745228de7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 22bc15065194e545841f65f00c27e6d5f8716187263c9683903ad34f3691fa64
MD5 1d96223ebb6bbae026436b931e0aedce
BLAKE2b-256 c089523b4ed78afa2c45d14715bd41b4e8ed3d563a0cef4dfbacdc097751c5c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1b3ffadee08181ab2ce04adca351c0418c1c16f6b3f3ced3c6853304c100bd39
MD5 f095276b17ee020b05f707b43263bdcc
BLAKE2b-256 7a6b2c340ee0c77e7abe19859f9afde5ff6f2341606d525912904c7797fcf690

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 5f4f0e53015329a42b52d3b6350bb611f1c5365d7ded47f4b3f089d8330a79e5
MD5 ce1d197e7087fe3e6aaac03ff4044686
BLAKE2b-256 ce5ddbb681d470355ddff6ad362f89b87f495657cfecc762cb704f949ac89624

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 5f017553b37c5af062ab69aaa1c55a2a5482ec2ec9a31951cd37858c76353aea
MD5 e223864895ba33efa45f9656fa4c497a
BLAKE2b-256 5852fd2bcbdb021180a4317d6081986053a525aecefda7f9d6b07cd022af362f

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp311-cp311-win_arm64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cb6bf9b3fa7d682e2713177b7126a366f01f1c561e5b07ef3ebedaaac90371ba
MD5 3088f81557a54ed2c6924c2e1781cb49
BLAKE2b-256 5605cfdbd5c75a281410d9e936e31a169225e889949997692db77acd0b9ae159

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp311-cp311-win32.whl.

File metadata

  • Download URL: uuid_utils-1.0.0a2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 171.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for uuid_utils-1.0.0a2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6dbba10a8c94a4171dbce07cf0b3e0d24df869265b92b7da19c06ce44939cb27
MD5 b4fcb9b019496baf6178edb90207f57b
BLAKE2b-256 7557bd0e6f756b9c888d42a8a6956a64879f7d6b7424f3eb23b8620ea29e05ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp311-cp311-win32.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a07c253456ecd8fb27ac7c9f360cc512e08f0b2ab4aa5c1b8a9246669e82db9
MD5 447a683b21861976edc9d4d49edebab9
BLAKE2b-256 d556134c696b4820837f7695b68cc594049f0a9f27fd61293c173098d77a951e

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 129b020c8fe09c30c9883cb9727bbc111fb42e5bb37e1e2bfcb74d41a4ce2726
MD5 169418d21333f3e459520e1693041420
BLAKE2b-256 5259e1def92c53e43713abd3d2031c048e750b2e37a07de08a5c659939e6ca99

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c18e914572ad1d966d81f439967e0d783275ddd66b39988cf7cf5055a0ed094a
MD5 59f3e47a29f647b3fb4d29bd482feacf
BLAKE2b-256 14c736127f7e18b87b5a058510f23578c46936d904ce6fc6b93ecbbf8f580e65

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a987699c46850c9be56e20f12121f2570b8fdae9d71f1c52fcfa605802c50f13
MD5 6bc8e564805259158f0fb687150af87e
BLAKE2b-256 07fb83a97b8ea672e0bc51f3f41eb51c5fba9705b99154b7f5f970aa8d0a0bae

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80109db0cd4fef03d230b4c0507111ee543e0b067a404a215866dd7b56957460
MD5 9205318caf2ed2f5490adf49f5357f67
BLAKE2b-256 5fd7b82b2752a3d2c8e0f3e64cd7150d34d64db8950970ea1b8b659fba118003

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae7708d975c360c70f79a863f684871063bdeccae8786a372aa0da232d22fe6f
MD5 f39ec15cea3fc12c3a31f50021071b58
BLAKE2b-256 4abaf1410d92eeadb13fc700dcaea2ea9d3852712e023f3182552438381ebbe6

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0d1840b899dfa0b3a085fb4e5ab85c76e11adde2c682991cde1c687aec005d36
MD5 c4eef912d2be450468345820c865a429
BLAKE2b-256 08ad33c579f3437765734e3825233af660a16ff54500b5925f7bdcf36d67a21e

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91386d4ddd84af1e877407d37a15d73fdedbea539528b247d7d607f5a76b4fd3
MD5 cbb6bbe686f9fa0a8106e02fc62fdccc
BLAKE2b-256 2c0bedfd21abef35f4ab912ad5a193220b5376096c33d4d86d02395938459859

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ba468750d02826b2ce73ae6eef0e0969c47a107948e67e175f963c303232fb86
MD5 fdd8f1a1d2510a4c732bfdba3e2a05a3
BLAKE2b-256 ea3ef5d6e59ef4ffab017b293780ad98cf15e41e1e039a358211f6cbe38b7d7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c14cf7e950b9a7c2003adab9ccb2f85041626776e7ed261319eff28dc6c5714b
MD5 7e079bcd9e8da65db410e664a1a0a4cd
BLAKE2b-256 01c7bd8d5bbbd14bbd0d75388bb27ce26b9e857e5121a8f94843e4fb522d4216

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 d753f4f1e3188620983261366fc733112e487903972ab84c5584b4326ab31d97
MD5 34d25583a52e1bc9d8e32e979e27d9ce
BLAKE2b-256 ff9882927d78e60d306296b09f5efca2b21ece117a7884c35f8cad5cb54ce697

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 df46e3a6292375a48d1f91675ff60845766c9c3da558d719a5c04550e9aec54d
MD5 83390fc9438cd049eec8540645a5601a
BLAKE2b-256 016666b1609eea135bc18a93bc5c779b9beb744270071e8bcf0a959271f47250

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp310-cp310-win_amd64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp310-cp310-win32.whl.

File metadata

  • Download URL: uuid_utils-1.0.0a2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 171.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for uuid_utils-1.0.0a2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3c078b210052f4cc42abe4d6450c54fb88a2fda3d7479fee8e954abc1a5f9219
MD5 4da44f7591d403e18fdd2857a9251e8c
BLAKE2b-256 d10dd17c516742ece7aabb9ce4566eefe93197d3d47866b6a03cb34f10bc4a49

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp310-cp310-win32.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7885cedb3bcc478e3c94a2c64617d6bd05c1ea93929f2f4352d8da5e9b49d06b
MD5 a41d56ad387326743e15bf8eb087831b
BLAKE2b-256 9dd09981d057da0eec0a76e3f6f53080fe394166bdf7c052a125c13e912c28d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66832951816321a97273c117f98feaec9c3e764098fc7818513623188980a019
MD5 3dd0673d1d71379a8682e41b15f5c85c
BLAKE2b-256 953530ac603d3aeb23034710b28c7fe297d5f7e64d41bd59c4d21698b9cc98d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 63d03286449978b1dd5140cd07f4a2d48512ff5e80b189b3d9ae3451b108d646
MD5 a0f33da7aa0d03ed19d24ab8a3fd7561
BLAKE2b-256 680a540b4dab534e15cd46519c50cb7d5d624b9e649585acf50e875d145ce100

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 96c772820b8b7ffa918640cc2842f125f89b4c24c7a02033b12d0a64d5e4c28b
MD5 bcf955cfacaed49cea8d3f849385bb9d
BLAKE2b-256 08ca02a85b50cd22500972ab390d8fa716dce13e17067cc33796ae2ac24a9587

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 faf9b335d3f4a6f6f1ca8871267ee45694c5894f6d8ae874a41505ff2c16b351
MD5 b10202acadffdc28730ca6923036c3d1
BLAKE2b-256 662bf0df356c44d32b0028097cdacd9c911a42c5ad1ab611efd3c59f689cbe6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 989ffffaffcc3491ece457b47a3243cc747f954c362540382f5938a508315764
MD5 23b8a41a110e6047aaf2b09c6363164f
BLAKE2b-256 a256ab399d91582526d17873926c01ceba22a5373cc510391851f8c339cdee8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e32532fcc9ee2a9842fe9fdce656812ffcf4163592cf7c4e4ab46298c7c9b5d8
MD5 75596fd988d655e19b0309c4b855ccee
BLAKE2b-256 032457a40fc831a3c7b0977186bb198a97601c8efd5fe17d1c80dabdcb190f86

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d29e66760b496fcd81b345055061f1f42c51ea71c35f9c030f905cd3f457750
MD5 a8c4e900677bd793c0f5093bc2ab1383
BLAKE2b-256 98f2f6f447ad939baf26dd13f7817e89d3ac2124fc10bd108deacb100cddd5ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0c943c2c5c15448801fc650a9f4ceb8b64c680427cca68255ad3892dcd3105ef
MD5 73e520a986633dccd99f8333c9e2ae50
BLAKE2b-256 6e962debfbcc9c318b331d1cd7abafa1c37a80d1cd5f1222c60f644e87a9b0f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ef71af2b5f1eeeea7545027d9340392e8b4d4fb9fbd955813e2cfef1a395128
MD5 508a0f0c663c8857e8356b56010b07d1
BLAKE2b-256 0854f0be6b4c370455d5fec3be30552233a40ed48efdb50ece55f5838ae24f0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0a2-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0a2-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 d82c33a00473f081f8a5a69b954686be24e5d05d621d20f67d3f7fd06a61008a
MD5 c873304a9ef0a25423068b2a69b80c77
BLAKE2b-256 e65e4dcedc2338e1fc6972d09596f4343ce0313d6ed27e95d19018306b6123c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a2-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

Supported by

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