Skip to main content

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.0.tar.gz (43.8 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.0-pp311-pypy311_pp73-win_amd64.whl (181.6 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.12+ x86-64

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

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

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

uuid_utils-1.0.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (563.3 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.0-cp314-cp314-win_arm64.whl (176.5 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

uuid_utils-1.0.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (101.1 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14macOS 10.12+ x86-64

uuid_utils-1.0.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (562.3 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.0-cp313-cp313-win_arm64.whl (174.9 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 10.12+ x86-64

uuid_utils-1.0.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (557.7 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.0-cp312-cp312-win_arm64.whl (174.1 kB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 10.12+ x86-64

uuid_utils-1.0.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (557.8 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.0-cp311-cp311-win_arm64.whl (178.3 kB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

uuid_utils-1.0.0-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.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (335.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 10.12+ x86-64

uuid_utils-1.0.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (564.4 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.0-cp310-cp310-win_amd64.whl (179.8 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 10.12+ x86-64

uuid_utils-1.0.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (564.7 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.0.tar.gz.

File metadata

  • Download URL: uuid_utils-1.0.0.tar.gz
  • Upload date:
  • Size: 43.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for uuid_utils-1.0.0.tar.gz
Algorithm Hash digest
SHA256 8ed2e0156d29c4cfa0f931b4b71b35d2705d84054f63ba07a78f7acc2eb09a5c
MD5 218ec54ed33b835f04337e47dc614580
BLAKE2b-256 5e352e9666504bcb3ab50656b86cd468880cedb86d3c97b88d3805dcc124b95d

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0.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.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c59fc1a184b34e00a60ed77e8d2913a1e7f197af912206000f94b53e79d1f64e
MD5 4f847ed982b57ce048e263d208843d38
BLAKE2b-256 6fd9612687380487212a891ff369ba64afda76c7ec64d39d7f2eea28f2b36737

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7e78528fdba973fa37110221bdc01df0bce78807496c0898dc384555ba3c9c4
MD5 37802e70c8ea85816ebeedce95ff21ff
BLAKE2b-256 ee05ce99a3008ed2678c25c45137053869fccfd83fdd54976fd1defc6265485f

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed2a8b86e77bc33a46c54345bb8648c4c6773cce9e20b6cd9e629a8f482718c5
MD5 98bbe4f9f6788cfa8d995f695aaeb102
BLAKE2b-256 567029df489a5736544dd8583ee8e84e18b9051f1c04f8b83535727abd0473ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f0938813da8301296bd34bd707cec47bb718f90f9f31aebbef607ebef0f3d5da
MD5 11c2c1aeff8e198687f2f4efcfedf585
BLAKE2b-256 22f40ed779f46b5b52e0fd4ee5d8168bb81853cecf03f108e8b1f5cc8e1d57be

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5124d050465317c795befc6340210239b33cea034d55271e7a8d6b53e56817b0
MD5 39850d65fd967df94f16beca3d179a61
BLAKE2b-256 0cb798df02e50afbae0bd076386e8ec412824da87274d1a667d82d9abec9bdfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 90c14789ce9e04a03111cfec963d1b5f988a665573b1d94b6fcfe325ea2c3fbe
MD5 5e6b1e38438667d3545e5dca21ce20b6
BLAKE2b-256 310186ca857663951ca4287390047e27dde24e248de3b16007b03dd088b719be

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 288690101bb71d79f2d5ca236ffe96306d5c131175e3af21370c0243520c9cf5
MD5 716e3099ec01b4bf71eda920d9630434
BLAKE2b-256 7e9b356e7e17851693268303c7309620d24b569fe7dce1d14b1663c6f17e2bd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-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.0-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 460c624577d490343df0f35c14bb4871f41738d0584c3afba91f2a8eded8dbe1
MD5 e36c439970d7d3306ee88ce94c1b4a93
BLAKE2b-256 a2fc83787071a199470a2269558b6874485a2fd4f2ed845232ef99bd1d08a0ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: uuid_utils-1.0.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 176.1 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 b4920f5abfe2c84c5b2fc3e6b6063f8c7032289adb92d578750e0c1937ee77da
MD5 7cb16d3afd8a5c6b1decfc74a53a707c
BLAKE2b-256 ad47cdc26ca2af2fec7ecd7154d7a611237a56d39bc58ba8562f6cd0800f3324

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: uuid_utils-1.0.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 178.5 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8a8cc8dbdda2615d4aef270bb0f1a931071b4211a21e18dcbe734143beab1780
MD5 dfc0d1b37669b282a59a2e09eab9889d
BLAKE2b-256 217afb2336e98432cc13bf26765740bef8d15951e62e3e83e103ebd081748923

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314t-win32.whl.

File metadata

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

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 7217beaa4650030bc225d21583fe6105dbe33271b8cb994bca367cdc32dac47e
MD5 c587ea712120c98dbfdf762384d4fe74
BLAKE2b-256 1e770e811a8817a1bb4e974b42ffbeac3eb8a01b6c75795c5632d8f078b69781

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f18787481b251b700bce778a8906b7683478fd4895878ec4b38e150d481fbaab
MD5 4c3fd541e22362bb50165303d75ebc50
BLAKE2b-256 c554deb1dfd1634df28de05d73ee874fc8cc2745ba8b71776bddea039f6954bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 87f68b983e73ef8aacb4fbcfabda37d2d6e0431c54a209c1853bc3487e3237cb
MD5 8dfe63b87d1f68fad85e40fe6913c79b
BLAKE2b-256 69db57f42643e324d1dd4b8764e9f51f63cccc97e0ea9dfdfae4763e616e43fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d826362cacccd6ca52140877c6b84fb0ea6544b9cdf8bd860eb877f76f16ba4d
MD5 a4966a290bdad1ab68d11c12b02e1a99
BLAKE2b-256 ba4d333c251382484bcbc41e83046ecc95d7e6ece767cabeaf79af69d779f23f

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d9c6ffb566f29d741c6e59a367d4ddf073fbd3decd50c43ef99aa3a3285b691
MD5 5766e86594c3bc26d3412d01492eda7f
BLAKE2b-256 885096143792454351baae7d5eafe877c67c9a3c1d9f5453ffd8a817f66e0de7

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad58a78d06c232f1c817f31d4b974ec59608faeffa4b07b859fc023f8add1d17
MD5 15f87322d47ada867cdc85ffd07bb9eb
BLAKE2b-256 44ca4213f7bd913695b18cf6a280204368cc4869aa89eb6005b93d2a0013fe09

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 73facd346472b56ffec54d6dc05a0506d7ece0e7d9c6bb53e6bf711cab7e7f07
MD5 54ee3d41284e140e21d3b46dcfdcffa5
BLAKE2b-256 c79b6682303842806da6874022e706325601e86780dc4cc421d2a3ab1c4bb98b

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2b6c5661b63ca6b83c5bb4d916b00620883334ee639f61065ef9a6036e4f406f
MD5 f486e8f66623a91f87e294736d8acdae
BLAKE2b-256 05021f9632c4c8ba04c00f41323e68221757abb3af32d8da706d2191001d212a

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f2852ae83fd158fbb7b842bdd5119010a3d101b3fc1d80bd6f2353469e3b054
MD5 713bb15bf69cfbbfabd5615833307708
BLAKE2b-256 44b12cb5fafc86d6dab4269e9bbebb125e204bc3f5d1003ef48741d87f97044f

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6a1417bb6abce4039a1b4a8a4d83e6ddaa694809297f2d167bffea077cd7e8aa
MD5 b2386c1ee7326db9e726a6870971692f
BLAKE2b-256 26a8691f91c8d28be9bc567983bdef53c49021ddfd3582fbdc4f9a3682895ac2

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c2c3ca406fee6bae70aaed1341ce22d3dc50b34ab2d965174dbd3a69c9e5b770
MD5 1d3de9c1a1a1eb069af93490e2de6e8d
BLAKE2b-256 b236d5d54eb9b8673a0e410bca3e27cacfa153d6547635c13ac08e4625ed4a44

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-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.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 7acf1911189491b976c0a55889c8420cf4040c242a3c3d46ce2bf7e654a2398e
MD5 5bab9d4ac276c5302d9168530d46427a
BLAKE2b-256 a6bb805a581bac06982b94ce786092cdd48e7aaa3b4d02bacee7980129933979

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: uuid_utils-1.0.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 176.5 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ac789644b2b50a5fb4c670df304f03259d9c2bec7c3b46facbfed760cd0249a3
MD5 318bc7dffcc3f3c6759d9d209ec9b1fd
BLAKE2b-256 496202cd47c857bce282434b02732c5ee601e76a2c15db0590fbb130c2a8c2c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: uuid_utils-1.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 178.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7126a2b7a43ae6abdb5143aa228ebfefb8e436cc4bcbf91fbf080cf06c26f5cd
MD5 84886940eea8aad007c57f50b83dd672
BLAKE2b-256 cd186c1700d7d637a4fea48f83b83ecd395bd66e685e2d6afdaf113be115f552

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 fda1280fdbc110b7e9166796e30974f3400bac8e1fe135c9da00e96acc7c51f5
MD5 8f7be04388892ec11014a036a79ca2cf
BLAKE2b-256 1ca3d914af7a3504a086eeb525625ead867b47731ce28e1cffbd995a6f923a51

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 72db71871915b8048e63444c91587a28c92eb9ac15dba94568bef20ec350e238
MD5 bbf18023e94b0ff15b1520979aab722c
BLAKE2b-256 c701f9139035e3fdbd9e395c23c60b0b5d97462930130f5bac68e4a4c1cf378f

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-cp314-cp314-pyemscripten_2026_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.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d892757ce2dbe4224a4fe5e589b9d12cefc77765c8d388b8f041433edec63d4
MD5 d698b9f081390e02252a04baf6937231
BLAKE2b-256 833339a1d3a4d7e223aed19d61aeb3110d27eef2a640dcee0ab538f6b1821045

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e2e87a57cf1346786cd8067c1ebee1a0991996686a8fd9fa62db0d377a219ce
MD5 6b29b725e3a1ecc61ec0d638606ee76f
BLAKE2b-256 dfc3a441d1ade251b19b31728fe44aaba22d6d135dd7b90e4b6318d701ee62ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9ddba367907dbb0892583dfd6a5989dda9257428b4022c86def98cc164db6096
MD5 6efc6ce9464f0e4cbf6147eb645bf4d8
BLAKE2b-256 08fa1a31c44665623562def4b1991c7e2951ba3fa7678390d117aafdac45eb90

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8af4a4166e84be69ba78851bcfb529302845f0551d2be87499e6f7c8859f9bc8
MD5 02b8d1ab5f380fb3acb4061ccd1ed03d
BLAKE2b-256 d92df0ab13421101c1917a3a969d16aa5b998643446a8c0a5376b2909bc81d50

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0538babadda38ce86196315a710b10c7928697e33cc4ad01573aecadad9043c7
MD5 e10be655650321524f5c7528dcd2e7e5
BLAKE2b-256 88da6451810f642abeeb158b7db39104d55a6df729fa9068ab946dca72c9a7dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b87289c3e9e1ce8a6849d8754cbbbe06b96cade7b72261675eb0d5444955d935
MD5 3815e57a95154819c281ac235cb942af
BLAKE2b-256 3bea342fbc8bcbf07cc3c137a01d6a4ddbe622b476120bb7c2a4be5c1699ecdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 570de62607ca78bfb5f5ae09871aaeb7d5d3f41b625663df124fbd1f56a87a98
MD5 e7e8d069c0c323269f1b45855de4cf6a
BLAKE2b-256 394b141d0547f40f1a56888e186722431971b2978ab82f001445d2aca8c0e293

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 874b4fbb841197d94f256db3058ede8687e5293f3838b988346aad1f9af46b12
MD5 7f0b7ba0601a5adc998cfa35f9c3d03b
BLAKE2b-256 34d20a5b7baba5590460c610f436c9108e5897010d745de423246192a5c5f2c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0482b3f41f9c9f5c2a59f865de8a9498e0a8d82649955a2b5ec5ceb2793ddb1f
MD5 f17ed9ff0e6f2d8e49b146f68b358967
BLAKE2b-256 c95696d2a6b9b6dd3d8ec52d3f00c21aa3ce94c7775d4cd1796655393b996d85

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 06f5da96427cfb28dc374a212ffe2d9becf5d099be9ee6b06600f77c31acb016
MD5 21df750daf93caab0d927dea376d7179
BLAKE2b-256 71ee01330e815a75a5fe65f156ef194f2aabc214d3d8129e62c814579bde3040

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-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.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 1501e0aef7e2ea759b6aa3967395896d803e8073d360ef95f62e18c52c5730f4
MD5 53a2abbab3cf2f5873adc35bdcf27341
BLAKE2b-256 9efd6dfd6641e312d8d714c64ce19540b95d79caaa79bec31b41f35689bcd921

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: uuid_utils-1.0.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 174.9 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for uuid_utils-1.0.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b8f6a3a66703943f5cfcd317b77565fe9b7c5d8eeee50282de673bdeff1697f6
MD5 7ab37821569c09014cc788f658ebbfa8
BLAKE2b-256 86a655c869c409c9b372d5e8a9ed709c4937f3030df34833644a599db0e70d91

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: uuid_utils-1.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 176.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for uuid_utils-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3474e58925c9779012318785a82a0e883b5f99cbf1cde75f60c28b9252a3840a
MD5 817feedd92493131a18c414998cb5554
BLAKE2b-256 e967c9815dce0216be38b0eb89fd1bf198657649422679b28d93697ba477bbb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for uuid_utils-1.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a33de2ae30c8f5a0b82294ea979f19951c01f39a7800c9806b50d7a1b301253c
MD5 aa08f3d284b877ef4fbf5b6a07bc0334
BLAKE2b-256 d7c7c6ba25b7153c4257c7629e7eab446830cc9b72c73772e687253b00d23e95

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 6d94d66a073d76dbb3662baa1a659f4b6f4c87cddb9e5ced611e93a4fd34f55e
MD5 acc4562483720d11767492bd54e481f6
BLAKE2b-256 1acc6aa21ec6d99ff3eaa53673e23d06917ddfc1812a0361805ecf081ed9710d

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1890c89b50a70e3651db7a88aceba2f73c4a00d4bdca6c3c0c777480f69fefc
MD5 364498018a3230abbb84d4b6d0650279
BLAKE2b-256 bab7399e029f06cd587a5719ff3dd59af7a34124ccb6a5f6078304391b6c015c

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 71bd49db6f19d9dff7dfd560c81b72083455ab22ce2114837fca5b3adb2b790b
MD5 51fbf8ed121e238a80c0b0db76eb43e8
BLAKE2b-256 8ef42d698113ecfd9b071191219fcfb98852d924dcf5387a4b00458863547a58

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 36eb692a959e54815edb0df9b1f566fcf889292f92e810a1019d2fee783ba830
MD5 52ab1d222d9fc8822c17ef17a913d414
BLAKE2b-256 86cd72c265eb24499b9b57bf368a349a57d6ff0b8a979b879ed7828a41714df4

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f4c4bf45ffb105c5a8d701bcbe4c1a0a28a55d29090fc6fcb0d1504cb9bd2b85
MD5 ffa578941897bdefff3b900055681974
BLAKE2b-256 1d197f07c428461fb3923081065a6d38cb6782c5e08e87ee28cb84a61eaf2797

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 184b79b46e85c322b537b48d81b750952f6874db8e0662441b176de13b10b0bd
MD5 c6f2e81c3458c004388dae52a47d322f
BLAKE2b-256 cd7149ad8656c0c0565e17caacf3cf0d270605ca98775a957909d60daf7754d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fe5f9fe3dfd076adc4460d3ede28c9225d47f998f77af77e67cb9d1c1ca935a0
MD5 ed88c09b66b9919e3ccfe92d71069668
BLAKE2b-256 698bf28c80de9657aeb2fcd42ac0e5409f9dc22b3dd6438708e083bcf41c3a1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab2b2b41690c6207ffafb01d0bc32ef7b3da56342b2b861ff5e03a772e39a928
MD5 4d11e53bf3818ed82e0ae907c689c012
BLAKE2b-256 147707b9c92a711c69c0fb6bc25b9b7f9de2fce00dde7d56e433b5475cceed1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a1c12ee0c50756a35047fcaa7faba50b464462e2eaae65d60b608288a246191e
MD5 1ef0f63eb42a0b687f4926c556d5a91d
BLAKE2b-256 ebf50df3e19cb56969514d14b466069bb6c14f10f8d711f1b67487f280f34c6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4f0bcbaea1199ddc92cb94a0d7df151e4fbed558e6c00d900a214913f67a901f
MD5 3856aaf7857958db4c5a91c93912a719
BLAKE2b-256 44ada88215e7fcb395929d09045c9fea2505ef0af7130aad2674a6d03543b142

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9ab40d7cfbbae6b2f291e597a664d82b8aee38debec9dac83c951adcf2c6c331
MD5 1d00c1dd961bdb1c7d7de6d8d36498ba
BLAKE2b-256 dab5aae34a85fd138c084440a0cc510cb245c11e5696f79e54f1a36225aae3b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-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.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f82137ecd4ffe69134ed632ca865587dd44ddc5caf512cfefe181c0f6eba4cb7
MD5 e06d5b4b55023b94d71904ee3dc7be7c
BLAKE2b-256 c659950f27905400b098797d8996d914fbc7faf73e4eb7be2ed5b5bbc16005eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: uuid_utils-1.0.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 174.1 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for uuid_utils-1.0.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6988755b05dd27af81da59ae1bf15b14226e824d87dd98b60559d116df6826d1
MD5 9def143cf186882a4ffd2f8096b856f7
BLAKE2b-256 2f9a729645992d308d2806043cf5e8add10413b072574e0a25b3fc014053cc5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: uuid_utils-1.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 175.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for uuid_utils-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ac9e2ed981262301c85e27520b2564d03102bb8be95130e3085f0060add619be
MD5 45297ce1a9a0f6863168b9fa32ec83e9
BLAKE2b-256 8323f1eacc16c91cd78ff86e62990b650adebf65782c2b992564c41311201662

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for uuid_utils-1.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e8b27a32095b43eb9e4abcc297afc4d4f4b130e9fcf9c9d09f93eec1382d1f8c
MD5 ea9169ad93d66125f7fc7c8514dbc939
BLAKE2b-256 be5b4124fc1794ce8ed5fe4ced71ececdc0cacfb1d08c6d192c735402ae49d58

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 083b21bba1adef508f84f8ef8da3fe2f085bd95988b1c2333618f06a804efd16
MD5 5e650a0179de2c1109778a64037e98db
BLAKE2b-256 da790f53c4954944311d51fd6ae9db25ad705e6c433d0db04c753b0743aa2c2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2ee3fbcc187d2b46e1bbac64203fca75b24451f1d39a436b8196d1445bf79014
MD5 5af378900c3479ef6a711448728b16cf
BLAKE2b-256 887987708b9b618a29883d6b7be62569972aa5f7bc4af63338bc496532b5640b

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2f9b1f16576237171e2782390f95d888dd7adce851fc85016e4b7b25d1c89fc0
MD5 309387d3be2d2c6ad7fc8d671582914a
BLAKE2b-256 470e7d155c4ea6af24eab30ff926d737d028f4cb356f6446f23efc9cbefeb44d

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d8b55e9759506f5b5849747f6fef927d3d81970d8c20285a99e797119ae3ca5
MD5 0ab35eb9ca5b9dd4220f474117051c0c
BLAKE2b-256 23e1ebefd7241f763ca0a37ec7caad67e2d84e311335f74c5f3cf6ec52ce2e2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95b5ec6b070e5e3f3e02f7d195a22b90c1037afbc41006f122fb6d0499938276
MD5 1bba195569f84a1db985e3fdd5e79b88
BLAKE2b-256 3fd6d3dc9b10ac5d6453d5225459b5bc2a2a7a9f53b7139d13727aa64661c2da

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 64afb1db6f732b9526cda719275922ab9e3a4ff7dd255b89f40709e65c70dbb2
MD5 79e172d271496f7ff4008a02353a9fe3
BLAKE2b-256 f8205bf65a065f369ce0fd8a031688c2767265ae3ee0e6293002633e2fd1dbdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 129d2e1245c0f54282cdfcfb9498342808fdf9259782aa01e09d15e4c51b8a83
MD5 b1bb0662fe3d63d9840e95dc39f18b7d
BLAKE2b-256 dd1e627a187b22b97b29aa7f3af02edd898fcb33c472c8c4898c6f5103fb868e

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61ad43743b1b6dd791798c37a5163d236d57705fa32944cee35c5d4f06c23009
MD5 c81e2f13568d23819a769aaccad4d916
BLAKE2b-256 6e2f496b126dd703e12b33637246793abd97e05fa163e764ada0be4abca37056

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4f401251b95ddb077daed0871d4f43b4a7af88c80da595329206e734b4629e7d
MD5 55a751bbe412398e93b21dacb7bd4c81
BLAKE2b-256 110caba31a49583a59dd9022136a0032ffc6a8bda71d7f894da289aaa63f48d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 75f132bd55a715d091e8b2e91a118862a203777d34c4b2794caa218de0cd947b
MD5 aa1bb064a4c619dc7ce681de6e845185
BLAKE2b-256 7831fc8cab83464720c384082398f96c25b2b77de327485d436cfc73aba21358

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-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.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 20d6b4ea345912ecf2ba0dfc0bee0714c40b092830f814f1b768c33a55a38da0
MD5 e9341c324780ddadc7e2e1bed7cb019e
BLAKE2b-256 c6b657ecfa3d19021dd361d54c3213fa504122e24fcf379a6804c9077b2ec8cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: uuid_utils-1.0.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 178.3 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for uuid_utils-1.0.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 cf29f16b2675a11429576c72922bb9008a5f46b16ad5dc42415c91142fb4554a
MD5 00f835ee289f9ea3f46c779ba7b2907a
BLAKE2b-256 86afcc6fba9782410132d8352ef0da0f5d09572589d4a74b5a4c8108b3da5b88

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: uuid_utils-1.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 179.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for uuid_utils-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 91c2fec6dc8633a1e15f4774e6ba36b3584c15c9b66298dcc4628c2c1009fd94
MD5 49774f0068828c20a4ddd7072bf8184b
BLAKE2b-256 82977b6038fae08834c66a083549e41905fc5376589c9d9bfeb28c3a6f678d5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for uuid_utils-1.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 20d82f23c2879140b5b6338c4e2f8f9e56c8af7dcf5aab24a90c8c3629bc3d67
MD5 3366b207078e80aeaef315117c7fd513
BLAKE2b-256 29697e45f40c3441fac3fa97c592580db51ddeb40cd4e01772c8fb6f6f0da152

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1aadb47e436f6624f3d5eccffdb0806dc820df724dbf4d810d0cb3fa9d3e888b
MD5 604499097ab2ed723e731841e5fd01af
BLAKE2b-256 9ec9aa4836257ca94bb31e66fda030e645a35e64ad9737e43b6c30d6d0b2fef9

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bbe412cb4d2d52e0fa7d6bcaffe7985f06f1e97021e180b77a721dcbdb44ca00
MD5 8f8f00a0570c30ad7da3f11a0920bf37
BLAKE2b-256 e2962311bc6fc1f29cd2d25285584a3d10a90e2118b318d8a439f678c0a17da0

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fcbca750bc45a2447c077d19b77eaa2b9dc89f80c3552cdd0de8d0d0a6194e06
MD5 adf212fc9655bc33b8d30751b40ca20a
BLAKE2b-256 e43cf3163e1191596a79a575b102bf0a268a5a085f2478e06abdf7d1e89b4aa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85152c854e28f9ae66c204ccd003ebad64529c0e3d69f4abd4abb4da81fa6f4a
MD5 e3fa5b8b5fc9f399573f9575eac40fbe
BLAKE2b-256 4898522a446c61887366da0602b17316598d85c58fb328ff9ea803f2cdff7ca8

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4857774b37bace3f02059e434642bd30915d833427bed44e9ee061e567e69ec
MD5 d0744308d216c9214ec5059d2f94449c
BLAKE2b-256 63eae88474c99b4b3b23f8dbfdb9001e649fe7ca933453cc5771b52583e0705d

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0bbc1ea51dfe0cd70c1d1aeb493c70f7f55d3d82eb04fa118c0245715f22a312
MD5 cd291f756d6dd2e00b3aa300d6fa4d85
BLAKE2b-256 9161ea0d8b5d04fa5f9c8f54e637aa4576522f1fbda62e1020352c9906fb84f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa81372e1e52bcfb6c68bd77f194a87fec3aa254a5c87034aac71dcd232dd5e4
MD5 35207d5313585645e0e4db93302436fd
BLAKE2b-256 b067a1d23ee04a10631b2ffcd014aeb57d29bcac35347218f6e07f5f4f7890ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d66cb850461fd4786da6452a8ee1a7efe882de1ebe395ddfb18f27b25ad96646
MD5 21c187144595dc27ea9e0e202db4d86b
BLAKE2b-256 12f101c95c433a52a0af7b03d1e54f3a5546f22c2e0bee769e3fda4aaa7c11e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d379ee954edc03653b89b4e3bfa0e1075a5d93220fc6f75e4a449c61467943eb
MD5 078d6c8a0d5e3c5abc646b6d77f6c63d
BLAKE2b-256 fb9d63469d3e5c22ea141fdbab03893960c6c9efa35191198729c06047bdaf73

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2ca478b10c68b57e47f22c5baf4ffe7c4ac922db776573840efbd4b34dfe4cfe
MD5 fae6db9a1e058753051dee0969a67abf
BLAKE2b-256 03006cb04489068dac102ba11e089fdaba32caaae79edc94ba02c34b7b460278

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-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.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 55b8912f743b0026aa72a5ff392831610a240fb48eeeccf945db60f74645cd2f
MD5 6e20bf21fcf3b9366d68092cef926561
BLAKE2b-256 060b9dd7618399c34481b4bad422d8c15c69a659bba8b1f1c85aa3198cb0cfbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: uuid_utils-1.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 179.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for uuid_utils-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 878cffe1e21abfa0fd1e363c00ce6ee901ddbf1761e07f0a67a8679068f77a21
MD5 2241cd633508d8f95edb9b835ba3aaf4
BLAKE2b-256 86f552ff2025f26e9bbed867a92d6674c113465b4db037de3f45ab74bf061a19

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for uuid_utils-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3cbb671f647b80483ba15d1e9f91bae25d34148498bc92d05e5eba738a73d71c
MD5 c7b95bad781a1290bbf71776bf2ec503
BLAKE2b-256 201ae8901350ee4ca6d6da410d00025cbb640afc7c5d09fcd419387ebb5f4a4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2b63bd980bfea99164337b5666d5c5613da27727a078811efffa605be217b8c
MD5 1f1746f37af2561901d9e1ee4e0e3b57
BLAKE2b-256 8db256be9ed079936056df9a694e2ca54fe293c62ab03fcc6ee2b66ac6ba364e

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 98c8f6f8fda6da2e46d29f84f9c6529f19465f3cc4abbd767e04962102a4c7f6
MD5 332b647024ed09b4224f135f31b27d77
BLAKE2b-256 a55bfc5cca60af65cbf1e63f8cc292dbc11c04b9d605084675cfc5d2fb14297f

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5876a4ad79124158e60562a6406b5e2d9d4c93c01b6d85c699fbd219ec1e49b0
MD5 d1708d9a245f0a37ae2d9c807380c9ba
BLAKE2b-256 36d99a8bab20e7b3d2f54f59b225047888a0689e72c822d730d4582d49b580f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e116657b19aa12724c92de7ec05391fe53a3ebf4a6101469894477afd523f392
MD5 bd306d331e166db8a8c8b497673d8271
BLAKE2b-256 8a5dd9575181946f8385771b744e6d431c22745b5c2ac5855a2a246d3dd89d43

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2eee7e1abd2578988458892d6630bb76118a1495ddc35d88000526ae69a2f7e
MD5 ab93b781a921aca5e484d27fae19bcb9
BLAKE2b-256 a33b1f9742d81a6ea2c41e8801aeb44eec0adc1ab4477997433a2277b44f304d

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 288e6a37506e4410183d0038590ce6a37fe7b045e2138a4b778fca458137b7f4
MD5 380377a8112e991596551dfb4d0d55b3
BLAKE2b-256 8ce95f1fe095807b7e0654503a8fbe0199ccacc960a721798b7833f62db96cd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b74b0247502b3a2a009f01bc97d38e99f589f957a378e68dd8e516a69b1776f3
MD5 7796220e2dbdae4c82f7e7985b4d34b0
BLAKE2b-256 4bd363a7ba03572488852b0539d31ff9b9d985c84780ccc99ec8852e1a70e9e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28696dfacced277762eb76892a6b794b583058efae58e1f036f93b2c7f1d2e45
MD5 cd50766c8366eb95b14c9e64a745efd2
BLAKE2b-256 c758697c6439193b1b0c1a0b4af84282eb9c210477f15c1df48a4cf27ab7bc6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cda59ab521c0fb1681ca758d1c97ffe24d6982105cd8c888cf31c3871e3caa34
MD5 3aa2819e50a6d4596d90f409d24d78b1
BLAKE2b-256 2c1ce835cfcd2e13e480c51c77dc1ded91a4f4c63f8e78ebd4beb6d6abfd2dd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9fa9ea6eb4f4b47dc5410ec33a84eb817316d9111be7add1fea2c1fcb141ab9a
MD5 592f76a4b60f631f0e177875c6aff224
BLAKE2b-256 137a190d26644bf77cd14a82dc5a7a5110d0967bef8bd3a60e4d3ddd7353586e

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.0-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.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 3318d37b0009d4b5b64aa80c36f9314bdfcfa3283c93819fa60360471f921293
MD5 a06aa4d589a59958dcc4d0a896582864
BLAKE2b-256 4e38e3c3a533db555fa6615f4e761984a70930af9277e02899e032382888ee0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0-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.

Release history Release notifications | RSS feed

This release

1.0.0 This release

94 files

0.17.1

94 files

0.17.0

94 files

0.16.2

93 files

0.16.1

93 files

0.16.0

106 files

0.15.0

119 files

0.14.1

22 files

0.14.0

22 files

0.13.0

22 files

0.12.0

22 files

0.11.1

27 files

0.11.0

28 files

0.10.0

27 files

0.9.0

76 files

0.8.0

83 files

0.7.0

83 files

0.6.1

95 files

0.6.0

79 files

0.5.0

80 files

0.4.0

55 files

0.3.0

43 files

0.2.0

53 files

0.1.0

31 files

0.0.0

2 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