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-0.17.0.tar.gz (43.2 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-0.17.0-pp311-pypy311_pp73-win_amd64.whl (178.7 kB view details)

Uploaded PyPyWindows x86-64

uuid_utils-0.17.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

uuid_utils-0.17.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (445.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

uuid_utils-0.17.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (332.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

uuid_utils-0.17.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (324.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

uuid_utils-0.17.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (352.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

uuid_utils-0.17.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (288.8 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

uuid_utils-0.17.0-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (567.8 kB view details)

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

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

Uploaded CPython 3.14tWindows ARM64

uuid_utils-0.17.0-cp314-cp314t-win_amd64.whl (176.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

uuid_utils-0.17.0-cp314-cp314t-win32.whl (169.5 kB view details)

Uploaded CPython 3.14tWindows x86

uuid_utils-0.17.0-cp314-cp314t-musllinux_1_2_x86_64.whl (529.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

uuid_utils-0.17.0-cp314-cp314t-musllinux_1_2_i686.whl (565.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

uuid_utils-0.17.0-cp314-cp314t-musllinux_1_2_armv7l.whl (605.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

uuid_utils-0.17.0-cp314-cp314t-musllinux_1_2_aarch64.whl (499.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

uuid_utils-0.17.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

uuid_utils-0.17.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (442.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

uuid_utils-0.17.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (329.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

uuid_utils-0.17.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (321.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

uuid_utils-0.17.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (348.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

uuid_utils-0.17.0-cp314-cp314t-macosx_10_12_x86_64.whl (289.5 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

uuid_utils-0.17.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (562.6 kB view details)

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

uuid_utils-0.17.0-cp314-cp314-win_arm64.whl (174.7 kB view details)

Uploaded CPython 3.14Windows ARM64

uuid_utils-0.17.0-cp314-cp314-win_amd64.whl (176.0 kB view details)

Uploaded CPython 3.14Windows x86-64

uuid_utils-0.17.0-cp314-cp314-win32.whl (169.5 kB view details)

Uploaded CPython 3.14Windows x86

uuid_utils-0.17.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (99.2 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

uuid_utils-0.17.0-cp314-cp314-musllinux_1_2_x86_64.whl (528.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

uuid_utils-0.17.0-cp314-cp314-musllinux_1_2_i686.whl (564.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

uuid_utils-0.17.0-cp314-cp314-musllinux_1_2_armv7l.whl (604.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

uuid_utils-0.17.0-cp314-cp314-musllinux_1_2_aarch64.whl (499.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

uuid_utils-0.17.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

uuid_utils-0.17.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (442.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

uuid_utils-0.17.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (329.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

uuid_utils-0.17.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (321.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

uuid_utils-0.17.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (347.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

uuid_utils-0.17.0-cp314-cp314-macosx_10_12_x86_64.whl (287.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

uuid_utils-0.17.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (562.2 kB view details)

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

uuid_utils-0.17.0-cp313-cp313-win_arm64.whl (173.2 kB view details)

Uploaded CPython 3.13Windows ARM64

uuid_utils-0.17.0-cp313-cp313-win_amd64.whl (173.6 kB view details)

Uploaded CPython 3.13Windows x86-64

uuid_utils-0.17.0-cp313-cp313-win32.whl (167.3 kB view details)

Uploaded CPython 3.13Windows x86

uuid_utils-0.17.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl (98.0 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

uuid_utils-0.17.0-cp313-cp313-musllinux_1_2_x86_64.whl (525.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

uuid_utils-0.17.0-cp313-cp313-musllinux_1_2_i686.whl (562.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

uuid_utils-0.17.0-cp313-cp313-musllinux_1_2_armv7l.whl (603.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

uuid_utils-0.17.0-cp313-cp313-musllinux_1_2_aarch64.whl (496.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

uuid_utils-0.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (320.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

uuid_utils-0.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (438.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

uuid_utils-0.17.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (327.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

uuid_utils-0.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (320.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

uuid_utils-0.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (345.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

uuid_utils-0.17.0-cp313-cp313-macosx_10_12_x86_64.whl (286.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

uuid_utils-0.17.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (557.3 kB view details)

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

uuid_utils-0.17.0-cp312-cp312-win_arm64.whl (172.5 kB view details)

Uploaded CPython 3.12Windows ARM64

uuid_utils-0.17.0-cp312-cp312-win_amd64.whl (172.9 kB view details)

Uploaded CPython 3.12Windows x86-64

uuid_utils-0.17.0-cp312-cp312-win32.whl (166.8 kB view details)

Uploaded CPython 3.12Windows x86

uuid_utils-0.17.0-cp312-cp312-musllinux_1_2_x86_64.whl (525.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

uuid_utils-0.17.0-cp312-cp312-musllinux_1_2_i686.whl (561.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

uuid_utils-0.17.0-cp312-cp312-musllinux_1_2_armv7l.whl (603.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

uuid_utils-0.17.0-cp312-cp312-musllinux_1_2_aarch64.whl (496.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

uuid_utils-0.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (320.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

uuid_utils-0.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (439.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

uuid_utils-0.17.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (327.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

uuid_utils-0.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (319.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

uuid_utils-0.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (344.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

uuid_utils-0.17.0-cp312-cp312-macosx_10_12_x86_64.whl (285.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

uuid_utils-0.17.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (556.4 kB view details)

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

uuid_utils-0.17.0-cp311-cp311-win_arm64.whl (177.0 kB view details)

Uploaded CPython 3.11Windows ARM64

uuid_utils-0.17.0-cp311-cp311-win_amd64.whl (177.2 kB view details)

Uploaded CPython 3.11Windows x86-64

uuid_utils-0.17.0-cp311-cp311-win32.whl (169.9 kB view details)

Uploaded CPython 3.11Windows x86

uuid_utils-0.17.0-cp311-cp311-musllinux_1_2_x86_64.whl (529.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

uuid_utils-0.17.0-cp311-cp311-musllinux_1_2_i686.whl (567.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

uuid_utils-0.17.0-cp311-cp311-musllinux_1_2_armv7l.whl (606.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

uuid_utils-0.17.0-cp311-cp311-musllinux_1_2_aarch64.whl (500.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

uuid_utils-0.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

uuid_utils-0.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (443.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

uuid_utils-0.17.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (330.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

uuid_utils-0.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (323.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

uuid_utils-0.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (350.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

uuid_utils-0.17.0-cp311-cp311-macosx_10_12_x86_64.whl (286.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

uuid_utils-0.17.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (563.9 kB view details)

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

uuid_utils-0.17.0-cp310-cp310-win_amd64.whl (177.2 kB view details)

Uploaded CPython 3.10Windows x86-64

uuid_utils-0.17.0-cp310-cp310-win32.whl (170.6 kB view details)

Uploaded CPython 3.10Windows x86

uuid_utils-0.17.0-cp310-cp310-musllinux_1_2_x86_64.whl (529.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

uuid_utils-0.17.0-cp310-cp310-musllinux_1_2_i686.whl (567.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

uuid_utils-0.17.0-cp310-cp310-musllinux_1_2_armv7l.whl (606.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

uuid_utils-0.17.0-cp310-cp310-musllinux_1_2_aarch64.whl (500.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

uuid_utils-0.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

uuid_utils-0.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (444.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

uuid_utils-0.17.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (330.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

uuid_utils-0.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (323.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

uuid_utils-0.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (350.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

uuid_utils-0.17.0-cp310-cp310-macosx_10_12_x86_64.whl (286.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

uuid_utils-0.17.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (564.0 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-0.17.0.tar.gz.

File metadata

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

File hashes

Hashes for uuid_utils-0.17.0.tar.gz
Algorithm Hash digest
SHA256 abb5667a36119019b3fa320c4d10c21ebccfcc87c8a739e6a0056cee7f48dde2
MD5 ed69e2a64afd71f3daaa770aa1603ece
BLAKE2b-256 e79163938e0e7e7876658e5e40178e7c0735b53527886fe11797a11699c55edd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2db386941cfdecdd0b5a8ceeed5cf7479c83d1730dcf64a48d43cfa018cc3310
MD5 dd838d66314efe6f98e96585c8944591
BLAKE2b-256 9d8e86ce2c03a1d9674530f6649e49067f7c69929600127077731de590d12132

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89a0980d49683c00539c59cd9f46b1908c538e6b5b0a48ad12187bb856d0f391
MD5 c3a94835d69fe04ba9d2b79586290fc2
BLAKE2b-256 e2f15cc042a37932aa9a66eb8ab4a9a5b31d80261ae4565ff0193d8cc1fb9392

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dd741c73440b328f937dc53b344ecadc46bc4f0cec0333a8f42b55f3468ce7ec
MD5 6c7c8bb9e36c46e5359d1a6fbb53c933
BLAKE2b-256 6f90b4cd455619ff276dc3c3262a7420ead63aa1e531362f00df4cdb07d90e0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 32abaafc8e91928b3d9f4d82e42d2094041e38ad6bb964066faadff28e4162f1
MD5 1e696e1369246f4294b5eb6f30735f23
BLAKE2b-256 dd3cd32c799bdd51f3b08b6ee95f9de921b59c69075a96767f937fab55014813

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2dd4a21baaac9a88486f0dd166c5793feb101a0bb9f006f2c401657fff5a1343
MD5 1297be34b222f6fad4566b7c23e641cc
BLAKE2b-256 bcc2f1b183e412387529893015a94a8447633c665f6d0392de20e245680e636a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 de1064663aa7c839286488a319d2b3b478ca5ab5b2091ade888ed0eeca11a98a
MD5 8352b219768272f45b2275d37aae0809
BLAKE2b-256 5e729e800c41d766484484e97845a7a7f677ba94462df86c97183e0290229d16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9a91c4814c7150a4d798da691b7804eacd78c4b84fb392a60fa0de21341861eb
MD5 409e9e590449bafbb657da84d9afa925
BLAKE2b-256 4ce2d3af9c3d1dc6efb9ee1cffab30f3f2aacacc3892b21b495d78d34c6696bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.17.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-0.17.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-0.17.0-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 7b9044ce4acbf392d4b3a503fe377641f4deff82e6c341c36ef27af0dea76cdf
MD5 51fd0030aa1af9700b520969e20783ed
BLAKE2b-256 ee144ae708968b15cac7b68d5b854bfce724b21faa1c7a5147fb96d87f468a45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 1776a80d16369999b21627028cc5dbce819be83e1e079fdd7a51b587d2916db9
MD5 2a15728acb6cfbabfad621d2cdf433fa
BLAKE2b-256 a711bd1c70e1ad3301163cebe66c8d26de26e6814d52f642a849448bd2833626

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e288a06cbbbcd01b44386e767985c9e21d2ad9bf59829aa7058d9a2a494804ab
MD5 eaed767193a30f3cf54e10251e43c708
BLAKE2b-256 35c8e78c06db7e9ce317ce7b8759ff2058333eac75caa8c22b75f0059589c9be

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.17.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 169.5 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-0.17.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 239d8a281fe10bae33205b5d43185834d556b18434e0a113b5dc1dfb2fd97e91
MD5 b0d36a226bccc9339170cb2b48ceaa3e
BLAKE2b-256 b34f257304dded339dc35fc9bf35722ac68fd4fdb930f255b8f7bccdf74ebba9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7b04935a79c03c41ad08d0a5f390aac968bfb561f1268897bc5b0f077971efd
MD5 795c1fc2d753ce7e7086f97d02ecc772
BLAKE2b-256 ce9e122adfeeeae8a84ccfd43bce627b104d12a2180a93bffd2c0e1b54dad7a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4441600447d340ae103a353f01dbcd22ff680e5ee1a22988efe8d7b791d8fdb3
MD5 51ebdc708c173e20bd52342c3e673656
BLAKE2b-256 d74ebb962ba0fe31e903b199f22cf4c1a6cba35a8987aef526d287277ab8ca8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6f29689a76fe7a49cbd629a794d0ec1eab48814e323a00a146a741b0195bde68
MD5 3b948799aaaf30bfb389e40dff16b6ea
BLAKE2b-256 f4629966e46ae34fcec6b06119631fb3c09705ea78835035ce3a82d3348eb61a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5670c52a438e21483ce715776144914a4e2a2a5c62d9dee15f8a3e90cf128ae6
MD5 b743c04c4f7d37b3a88b2b21a274ffcb
BLAKE2b-256 3e76a07de5cb7b90582fdbbc830fd19be129cbbb9897cfe239fef469d7bd2d09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9472a8de37faf8bd216c628e0e68c8f6bef730d3ba0a5060f3b0fa460c992ac2
MD5 f3b9e6d92701d564522a14cd43b8597f
BLAKE2b-256 2ba72c1ed1b34d7df7fdcc11c28fd26d94d44843b37d9af2435ff9fd8abdbc08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3150d836290c88f1d26eb59c4db280d87417dd3bfaadd2889c77416c8f0ff6fa
MD5 3342412eae89ad64d0ee8f0cf8db6bdb
BLAKE2b-256 5e4126e1363f36a94c9e8ec2dd21d5f63088d3e7c723adbb12dcc8fdc77be417

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 975c17da26c5b9d46c336b03c52a057ac28378d6f9d98b58d32a038589bb3912
MD5 415fc25aebecd672029943c5dd0572b5
BLAKE2b-256 6df40d81f9bd346fc717bc561c08fa6457e0328966eb76e536b938fe77d56459

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 375cde148430d60a4a07c03abaa0774c4fddfdd90de99b4ba02f24088bc9d750
MD5 2e46862c8d3f8422fada8525bb56fa58
BLAKE2b-256 bbcd522117e2e5184ca1d4f0f85ee833e9e21bd8c6b99eff8a4d1a8e5a194e33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d27c531edb8d1f38ca2eddaa1fa24913a460aeb721f2efd4ef42a124ce94e354
MD5 5ac2310ce7ccbe9b974f83b4146b2381
BLAKE2b-256 78bf328d3c6bb22c496944a1b3b732207d71aa6964eb604e5e3b9dcb91ed0a00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 967955620df45e6cffe2e9950cb9903cb455649396f896b26b04363a91a5054b
MD5 afda6e24c3df20115d35472484241dbe
BLAKE2b-256 038cc71c8312304c56f6d0bcba87cd402fa79bec35d18ffc8c41954196ca68e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.17.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-0.17.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-0.17.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 fae8b282f0cb22a5de222999f7723f4e5ec04f6fcdf4aaef879b5b36625ae2b0
MD5 0f3afb84837a3347238129e9d9fd3ada
BLAKE2b-256 a013f400ac39d06fd8be5b099c09e41bb975205926722a3e8d53348817cb7ff9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b5d11cccba076a32321ef1380dea956821f0b51794ef59df64e58fb1cd543aae
MD5 b70b7b357f4ad2dff3d52f965b58fd7a
BLAKE2b-256 f081533b5f80cd4918c0693f4e1b7b90ceb1caa45f4266ae8b528135d7ecca5d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 42275ebd0e8e74e32cdbfb8bd88fc99576567d51d54a508020611fd8f4f463a0
MD5 f3b02c76c05be96dc264388ec1f086c0
BLAKE2b-256 c6cd7ede0db66411fa09817d79b680f7454ea9bee2d374e1922e4efd065760a3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.17.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 169.5 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-0.17.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 58838921e377791ef22c64cc92141bfae030f43651ff9272f0f28a208a9e6a5a
MD5 b1be6d17aff2ab7c1e5dd56303df8715
BLAKE2b-256 f3f3ca6f6ac5428312df8ed632f6dd9f9e6aba23090471fcdeae53eab027e8b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 f7e9b8728ba07a3cb2f29d5aa1a266c2664eb8ef0fd43afa34627c92f7fac8f0
MD5 301d2d89da9d1045345df3d61fc0578b
BLAKE2b-256 f06b31713148c77e48e62f51aa042a98a54a8be0396912ea5130f83f52ae722d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6c5d2d71e1f17329150ad9427d27f4a3f29a01792e7ecdc64a98ac5368fc4d5
MD5 3767110ad5ddaa3e55f746f4fd792bd6
BLAKE2b-256 ab94e8057f2288a415fba8a978bca4b589f5cb6b91a028a5dc07a1775938b33f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 405233a5f625b3d995648f4647fa6befa4567cf3f74e1f6b9837e16f7310f0e0
MD5 5bdc558689595525f61a9f50aa8c047a
BLAKE2b-256 89d56dbcd300de47cc443cff2656cd5327a385751213dcb2101cfee7388170b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a46bedc273b6f58f11dee816ff74999625ef8d007890f411b7a4975bf1c89330
MD5 59736e82afdacff15bb011b773adc723
BLAKE2b-256 c00588108405262ec850cea0f95733445d6873e5772af3292baabd9ef8457740

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d63010803d7c368963bbe6f7ec379593e76dd581d7db0f29118d88713c9e0354
MD5 449cecc0743519528fe5edae53d2065b
BLAKE2b-256 26a19915d5dd59fdd1957ded5d188c0ea0b9db5a1d84d42c8d8828a7b83b366e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9082e709014946b1f6e96ae6ecd93652efca2d2a6a3ab67dbe151c8b4bf193a4
MD5 cb335cfad1253cf2998b6ff50a020072
BLAKE2b-256 ec385c5e665af542884a8fd3c61725c38453239e13940326b5b70f3ef8881a97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5641071337eb11d61a001ea08793bf72216f3241f0a433ed2764804b2a3e3cc7
MD5 8fa5e8ba18d2d1fd8aa767b7ef082b70
BLAKE2b-256 bd0f181c5da673953dfc0958cb4fb3a4984a9098673ddb05cac68e994bc8511b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0ab4a66e7a035ad6625cfc1fbdb34f5c2d25a80ae1ef4bfee458ea2036333c6d
MD5 f7a56998a6d00ce26edfcd34cbfc7ff3
BLAKE2b-256 8bd788b2a2370cc3d455ba0515fb6f5c8f7ac0c0f55a86801b6e56a432f22c17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 220b52746d99e11964badac3c0869016e0c24bafb70a7dd5c2c072a6be3da9cc
MD5 1a462a3e23dd63d1a413dcdca7ae54f9
BLAKE2b-256 8f8d5e97bcebc90fb6a10f98af3dc1ba552e04183aba59e2edc0b9cf486dd998

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1fd6f0e8a162dc0e9255b6aebe3cd175e76c33202f1bf39da9e6294b93db0099
MD5 ced6df3a32cda4333de01b820948facc
BLAKE2b-256 f5357de97de18cbf226c2a4f2104ad15e56ca4491717c81c0b71795c0c585b4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 387cf7437c94ddec08651a0f1081381299c7075bc48a6251d8922bf39973378a
MD5 16adc1bf1e7a1c72d967c525ff86a62b
BLAKE2b-256 192865e0980d668a6d44e699f59d1acf43d6b5d4893592c115ce7c680bb4dfa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.17.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-0.17.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-0.17.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 673d89cc434cc9b97a0b4cf61272f6fca70a81f64eb0afbface2a0d9f77f06cd
MD5 ea66fa48024f3b4865f4270204c690e7
BLAKE2b-256 5644e2fd3fdf356e1b55d2acf1b956b4f3f29ffb215a99c387eba04b1c5fba66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c351737e2e65497c7200ab4ffb8af97e9f48be6488309abdd265fe08d66ee92f
MD5 46a729db3a98e2ac6b61308ebfc0efc0
BLAKE2b-256 1a52024ebece265b387154115dc4f1d9727174ef82623069f4bec8b7ed7e73f7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for uuid_utils-0.17.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9e311f908d2f842fca4c7dcebc4f10306b8089b204ef04cf6704b4332c9ff6ff
MD5 f1f0cb75dc9aac986a393d8db9fdd061
BLAKE2b-256 76f0e602ae0a1b139a7826e5189b93d91902564def06d5006324fd2faf82c8fc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.17.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 167.3 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-0.17.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b3131a82d0c7611f0aa480a6d36929e001a3f54ba0fc029a8118a5863cce513c
MD5 fd7933630414ba0e91e855a0e2a90e17
BLAKE2b-256 26bfcd729343de4684230be8a966bad7bfc2cf10ce3e643b1189a8b5370dbe35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 6a019a31bc4db89a0903a3e4f6b218571f3a6ff0ad4b3d3fe1c8f91a05ff6e3e
MD5 5cad6738bfc18ae5321492e75589bbb8
BLAKE2b-256 fd251b55697adf6811a6f92cff6340e6b03e31fd6bc51066a5c10698c29b3679

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c89359affecebe2e39e6a116d069b363c936511a9572b308402489a26957d89
MD5 e907d025e6c3d62678712c45f41ee217
BLAKE2b-256 b4775f7ed930dc105e293845c09e4d5bd84076318a12f45a46783e1af64906d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4134353bfe3026ddab8e886002dc52bc5a0ab04611aabb0eaae23c32e6e57f64
MD5 e64cf0eeb64f9242a26998dec8ebcf95
BLAKE2b-256 0ea8bb1b38aaddd7243b6e562c6694f499bf094800918316192fd8cb2cdc2620

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 21c79b61ff750abcf057163dd764ccb6196cde7a26cda1b31b45cd97769e03b3
MD5 c405bafdd60d88f6812689f944fb26e5
BLAKE2b-256 87d2eedcd99f522d60e238ead03844f0d51743ba84d33044959e230b756bf212

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 309a35f12d99dde19032bc2259cda6431c85eeac0879134dc777cc3087d7e1cb
MD5 d26efa0d80b25617054eae86926a0f35
BLAKE2b-256 d56289438e12f389a843e626b7e37691319a057b3d6b80914609106891faadda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09a55b7a5ae764985cb46467496a1787678d0a1400356157a080ad95b1a36869
MD5 1c59730b4bba988698bc041b36828635
BLAKE2b-256 d879e8e0f8b3955f2081c116157119d87659937893242eb834aa170da04d660b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a4370089c8b2e42f1db51d76408c7fa8eaa2934bf854d17983d16179c07c098
MD5 c138826ccb1cf762e342c3094b55b333
BLAKE2b-256 b6339219d09d51ead282b578b2a4e0a515c2cce3ec52076cada8bfb7e35727d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 98c88d3edd08e7245562e9815996dbc6f0bd4745e1c76462f24af5ae4e187dd1
MD5 d2dcfd25bf17e1028cbf9d32cf0b9160
BLAKE2b-256 f72dbdc2caf9719d9090d7c46043242ae6136cba4f7a7ee384992ab905ad9aa1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32df1944808877702ceea398c103881c09a679bb672a215e01c2a84231266bf9
MD5 444b2561791e8314aafabef51b11eeae
BLAKE2b-256 186d8a63e5eb2d5a6ba69a6c2036e305075bd6f5a022e7ea25fc6ce0eb7c51d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 56aa6488b931246fae11924e4bd0e2b32677e63945eecb71c29e3c2ca0dc3131
MD5 82d6969b7056f6f8bb8b08a121e50fbf
BLAKE2b-256 d55ed1ceddc430ff04b6e21704b2030d4438074a2f478b265dab43da957791c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a49f47ac26df3e431c56b825c1bae8e6d3d591fdbb7438c227cc9845a7e3d73
MD5 4d03b6455214fce7dc1721667c238f82
BLAKE2b-256 3e11d072711704de3d21bec08b6c2f36a215200ca1d5e01a390ea1ac434080a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.17.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-0.17.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-0.17.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 d11a7bc1e02da8984d32e6de9e0826c6edac00eac17de270f372bf32f9a0af63
MD5 1ee2693dea9ebcc3ee762ae2859a0d8f
BLAKE2b-256 d2dd614fb9912157ac0128e6050859ccf06d9f13df9a944a803e8f80f6157e38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d561a4c5747a1e6c7fa7c49a0292e78b4e8c456332caa084fc7abad8de828652
MD5 a732f357cbac16a611b1f93f29eb4227
BLAKE2b-256 be358c6e1bf65e4d400352885dadc656ad6d0af96e89231e3f04686bc2197128

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for uuid_utils-0.17.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e59b60a0a4cb7541480e02090d37dc2df3b72df4c2e776fff64ce3a4e3dd4637
MD5 5e6cecf60f58b05e4bd7c8b6ddca4e46
BLAKE2b-256 5c7d0b889654d9ee3413f810cf4685e241285f650d98a4103ac9f3c6bcc95f29

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.17.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 166.8 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-0.17.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 46a73cacdf512f473a81f65dbf84186e08cfe6e9118fa582b6c6b33a8288a30d
MD5 8471c5e542f69bfd05b70f615ce18d9c
BLAKE2b-256 d6f69167e90cf9937d6558f92d022ff3024a69d938a514d9c8faa4080f73b001

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 237722b6581bb5b4eb4cefbcbe5c6e2980a440aabe781fbe50ebf1cb71eee4cc
MD5 90f3a8bf20d74b3cca467e0fae248921
BLAKE2b-256 619170e7b528b351cc03a9ca43e6116371cdde31bb12bcead7ca2ca1367366cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e252db239eb41c32248e096e0d170bce5896a4fd3405556362bc3dd83d912206
MD5 513affc3b8a89b3d22fa1f1d3b13938e
BLAKE2b-256 f4a8b1abab36ff73b0248d82179816467f6d39a2e80fd64329a895ca94f3508e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6c142bd0cb4dba31c10babe00d59f7ef6460f0ef55eaa9c1a9da270684af996a
MD5 1b3fe0e714b595a5c86703e5d4f732f0
BLAKE2b-256 2d028a19a34e0530d987488a068a71576a236f5c8c746630b870b57f71eb24ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e2ac1c0b56f2c91b6f158e29ed96b1503223fe8aa6e79b1be1dc55bd8a5131c
MD5 0f8206c2fcd56de109756474027a175b
BLAKE2b-256 74f9be95bad6954b60328878c3800258f01a6accd24fd75112d13f023462d53f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8eb3e5caca8d3a6f72ea4cce024583f989f6f2e9186f98800213fff0176e8bcc
MD5 def55b32259e5f9b4fca67ae10f9634c
BLAKE2b-256 593091795bd01e17a13661280d4899fbf38fb05e3f38e873f9aaec106ec30aa0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e671b2322ef09106ecb1ca0f4c398b134d5e2c1f80d7a4f3336847a3072c0e94
MD5 f3ecba9398e6b7c84f16c60623957eb9
BLAKE2b-256 d937a5081391338b459e2f8d8b12581f00f8caa6317fab510e0e85c18c59e938

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3dac0ad0cd9a2818d1775215365a4e8c2f8ada215529dd26f3f8cceeb67a6988
MD5 98ab4ba849b9529a136a9fd2ed40927e
BLAKE2b-256 5a0362fabcd1e990e07a0e220e8d552af45bc16f107fa8e55c2014a706bb1a1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f3729e839209f3457d0d8b6a35a376fdf65577a5aecaf4cc3587d3305759ba6
MD5 9e6fa11eed68fc4b36c562d016758215
BLAKE2b-256 55fbd59695f0f8db065b93c63316eaafa05a22d75a0486978a33736c52c646d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8b72c2002202038666bf647f9a790906214c7c11cd0d6efef77b7d07bef3034a
MD5 a0f07f7c519ecb3a6c70e33f3b66521d
BLAKE2b-256 e51109102b78303e4eb62069d6d88ef9fd661dc523e8f429e1fd67eaa78a6f44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0fcca4e838af9ac9243b3358d7c14afa4dca286a87781124c272d6c4cad9c968
MD5 730e466520c006abef4baa489dc9aff3
BLAKE2b-256 56473102d93bcb7b0bfe6bede63ff8f221a7f91348e10a37f682773be27c56d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.17.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-0.17.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-0.17.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 9205068badf453d2f0821fd5d340389b4679992d7ff79d4f3e5608996dd1b287
MD5 921246b1fe22db16900e08a19c8bc487
BLAKE2b-256 2080a7e685968e3cec99d6fe2fb25d0f5726310e1bba356da68c13dfd8b7d140

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 29179ffb7b317239b6d6afb100d14c439c728770460718280b9c0a42d2561ec2
MD5 4915042415411d6e09b574395cd80522
BLAKE2b-256 3520396c27f996add19f8ac31e49cc4570824e51a97719087dabf94694d25bc4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for uuid_utils-0.17.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 14dc2f46abb1091260c0d203fcbdf4e045042cc07e49183fd3b255904b95eb70
MD5 54a6a0fa9b8fc7405e496d832a3c5275
BLAKE2b-256 c21ae01417f52eae6e2cb412260bb332b4ee4b37af2982d9c38cff4b68b2e899

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.17.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 169.9 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-0.17.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c4f845166b09acc65c5213a35551a7f81c17fa010ab467229b5813f79d17fe13
MD5 d2cc1529aa00ce4a46672d1b8ee7048d
BLAKE2b-256 6ed39ad1ab64b3bed0a0237d1db89dc6f5001d6116a82766753da4ac4496f979

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03815cea572c8a693cab5475b9d750cc161470961c7defa27e9286cad62f38f5
MD5 516785468a556987b8616911f1ddb7c4
BLAKE2b-256 1a6f1d778ca3ed6d2cf35f22088e2de714675416747ab41be510f22c141043a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 793229621e1ad6cac55f015cfa9f4eff102accbc3da25d607b91c6b0bec167fb
MD5 d95db811f0582c1c20d08e15d72df8c1
BLAKE2b-256 63958a2777204e8691b4961e6aa619001c3e5175aa430ab43da3079142e8d310

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 04452640d8b6920c480c16e5afe91ff896d236e0c972830f9247e0898d38c803
MD5 997dbae5ad0e5a8ec74e49af97e96e7e
BLAKE2b-256 f45cc7b73ec4bbe28db162a4841d352c6eda582801e0dd9fe72f6ad5cc584ee4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1019476b6bdc047216ef7414be5babe0fa5ccfde977c0cac4fd6c75ddec66ff7
MD5 a1f9f38cbafdda2f498bfce032f147b2
BLAKE2b-256 95f4f32ea82a89efed2eafee2f1d925d64687a81e550a9951933fb1b75c95ca6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 622cdde768300591ac79bfcd7bb3468e4b191b1105d5dbfe8d87c39d8f63dd46
MD5 2021ee7c91df3335adb30072b9863376
BLAKE2b-256 32d57e698466d1f5254620b5ee0d711fdd20a0e9c2acd7040740c37193a8f673

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 351462debd866f1f25e4d4f5c7fac89525b52151f0102a1bdfe94a999b046f5f
MD5 56b6c1d264754796679825845bb47a3f
BLAKE2b-256 43370c65d0db3bae45183419756d938f1791a82c835fd92bf234eb4f008d2e02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 570db214f6d8507587a8faa968a3fe65e957daeb7bc48b27dc7f69bc3ecdd6f1
MD5 ae9dabbe923bbc6202f6dc1e47e18658
BLAKE2b-256 13d98a17462ce066fbf89670fb737a3f0c93a77816736d2a4d134787e759d8ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c00d182e31034250690f417b9068b78eab423c10d76766664e82d9860c340479
MD5 f2bb3a51120ba06273da4f034bf7fda4
BLAKE2b-256 a3b8bc5b64e9898867227c535cd0366c571c580a736748e81329437c1773e442

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 75d7411e8eb9259764dd60310738540649057cda4509b4af14b36b7f663bfeb0
MD5 cd81d6c30955a0c0bc7a1696baa6868c
BLAKE2b-256 5d483a5b242d7f0b8e3ca77dcd7177f3cf73e0280cee32e2349d9796ca27f183

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0bc4c431ccd59c764080ceb43b126043325fe17861b87759d026a0cdd8423bb2
MD5 5775a6f6e365504a640658c54875d268
BLAKE2b-256 e3cb88b909ffb9ac11f88d2e6ceabc592ccc660b5830b06dbcbd290ab8981f1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.17.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-0.17.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-0.17.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f9b093cb3b6c9d6233ef45a05cab064d2aa0a8cb3c5777084c9e20fcb77c2371
MD5 ae4d687a17a73b036a428be29e93807a
BLAKE2b-256 d7b28f03b61f0aa4afc687855c4f00db35f4d3e58c480cd885abc46f6e41308f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for uuid_utils-0.17.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 981cc10163988defea96e8d6c507df151eab8f483e7df9ae543d5a41a4be073b
MD5 a0585e1275214be38b1246f35ada1973
BLAKE2b-256 8b5c23a2d0253ada2ee8c497d541d4ef0dd5576c3d2454ec2f9d0b8a06af9304

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.17.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 170.6 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-0.17.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c589f5023d471ce75dd2cce61acb25ed6347e562041588a1a366808f22d7176c
MD5 ffa9ac6f0ae2339b69802c3cec385951
BLAKE2b-256 4a3b59b1e07ada8aadd3c046c97fe9814d85e770abb7e8cf68d5d86538bf62e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e753e81457241e2200c56a898e268e8fa25796271af0489c608f24d8e631eed
MD5 2012bdec5a4fb85237daa1e99b81a35e
BLAKE2b-256 b2ccd7bad8799a37ec33fc21b29fcb459d63d9f88aa09056d0c3e58903ba2fb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 53ce348ef4c6e98c02c19c522af01334fe94476ce9af0db8c4482f9f142ae9c1
MD5 3914a17d10f2d13c7e1a61c1bd18dbee
BLAKE2b-256 3b639e48512bb235e9533adbb25c30fd0c9cef09f6ecefe131ba392b98572b40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cee808b405e9095506f4e4e89924bec7ea77eac3129b6fe36eda04364b3b343b
MD5 8f092d4ebfc0ba9b2ceaff6bff8129a1
BLAKE2b-256 1071b261cd0d38497ed8c2cce0263c5607ec9cd2bbace0f73cb19a6fc2060b6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 589d9da7de8fa7f739bb970ac4632c9a268213117d634e1c4a58c1c1e821ca05
MD5 c64cb933bfa1fbeadfc3c2fedf2db6fb
BLAKE2b-256 8281d82766af7db541e4a78b920bc1c4303d44995f841805d1498934088cd12c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52db0e471d3d2632d35445af352591f40a8f32959a412981d9f51e068bb9514b
MD5 e8ba1e863c07c3f59821470b01a0c52f
BLAKE2b-256 6806e0424b4268c0932e0ff8257303d70de4053f05958843268fac4cb0f79b57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4bf4d9cd1e80e73922073b9b27c143bedeb109d65f94cd12712e2c87118f2b7d
MD5 9d2a2d8420e905a9e23afaf648fffde7
BLAKE2b-256 087385776566863514f37b0a761648368e96b07d64981a9b6c391220aa2563a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 84ed3a2d5cd3ae6db87af20bfed3331116195ba4757ad7177fc8f12c1bbce2a9
MD5 f582badd603a0b2c76bb78ced43330a6
BLAKE2b-256 22f8aec5c34fa80c9fef09a506a098015e728080076494b72b9e8e5cfc9669c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1edf2f8732e4ed95bd7b65f2658f4aa072efaaff321144f4e0d4bf6a22709263
MD5 397aae3cbe1d18c4c0e73d27186bd6be
BLAKE2b-256 8483e3606dc9b4224d0c9a6675d9347e7e0da7e67fa30e061bfdb686138844d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 344f7c755e280ea0ba6aeb08022190d867a80000b1715cacded54fc4b5633607
MD5 77f43a2b72d8181f61aa1b896921fee9
BLAKE2b-256 dbd2a0cb3a69ef6d9becc30a6a0594ddf6f798f6204953dfa85073cbec875b94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b776c7fc8755c7de06dd5a22b47c40ae84f67d13277ebb233cc84933ba4dcbcd
MD5 138349ab63fd1d7e90f12e7e386fd546
BLAKE2b-256 fbe7e0d048a268b4163058bdd2f07a45bbe13c29e3cc6b7b88f8f00b001617ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.17.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-0.17.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-0.17.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 d2d9a63a9e6f2416ace8c109043a9280d6b34f34bb2e5421903e149403db40a6
MD5 f7db9f362760c942868ea8c4c6404231
BLAKE2b-256 7c60659104207938f2ac62508b9aa595fc0515ac7452dd515c8e1d47d0b91169

See more details on using hashes here.

Provenance

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

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