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.1.tar.gz (43.3 kB view details)

Uploaded Source

Built Distributions

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

uuid_utils-0.17.1-pp311-pypy311_pp73-win_amd64.whl (180.3 kB view details)

Uploaded PyPyWindows x86-64

uuid_utils-0.17.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

uuid_utils-0.17.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (450.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

uuid_utils-0.17.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (334.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

uuid_utils-0.17.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (326.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

uuid_utils-0.17.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (354.3 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.12+ x86-64

uuid_utils-0.17.1-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (566.5 kB view details)

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

uuid_utils-0.17.1-cp314-cp314t-win_arm64.whl (174.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

uuid_utils-0.17.1-cp314-cp314t-win_amd64.whl (177.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

uuid_utils-0.17.1-cp314-cp314t-win32.whl (171.2 kB view details)

Uploaded CPython 3.14tWindows x86

uuid_utils-0.17.1-cp314-cp314t-musllinux_1_2_x86_64.whl (532.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

uuid_utils-0.17.1-cp314-cp314t-musllinux_1_2_i686.whl (566.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

uuid_utils-0.17.1-cp314-cp314t-musllinux_1_2_armv7l.whl (607.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

uuid_utils-0.17.1-cp314-cp314t-musllinux_1_2_aarch64.whl (501.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

uuid_utils-0.17.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

uuid_utils-0.17.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (446.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

uuid_utils-0.17.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (330.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

uuid_utils-0.17.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (323.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

uuid_utils-0.17.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (349.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

uuid_utils-0.17.1-cp314-cp314t-macosx_10_12_x86_64.whl (290.0 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

uuid_utils-0.17.1-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (562.2 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.1-cp314-cp314-win_arm64.whl (174.7 kB view details)

Uploaded CPython 3.14Windows ARM64

uuid_utils-0.17.1-cp314-cp314-win_amd64.whl (177.5 kB view details)

Uploaded CPython 3.14Windows x86-64

uuid_utils-0.17.1-cp314-cp314-win32.whl (171.2 kB view details)

Uploaded CPython 3.14Windows x86

uuid_utils-0.17.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl (100.1 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

uuid_utils-0.17.1-cp314-cp314-musllinux_1_2_x86_64.whl (531.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

uuid_utils-0.17.1-cp314-cp314-musllinux_1_2_i686.whl (566.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

uuid_utils-0.17.1-cp314-cp314-musllinux_1_2_armv7l.whl (607.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

uuid_utils-0.17.1-cp314-cp314-musllinux_1_2_aarch64.whl (502.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

uuid_utils-0.17.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

uuid_utils-0.17.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (447.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

uuid_utils-0.17.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (331.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

uuid_utils-0.17.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (323.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

uuid_utils-0.17.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (349.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

uuid_utils-0.17.1-cp314-cp314-macosx_10_12_x86_64.whl (289.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

uuid_utils-0.17.1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (561.1 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.1-cp313-cp313-win_arm64.whl (173.3 kB view details)

Uploaded CPython 3.13Windows ARM64

uuid_utils-0.17.1-cp313-cp313-win_amd64.whl (175.5 kB view details)

Uploaded CPython 3.13Windows x86-64

uuid_utils-0.17.1-cp313-cp313-win32.whl (168.8 kB view details)

Uploaded CPython 3.13Windows x86

uuid_utils-0.17.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl (98.3 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

uuid_utils-0.17.1-cp313-cp313-musllinux_1_2_x86_64.whl (528.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

uuid_utils-0.17.1-cp313-cp313-musllinux_1_2_i686.whl (563.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

uuid_utils-0.17.1-cp313-cp313-musllinux_1_2_armv7l.whl (605.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

uuid_utils-0.17.1-cp313-cp313-musllinux_1_2_aarch64.whl (500.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

uuid_utils-0.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

uuid_utils-0.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (441.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

uuid_utils-0.17.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (329.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

uuid_utils-0.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (321.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

uuid_utils-0.17.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (346.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

uuid_utils-0.17.1-cp313-cp313-macosx_10_12_x86_64.whl (286.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

uuid_utils-0.17.1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (556.9 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.1-cp312-cp312-win_arm64.whl (172.6 kB view details)

Uploaded CPython 3.12Windows ARM64

uuid_utils-0.17.1-cp312-cp312-win_amd64.whl (175.2 kB view details)

Uploaded CPython 3.12Windows x86-64

uuid_utils-0.17.1-cp312-cp312-win32.whl (169.2 kB view details)

Uploaded CPython 3.12Windows x86

uuid_utils-0.17.1-cp312-cp312-musllinux_1_2_x86_64.whl (528.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

uuid_utils-0.17.1-cp312-cp312-musllinux_1_2_i686.whl (563.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

uuid_utils-0.17.1-cp312-cp312-musllinux_1_2_armv7l.whl (605.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

uuid_utils-0.17.1-cp312-cp312-musllinux_1_2_aarch64.whl (499.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

uuid_utils-0.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

uuid_utils-0.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (444.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

uuid_utils-0.17.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (329.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

uuid_utils-0.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (320.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

uuid_utils-0.17.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (345.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

uuid_utils-0.17.1-cp312-cp312-macosx_10_12_x86_64.whl (287.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

uuid_utils-0.17.1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (557.1 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.1-cp311-cp311-win_arm64.whl (176.5 kB view details)

Uploaded CPython 3.11Windows ARM64

uuid_utils-0.17.1-cp311-cp311-win_amd64.whl (178.7 kB view details)

Uploaded CPython 3.11Windows x86-64

uuid_utils-0.17.1-cp311-cp311-win32.whl (172.4 kB view details)

Uploaded CPython 3.11Windows x86

uuid_utils-0.17.1-cp311-cp311-musllinux_1_2_x86_64.whl (533.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

uuid_utils-0.17.1-cp311-cp311-musllinux_1_2_i686.whl (569.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

uuid_utils-0.17.1-cp311-cp311-musllinux_1_2_armv7l.whl (608.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

uuid_utils-0.17.1-cp311-cp311-musllinux_1_2_aarch64.whl (503.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

uuid_utils-0.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

uuid_utils-0.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (450.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

uuid_utils-0.17.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (333.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

uuid_utils-0.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (325.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

uuid_utils-0.17.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (352.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

uuid_utils-0.17.1-cp311-cp311-macosx_10_12_x86_64.whl (286.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

uuid_utils-0.17.1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (562.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.1-cp310-cp310-win_amd64.whl (179.1 kB view details)

Uploaded CPython 3.10Windows x86-64

uuid_utils-0.17.1-cp310-cp310-win32.whl (172.2 kB view details)

Uploaded CPython 3.10Windows x86

uuid_utils-0.17.1-cp310-cp310-musllinux_1_2_x86_64.whl (533.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

uuid_utils-0.17.1-cp310-cp310-musllinux_1_2_i686.whl (568.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

uuid_utils-0.17.1-cp310-cp310-musllinux_1_2_armv7l.whl (608.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

uuid_utils-0.17.1-cp310-cp310-musllinux_1_2_aarch64.whl (503.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

uuid_utils-0.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

uuid_utils-0.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (449.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

uuid_utils-0.17.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (333.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

uuid_utils-0.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (325.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

uuid_utils-0.17.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (351.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

uuid_utils-0.17.1-cp310-cp310-macosx_10_12_x86_64.whl (287.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

File metadata

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

File hashes

Hashes for uuid_utils-0.17.1.tar.gz
Algorithm Hash digest
SHA256 10c51d54ecdf0617640e505eae6d2e6443d8e414d4f9d6e8d43949a450c56e6b
MD5 673a4f1f9d2cd4707ab9133d18739f69
BLAKE2b-256 4c80cf6934a2030a5f6763f604314c1105f851d90aa1fe344c2692c3b88a9d95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6cca251f83d3ec2988fb7355b52c4b4fd2d96159f6f040e68f51af15fab49540
MD5 072df4f0e5ca558412f6e58dcc62448a
BLAKE2b-256 18e42bdff71a73c3d5dde6777815c910be7417fbc54f36206d0f7a1fb2f54522

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ed203ff60932fe5b3a38453945bee4aa8dfb387789fd420698f607786ba42b8
MD5 f1514a2ebbbd576a1bc0f06c28dc7bb7
BLAKE2b-256 8709ab493c7598311f9bab4dc762d3483cb35cd78588c4d848c36fcda671f4f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4adbea226bef0c619b33fa257113e36269a475b2c2049f55b8b83b4c6d507a9a
MD5 2b8502c7cd6b13155a183eec4ab12e62
BLAKE2b-256 8d64844e5657be2b43ca2136ef4aa207420c1387e28cdbb90dcb395133ee63ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f85fddf2e5c4f7a30ebdc2b26ec585b9d814d807bcf285d248ae451ffee16a03
MD5 62dd00cbf1d3389043bda74c8194e4ad
BLAKE2b-256 878155b12664f7fb6a69a9d18ec8a8cac1a55fc60e0dca14046d6bb972fae2a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5629c94f65249384314831ca0a95ca5f1dce5bcd5ee79600a5cd31d4f7d0f5f6
MD5 5581217249636f11848c40664863b854
BLAKE2b-256 52621a94e2cf60ba38ef87f11cae3dd3b2787366229cc9a3f0ffc41fb89c9487

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 92e8df2bc6a33229c105ea90839d98576fcecc5cc86fdb1dd772ab10367b744b
MD5 eb298a2e811c3332993cff08b35928df
BLAKE2b-256 4f1d8f2816d50d7a69416270a88f41f6820cde300719bac814989bb13e4c5ae6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ea207557393ead4084beb08f0e9c0c944ac2050678714b65ba979fae90cf782e
MD5 c3b30f176654ac45d324cccb57f13cb9
BLAKE2b-256 8ff371e7acaecfdbb5edd3cc7e13d0602f4566f16f35412edcc784569ff14733

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.17.1-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.1-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.1-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 653bf91ec2d1c3b0f10157815ca58b0b572d15ce17ed0823aae08ff0df207fad
MD5 d5e4ccd80a018ace77bfbee09a99b912
BLAKE2b-256 d82381d75df583e3c7ff432b4f86014ae243fe7baa57d99919dc1292e9424724

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 a3cd9443d0a3b6f631e6352cb9d9c0a9b68d808d71250eb44e7b00265ec382f7
MD5 12576c6df069c4045d5df1a58dee47f4
BLAKE2b-256 6066f56b2b497286f01ac2f6a1be8f825e871906d6aaf83dd4ad0cd7c8d54013

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3dd5706a9874799013e82ac567425c535a0a4a7779c8551154915a4ba2fcb1c4
MD5 60071d256cb02e0a0067ec2024732746
BLAKE2b-256 067911811f97922be44ca900fc89e26b4dae173bd03ffd03672da7b28b023b29

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.17.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 171.2 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.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 ce2fd8f8bc0026c0fc137cf5cce9de546ff9e0b4008be3eb21b5a06249eafec1
MD5 d974ae11a9fbb8b1be4fcbbd4d474e39
BLAKE2b-256 97a1318e4bc7f04a505189233ec2409cce9e18cd5f52d06738a9e96f0eac3816

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bcf40ae13cf31727b84f00b1a505f1d4d10199bfea946c3554ef327702d2acca
MD5 53815d46dd4b109743a3a5ddb6e310ac
BLAKE2b-256 526dede35c5e3e3787d2e9d5d3baddbc00f3f64e3f4522d53508757fbcfd6f47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cddf08ed611c2ad1c791d4133dba2c63db4d294b2111e1db687537943cac25ae
MD5 319cd2b4400b18284c3251b82966bd77
BLAKE2b-256 843f07c5ada40f360981ee069dbe6463a13dfa1de7eee73a6cb91f94d610821a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 764e4505821c20f1a45a54e9da076e6a97e4e46947159490aea893dc6b8d77be
MD5 212f9ac9556b3f14c62832100723d845
BLAKE2b-256 3884f65e1963964b2b6fb7aa687dc819e5a39207dd9ecc7961cef82124fd3cbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87d818e1fffc39476c7934544f54455ea04c6297fcd983598802e81c746338a0
MD5 d2a0ae5b0dcff85022c96e732551e81b
BLAKE2b-256 e0d2b40991f80805d2cb3ace8c961752429e2e50d4ce0a3ed941c26a6250e3bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce2f65e81429fcb145105a10c71bf2c71ac5cc9c8fc6c79ac3c13b9de091b2ef
MD5 3db8cadd66bb8c68a01f7519df76f87d
BLAKE2b-256 3311a2ef25dc4a3dcae5ddf8a7c2debc0d10719a991e327e43913605fd3b9c90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b1fc79cd8a24bc6c553cd6f708f5ca08c4182914bdcc87192e1e468e9858add3
MD5 13a42c70647320fb976acbbaba362383
BLAKE2b-256 39afe7d7b372781627a6ea6ec2a2ee82f98e3fe7de7b6e4b050ae29a66fd64f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 617acaeb2586e87c9bd0c2e192e4f1d33caacaeb7f3e0cc75972bc38e703e099
MD5 1803731fe4cd01287ace4356c16a7364
BLAKE2b-256 d8c78f27ea2c1e244c0edbaac5dc2a5cbbf51e298e54674faef03132f4468a1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf419a23bbeafed0fc8efb4ca5b3e0a8ea4ef4866de41c3393f888bfd5f60e15
MD5 5f6c185f1a3a79e4dcf807affbd43b88
BLAKE2b-256 9a0478edc758c4dbc84bd5ed8c40b6d7ee0dd879c6ff07320f347e371d84cffc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e9ff97bf48606e5d817a01fdd4a4a8855b91382e384f524a960149da00adab5a
MD5 e519e7c7eec60609fb4683bc82dce3a8
BLAKE2b-256 4e4b61153f07eb7282d71a6ee10e3c05636a7d43cec6784bc6ea79979084e727

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 691a9c16db041a8d5c55d6414398b0fc97e33aad41ad3aef67a6f3c0661dcde1
MD5 6144f2487b2b899f2b70d6ff5ad16dbb
BLAKE2b-256 bfad5afb5a6fbedbce0bbd358855771c63ff233e7bad898eaaea9f9802fedef9

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.17.1-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.1-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.1-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 0956a9422e132c8d4a3d808cc3d754fc8e81d34295a3a202b332c9dce064eda9
MD5 35d1b18fdee63c63b3a3bcc23ef59661
BLAKE2b-256 cd3f095e8eed10949c6ca1adde77d405268e88eeaf6e23a3968b29e549d0765e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c3955fc653dc78a93ecbd880bc97a0ef8010a9a748e6307f11ad005d45390ce5
MD5 b9253de3ff7f5dbdd03333a513b15613
BLAKE2b-256 f8e39e3eb231cffab2df2029c4b6d015dabb077366d1194a8a0f2d4522d581ee

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.17.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 177.5 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 eee4a1df744434e10a0d0a679c074e3128b58328b83c99144e363db320e801f4
MD5 dd71bc4802498ea66863b718e33ba112
BLAKE2b-256 90c0772c08a73cfc8810ff3144ed2e3701242568f83c7031b781d61bdcd74c29

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.17.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 171.2 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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cc9da3c0d8208b53c28658340827505af437bff7a52a55fdaa262ccd4c5a5d87
MD5 2145d922048de9ca34b716f9f68f2b9b
BLAKE2b-256 2a8d4840ac42764185be3fb7f7ae990c3f4bcf0b941a54ad6807e65cc312e9f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 b2735d128a3732e528229fc24295530caa75e79d5ea7fb0f8690ef3114d9b262
MD5 88a7602b34621faba36fe442d5295a1c
BLAKE2b-256 5ab27dfecd82aff24e02a6764ea88dbb7266a061bc7691d0180f01c6b1ea1efe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7970905d66e55f9a52d0e694d306501e8a9468aa99da73867cc1f8eba2817261
MD5 00238ddd74d6ed2e311380c4d3e9a71f
BLAKE2b-256 3664e706ba987142e212f5af6a034ed98f9a0ec2543e1fdbb3b29b034271578e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2ff6a84cf6a0a28e4a75c7b11f0d52464ddce4b7a0bfcf14c8de2e740299903d
MD5 92360d37e8dc2b55b000ec855392fdc9
BLAKE2b-256 0b7f6b121cfe00742f5884fb313321fddd23a17a2326a01a0e669810eaa36b2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8d31f5725c874a656fa1b7c8feb20b54b01ea70b200a9ff0568672ad3fc80b85
MD5 2613e6251b05fdb2fba110889154c5b4
BLAKE2b-256 f6c29f7883a730cb0e0fce25487021590a1fd28d2840bf25022b33a81c800da9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8abfd2ed04af7df7b586621b11449a061b4b899f8b073e972b7282c89ae8335
MD5 8c360ec7ff9f5934b880b56981316fb7
BLAKE2b-256 7f3e37352e939a3995775a6034023bda646aeacf73f238a82e46f012d6a7eee6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71eabda671e055415ecfa8859364438a575eda84e6f43a513436977d9377b532
MD5 2a36df6f47403b915a665d68780c6896
BLAKE2b-256 9f8fdb9fe5180418846bbc3273831468cead13e1de4956c73071fd1a4bde6ac0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e9f5e23998625f6dc005a3a30238b4006424e366cb2966ec465e0287ae2534f0
MD5 564d8374d64413a876690ea83dcd36e6
BLAKE2b-256 cbd749300453d84440d6b8f45c95d9fd249f7106f8283296c948842f6fa00fd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d365e0c916bd9a4b0b7f67f3305c6704c4ff44ff9da836faf455b8b5dce0399f
MD5 f9d4772a422989fa477e0ddd8636d987
BLAKE2b-256 d8568ad1da1ac6781f792e6e92cdb65bd242c5f5269e7c77de67edd704db61de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d030ce5d3cca0f2f55509035bcd33d39494c50dabb9d53dc0419ad212eb0fd7f
MD5 70ac3acc41c07db42605894e380d590b
BLAKE2b-256 9e055aec1389045f9e16afc1b8cce6414faeed40d44b3095f74d641c33ea1434

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ed6821646e37f49683b3e977f856421c08eb9d03418423ac1477e09d2fb5cf62
MD5 8a3b6a545db2896d64ed23d12f7116dc
BLAKE2b-256 f900efcac8905b87ffd76323d8e46594a68a0bde2c24c8e71f44ab7d5622dde6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9700430eb701f18bd995787228c2202a15d9db335e8bf9c583df7eca5487d5ce
MD5 e4cd82340b68a16594b1b6250c538dd1
BLAKE2b-256 38ebc16f89b3c48eecef422448b9bde07994762cf21daa3351f4c49eab705d54

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.17.1-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.1-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.1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f974aa1097b0b8245d8f29550eaac3b431c891ba7c76cc4beaa6ec7bf8cd27b6
MD5 fc868a85450b2baf85ae1f1dd980fc53
BLAKE2b-256 3aeac735de118ef5c4a6ada1846699e65b3adcac92044e79b83345f90c792fe5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7a9537e7afe2cd8851e636789124bcc26ff1d671906c5e56f6e8f293fa477ec2
MD5 1fd5af60a23cf3ecc9f28abb20d9a227
BLAKE2b-256 5842558d83542ce270fdefe19a18e707e4fce58e64ed9d98658a2da78b9ac2b5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.17.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 175.5 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1cf7a837c3467f69ba3ef32caa43b1c5f5a462b7d960bcc59083459aed2b4202
MD5 9d135a1f7acc1daa774dbf62d2615b98
BLAKE2b-256 e48446d45f14ebdf1ff4d9e6096dea5f31a706d7f71e99e48cde933b47a2e4db

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.17.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 168.8 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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a0a276738fafcfd63e6a0af944ffb8fb86448fe4cedcf574dd7df1ca13259e22
MD5 8d589c5b9756f264e6b93ba75766dcf7
BLAKE2b-256 14afd2546a514432bb970da5a6550c4587ec8096ea90a2d2ea29aa55a1c35521

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 7e32ff7bd0fe4fdefce1d95f8f673a9b012286a7f40918ed1c08936d565aac4a
MD5 70f93716a6e8793b349c15280ea77328
BLAKE2b-256 2a830e9e0bdd77bbf1fe5380267c14f197f8ac442ad5172000422f46f05953fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd347022f67f7fbbd6939181ab076cd17a1d856e09a160eb87e245e692cc5742
MD5 91e871dc9a2c582b5405f25057256c13
BLAKE2b-256 e3ee314fc4f908258714e92b0fc50bbf02cb49454db4857e9da42d40b8f3539b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fa1a1c9a72ef9757176c069f7bd8014b7f4abf5f9930ec62b883dc864ba28092
MD5 92ee87a7af0db5d94d6ff30bfc7b9b14
BLAKE2b-256 e3db1c64eedcc55f1ac01067c208bfe7fa17957521a73ab1701c04a866c33795

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 33fa18507488c4dbde9a3969b6483183d934dbf7a7d46aba90bd5d664d4c81ea
MD5 28a62f06a91d9e14570f342a1e2a8a38
BLAKE2b-256 730bc15c3f5006c3f89818cbe796e73f9a1927867ec6b0c32e80cf30becefa67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9f9f6835ab3163818156022c627eda60c38c874b369642b249b483384021743
MD5 6d42688ed6f39c24e1ac6c9cc3cf79cd
BLAKE2b-256 e8da8912e887f5eeeb8f44f50f1aac4c16852644b558b1b29846b14463f9b739

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01d9209d6fed20226af0d29b95c5e253a1907b61f1a00153187ac5412f1df9b6
MD5 23ffb493089d9b958517620ae1e23807
BLAKE2b-256 6396deded55ce54c5e6a2b7dbb790ab9bf7b5be8c7e8cb22e2355108bd8723cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 de996e58b77d3e6eeee1a209ce93f424a5f021aa8b2879df6d35eda601acc831
MD5 d649c6c348a267af391119c782c7608d
BLAKE2b-256 66f9442d13050fb55c2e4cc81369df349d60f2da8dde84ffb7e330385c576bc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0721f05b4f10cc7d49d91be65524a3bc6e6a5d88be054cdca05dff487a022091
MD5 b8de1de985898fd702a13e70d9fb12ab
BLAKE2b-256 d3a34790fd4d6322aeb935e2222d193407902b2651dbb5eae7817f2f8eb2043e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55e2cec52e2c78d94277d4c990badd3ce97f5746d05029e63d81fb2433bc9684
MD5 1db942c13c332ac0aa48d677a8b45d7a
BLAKE2b-256 1ed2bf4c39c283a75a8893d060344b690d5ff13ddd7e65849a74a264bec9a4ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a4f6b05598d0d29e8851b7668786b7cf105c98887c7ca36dac94c61321d16cb1
MD5 34cb36d7b63f487c3e6fd0e2e287a868
BLAKE2b-256 0ff84b9d64b57bf35e3e99a8e578ed1cbdcdf926816f36bf5e5b53d7ea4c65bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 586a93993769873c389d38bd9a70c51e228e734e8f78742d959610509635b86b
MD5 e78014bd0e452548e87e441432e51bf6
BLAKE2b-256 9e709f619e86af674b8055adb29e6ad95f1d2bdec02b9d7b654d01fb479ea9ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.17.1-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.1-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.1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 cd8043ac6d81b3f3f0dff22247866292c819e0d5e54a5a3ad2223f86f88dbd97
MD5 d7d27d68922ff4926ee3a0f14ef7bc6a
BLAKE2b-256 030d4c2263a05e95dc11a5c9fad78ab9ac5f76a1f5aaabb545a39c6d34d2a07b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 3ca89347a01ddac94727578369feacc0969d9fc033b2c17ff7919121ee441e2f
MD5 e90ee92417a6b505a4a5624ae8e68a65
BLAKE2b-256 e0f68c1c11bbf7cfa901c7c9621bcdcbb4bf432c5f20dce27e76a3ea29f0307a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.17.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 175.2 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3d6ccaebaa3b2ff2e59d11d70c64e97ba572120162a00c25d6f8e5e0c1004b9a
MD5 9b03bfd8fdf3c038217b12802d3b578c
BLAKE2b-256 fb4985a39cef2de6948364d25f5e1452119e6a70ddb5a910eeac717f02c5eabf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.17.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 169.2 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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a550b3963960012ff3266bdb3079abf4cc3f6363201e63a649d5d3cd44fe52cd
MD5 f10db8fd4e922339058c13892c037c44
BLAKE2b-256 e9b6981a84e9d0653e2d5fc205ba2b895d80c8e3bdb7138995f4c04b7cce8bd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61378863a5e9410fa6e816364442b9d35cccf94fa83e3f67997d0ff57d901d0e
MD5 cfc5f998169c5a8f8ba43cc9780c3dec
BLAKE2b-256 ffefb9bd9b412865c08e6769044cdda6e0a3db4827c88a4a2612e42e68714ca2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b296b67bf880085daa11ee496d385b941a3bf3e3d5691db7178d21f18f56f9b
MD5 d12e533f7d6b8642b8ce752309a4e4bd
BLAKE2b-256 0916d34f26cd4dad48671c7441fcf370076911dd9e7edcb3e5264e11da7fce7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a140db8866a45b1ce40d91164ff48d2722ffc3b2a39bfdb412bd770c7ea88be3
MD5 485f940b03ac105f6643bfca3e2e2628
BLAKE2b-256 e95bff56d55fde9991c332e6df2ac1c560be6dd7e2302ab51180a185cfad830d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71f7ec7a1b54c1f84d6f8fd4e1110a66b3d1b936dbb17cda2927442621fc1e3d
MD5 0cad1fe5b3819c8f72531bbc9a164248
BLAKE2b-256 c2786f65d3105a0588b38cdcf338397bcb63c2d88d3581698a316def47e4445e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d45f93f362d39f63ba14bbd9e4e1dd89fbed4de9bbef6bb428a379bd86571da2
MD5 0c7689ae79c1defe3e8732f5a1e776cc
BLAKE2b-256 021e2abb7d9e3062a7889142818e2a2ae758a54a1c3b6cf8a86877e051b3d1dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7a93b046552730b843e9d8784691cf8b0b3d5430dd9d053ade33383ccb2574ff
MD5 3eef31780381d50ce5f28508141e0019
BLAKE2b-256 6045ba376e0a69eb4a0bb2dfba1ad2bafc2e6729971d480701cc778719a4205d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4cdcb565ac4d8a005833e7c389867977e19670f1bee6ee9f8811872b86225274
MD5 7d6ca525b25114e80562342785026cf8
BLAKE2b-256 2cdd013786821eca0808282b82bb1e66a18a6b70061e1ce2f77fc9be06b88a36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66ce3e84067261b2721dde6539427f4eb9286289769332ff07c859a661f87694
MD5 9f3fb9e99f57f075ea7c1afbc3862a3b
BLAKE2b-256 c09d6506e6c4ca08300ad7415c3b76e29bd36b491dec818ea58d9e8bf88031d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d0d847fb9b46b5c208f3b8d5ca6082a4ac819ec2ffe36de3548c489e8fa551bd
MD5 29291ff56cac2c30abe4e6d0a5ed32b1
BLAKE2b-256 2000c6753d6f2dbcd9d78436e291534b5d81f42c1b50c4d3224ddf231095fde2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4f04ba62482858a975d1d38cbb5ade181faae59e8ddc1499eacc9b6b6def3115
MD5 89d6ce023af47ec7adb36096c56491dc
BLAKE2b-256 2760d48897c1bb6562c4b68a90c998f89d4eb8996d01193c930b3f6f04258619

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.17.1-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.1-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.1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 7558c84414785d6ea54a186a3c68267eb8f33e2a0d792698bd9fa50d62150f77
MD5 7e0396ad720c6117c17912731ee4f07c
BLAKE2b-256 9782a509ef8b3c24b48099a4fba00f9e1b3f38417e0a7bda39cefd4b1e841388

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 1c8124c9b91fa8353d79e4e7bd44ed0f2ae683990c01818199668f7579e236ab
MD5 6624af22fde747cdd3148c4b5df12abc
BLAKE2b-256 92053d846d5423571574a1e6f4bbe16f57f755671d0f334931f893e8a734bbaa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.17.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 178.7 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 297c6be22e0dd0f7d372845b171ffee5657581759982413c0a5b01b900c5f592
MD5 411e0b990a3dc1f57b8d5f5026f09b2b
BLAKE2b-256 f41fc76187e05e0fdbb3f9fef7436f86326d0f0aa25b42192cddc011997b31a7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.17.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 172.4 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 738b8fc2062c3dc17f1624af4aa8763bec4172cf295b13ffa3dfad3ddbdb4e0e
MD5 dec88b1632ce81ed5e781cbfa9119f5c
BLAKE2b-256 7f73ef0bb542317ac03fc4e0e7e2804e316d84fee115c6a3ed41a6efa954b59b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e22cf24db33a123c8e47a86fe766c770c83dedc6d1196c1172cbba0a0959cac0
MD5 fd84e0be52d009dea2cc64eb2e78f7b8
BLAKE2b-256 a1fc18154e589f0c84f85b99aee9406fdf904468190a4f4fe462d86bd85ab960

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7f3deaca1ba34f48da053884c1255c360fb123c4a9bc3815c05a7a8093e0bda5
MD5 f9700e36c2b4aea48af726abaa28c6fd
BLAKE2b-256 f790947976eeaf48aa6109100af1796931b8c684caf680d0fb4d2498e951c059

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 304497d360e9ca5b019254bb25a2ee886b66de884aa08a949c8812fe5bf5327f
MD5 4194cf422b35b3679ee8dffbd6053274
BLAKE2b-256 04574bc764249cc0d40568fb3a82a72b41cedf958a169710415148e365f45e1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a9e8c876a5d6247572e7f8eace39b4de9a91cd1b026e24552ec631c08c91394
MD5 90374f6e2d35734613cbfd8129452557
BLAKE2b-256 7f86f8e62e055f14b45b6faa784008a038407f9274d36acc41d39b4b8b0f00a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3404d50a60ec74642fd590b9d639d98770022f4b1ff8a4055b3c70742c85f096
MD5 ae0ca08f258d27064cffb914d5ee554b
BLAKE2b-256 e68d70d8f78830ca23f40d15f95795a863e7c052f5c1dff2e4a23f51c53dfbdc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b94f1185f64d1fd2fa99ffc0b8264ee5980a862010daf1edf430412044f2aa53
MD5 2e7cc6644df358cba3caf586924b7c2d
BLAKE2b-256 6b6d8e26ef16da28274d3ddfe0812a7155dc8d48d0891abd84f2b1a3f905a54a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f63557d6e9fe10cb25c1d3e73dbf7cd18c1b1620349b6be6b51ea25fcadf3a1e
MD5 03f1fdd64e0909145b6b2c827e642c48
BLAKE2b-256 42eb7057247670b903194c2739f98a0f4455f0d4e8cfa13466dde2d1fdba7216

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0cb9661bc0883e9278bc2436514298ace83121d14296cc672b2c44d37441cd0
MD5 59c22c431c816d48d761fdd94631ef3c
BLAKE2b-256 234f9cfd9f64ceab2b6aeff77cd238b0033baa6364832cc9715d13a8cd49e5ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 601d03cce6b8ec3734025c7dca9ab276df1ab649ca7b13d76ea03824724f5108
MD5 6b3742ab908483ac68008524f778d57c
BLAKE2b-256 aff262ab19bc908ef6cdb2a07966a408cf8bc2cf981cd7c3c99dc34f443b5ced

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d9aa5fccd372580d455ab769a60326c789c46027d3d58ff2a895dbc492200b0d
MD5 010932d64dc1558295e8f908b27c4c5e
BLAKE2b-256 eb4a88413c15de714a76e342321d65ff82937a2bdcc35e2987c9462433025101

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.17.1-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.1-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.1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 e698d0ffccf167ece87c864667ab69724685af9e171fc51e57038c9711fd4e0a
MD5 758a41e3224334f56942b6e4aa31dad6
BLAKE2b-256 f87461cc613cf7c94131b2d1d596c4f2c0ec22c804b2852cc740288a1519743f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.17.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 179.1 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f2e91fef913d654f643ba7e4f92347002aff0debeb84cccaf474912756b43a9c
MD5 e50c6f1d805ad9cd35262ad23be2e104
BLAKE2b-256 f224d8b81080e0f21e29fe75545ea318985acb3e079c0aabedceded7424ae6c2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for uuid_utils-0.17.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5e1b7aec35ee0dbb3875a3f151866f3362ef30ae5e7f95a42adf8779d305bb47
MD5 c2c9eea726ccd81d9d3dcf8a97ec2976
BLAKE2b-256 d2c679d7c1ed7a872a1047df30650a8194865273e2f5b757c0e84f683ea640e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4edcb1c9e52805a7619d68f8f673544a3df09425e2426bcdc30d17a2bb152e0
MD5 2854cf23fe502acbcaa383169c0e0656
BLAKE2b-256 c432a7d045221b08858fbdc66321f482b68017f421abdf085b82282bd3019d29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dfd27f383ecf1559cc55b6ec39c850744abee56c0549b15149e20a8aa6b881f3
MD5 8cb9d97542150599eb06b17fe4dad7a5
BLAKE2b-256 0f16a89f6b38daef94ee8a1261f7941d7d9d2f70f2eb2b2157445c0e70a81302

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 548b33dddedefe5cd02e4ac421b7b3b3ad5411bdbd7f5b5f792d9e7ba288d894
MD5 df2ccfef6321bc45974f9731060932fd
BLAKE2b-256 66b73d011f832aad5fc2eaf6999f88a4fedbb0eee0fca6b94223e95b7c986a01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6e71cff84184aa6071fdcc45e288e0f45d663a4cf5608fb9091b68c34bfd959
MD5 b7d64b6e130df0b805603e1096a679e5
BLAKE2b-256 f1a2ab5082c9d0b1d2b8b32ac2556cb7b1d5c73d316fe59934bf2b3545134844

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66f695b0950a630ce5f287d6d17acd1523e0e071863596bed73a7d11b8334a28
MD5 ed13487e7fea0f9fe28b274da7963bd9
BLAKE2b-256 766b516183ba5f7d35521edf8cfaea9b1192da8b262587faa8106d1f73ab0eb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5141fc9cfc98d3802d6f1c2451e6822bf1d474c9beba7cba0a6fee7643dee46f
MD5 4b5832f8f64faf4581d5122e1713a9b4
BLAKE2b-256 0dc6e6eb694ffa73d627ec7c4c750f2e83506c6671898c2cbc5a3592f4366f7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c3aae364b97bed00db4549784ab5ba769a7b88d0ceea87adb833501624fe16ed
MD5 b0de1939a059d54ee9f31546632b214c
BLAKE2b-256 f0cda8c8c93aa533173a2078496b58ade7233fcca124fb77c68fd9053fe59f76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87b3cccf71cbe4c1fe29eb007005cde2f86fda2549a5f412e27ee8579a264d27
MD5 994330e5713b6eb17cf651152dfc0802
BLAKE2b-256 c3f7f085bedf0601e7a3aca57748059f96ae118c41a4615cfc0142f291bde481

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b7db3135ee5c1e9bbfd4d11cb2e3f2b4c26c37cb1f7b7d52407dbe94dddaec7e
MD5 2bc974532cb8315433b0808565794834
BLAKE2b-256 61cf656e7426b31c9cdf9205797a80f3d0458da061df91f083e4490504e0428a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.17.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee8dbeb24fa796f091658d5692c0e00f0d524db25e1f7a816933e80b6cd3883c
MD5 188a54d799788233fe971713e10a8de1
BLAKE2b-256 9e8da367d0eefe3730763ba22bf4b966a94106328cfd01980844c7fb8a6a7082

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.17.1-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.1-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.1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 53abc29fcfa4cdbf53988409f297fce76a8de6ad292115f5e48ff5e9e3606d79
MD5 28efc88c07c6a05ce965e30e7127db00
BLAKE2b-256 dbafbfe6e67693597361a65daaa37029c489b24e3302c2f7a676e8e5b0eb20ac

See more details on using hashes here.

Provenance

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

1.0.0

94 files

This release

0.17.1 This release

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