Skip to main content
Pre-release

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

Python UUID Utils

Package version PyPI - Downloads Supported Python versions CodSpeed


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

Available UUID versions:

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

Installation

Using pip:

pip install uuid-utils

or, using conda:

conda install -c conda-forge uuid-utils

Example

>>> import uuid_utils as uuid

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

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

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

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

Compatibility with Python UUID

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

>>> import uuid_utils.compat as uuid

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

Benchmarks

Benchmarks

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

How to develop locally

make build
make test

Or:

maturin develop --release

Download files

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

Source Distribution

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

Uploaded Source

Built Distributions

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

uuid_utils-1.0.0rc1-pp311-pypy311_pp73-win_amd64.whl (179.8 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.12+ x86-64

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

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

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

uuid_utils-1.0.0rc1-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (565.4 kB view details)

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

uuid_utils-1.0.0rc1-cp314-cp314-win_arm64.whl (176.6 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14macOS 10.12+ x86-64

uuid_utils-1.0.0rc1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (564.0 kB view details)

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

uuid_utils-1.0.0rc1-cp313-cp313-win_arm64.whl (175.2 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 10.12+ x86-64

uuid_utils-1.0.0rc1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (559.3 kB view details)

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

uuid_utils-1.0.0rc1-cp312-cp312-win_arm64.whl (174.5 kB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 10.12+ x86-64

uuid_utils-1.0.0rc1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (558.1 kB view details)

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

uuid_utils-1.0.0rc1-cp311-cp311-win_arm64.whl (178.9 kB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

uuid_utils-1.0.0rc1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (445.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

uuid_utils-1.0.0rc1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (333.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 10.12+ x86-64

uuid_utils-1.0.0rc1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (565.5 kB view details)

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

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 10.12+ x86-64

uuid_utils-1.0.0rc1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (565.5 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for uuid_utils-1.0.0rc1.tar.gz
Algorithm Hash digest
SHA256 9818e2f4588dbd79945e735cd1cb22d1c021ce915f6a794d02b92f90f4e4ab85
MD5 611dbcc8fa2ee09c19a3bba27974d1e0
BLAKE2b-256 008f92211450d0706602d0eacad66500b0273ebc7e9295c7d9a616f1e9e9d329

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 85fa64873b90da6f47218a078ad79688b1b5bdfcec2381261a0d71fe73fab56d
MD5 d5fcbc7ad6b32efcc9b5db2913b601a0
BLAKE2b-256 24d2cc2e79027ec8d9be612aefdaffc346e67d243605b1bbe3f37d3c47e97bad

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 edb2e26f5568b0143283694dc5e0d2647d245cb131f83fa21ee42e9452cd3c22
MD5 444710ba2e82602d18dc8afe9d1c268f
BLAKE2b-256 555a4b287464077acba4972762fd449a1400d2efac0b08217c466d361c076f15

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6bf3991e16c5d4476e09bf4b7bd1fcd6372dc9ad0ddb5205983bfb356c415194
MD5 e8302bdfedc8a6217c3433d6a960b114
BLAKE2b-256 0cdf13ca0e07f3bd580fcb2fe7252dcfae708d0bae27dca2a8e3107fc055c82f

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f01b56679da54e9d61215bf48dcde58bc8e8baed5ed81a05bd84f34d0d536eb8
MD5 6e6e394e10338551d3396212fe649899
BLAKE2b-256 5b8163e5b6eb6419029701b0ec10358c4681d0c56ed89535b3117dfffabbcb42

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce8d5b86100056a823854a14b8149c9f541e31e9d33a3059ab5142324a1665bb
MD5 02b33b9c0cfff9a1a9ecb59ea306a5b4
BLAKE2b-256 f604629deb3aee4a7a3a109ddf1fe3fa88942b376767b22cb33c4ce32bf5a4e3

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6acc7c8d96d6f851be666a1360f970e1786d23d2832de330758e557151dae6bf
MD5 a738ec3a684a47745f61dd78e192c167
BLAKE2b-256 ff63732ad6890e228cacfb83cc60a0f73dad48d3d31ef00087a4a68e94dba8d2

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 91743e5128634eea72d11be77d0f1429aeb6970cfc76a9c0317e647e1a4512c0
MD5 d5caab4f83ab21d882bbc4a9f571afee
BLAKE2b-256 fb8912e6eeb94dc8cd6e0a4217da3c233be571dc93bb994608b747e8c19e4161

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 71c894659d6a72598f41a261fafc34a05f7391793d5a84a8692ab7d0872fc0e2
MD5 19a8d32c914e2d6f1c60a90b7060bafa
BLAKE2b-256 0d9b09609530e99d0bd4ec51d320b21ae42864f9f4c5f4e95000c6ce8a5ce03f

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 2b3367c835bb2040f874769de8a9f9e7c6d500e155e20fd3dc67c7aa54ec7876
MD5 73e855a56eb2e7ddf1fa0a5c20025321
BLAKE2b-256 35478d0b5c0bfede4f2c48d59aa37e3ca8f1f0ac8400a3b2c4e9e65c86b0db35

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fafff83d1d5843527fd8aded9476ef01f300c5ba2d2f115a613c08fc087c638a
MD5 82a96e93fd516eb80c9a1d3e2911edf8
BLAKE2b-256 040b4cb9441dc3518ab8029c3f12cb1f3011bcf73a5e64469fc5794ff037bf02

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

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

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 885cb7f21f40313623e0bb5b3477b4d72ed005c66397d9cd6747aa7635ef10eb
MD5 c55804f904a9b34abcd47d5af5e82ca2
BLAKE2b-256 434cf2e0f7e815af324a9688d2c21b98e5f54d9e31d8d63a02054063419e88c1

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 35eac494c20a843161f3c2505337c699076364dc0c61b87212c2f4328ccd13b1
MD5 136c765e917ea315c3ff6db296f32ccf
BLAKE2b-256 757678dc89e46a2db8e9033c6801436426baa4cd953ff83d76c0c9bf40bb45b8

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bef18cfa313fd92cda984a938792f7bca01028f940a5e0888e3ea83a85b37c4b
MD5 824c2724ed651435d137030629e188c7
BLAKE2b-256 b3babc1da03350d7725025e3e9e8f6242dfbd9b09c63ae41fd18438c16354657

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2cadc3c8ec8766e1d06b593f04859a62c1a196b72da7aa612bca916207c278b7
MD5 f5cab542807609e06fa827cca09b7bac
BLAKE2b-256 b1409e818689fa0fa98c56ca52e9f0a6ae6422183fce6bd29286d57363719a19

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19bab9518e27d671dc1d934eb2ab948ff3bee1f5067705c539f6cda0b80f668b
MD5 62db54098c9c731546747653b9198c9b
BLAKE2b-256 ada336f3866debebd61fc4684ae90d37660a41dd39e5f3195d7220cce2491c40

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 325f9e9dcbea8b30943bae0948538d763669dd838ee050180c7c38e14d990c37
MD5 42cdd0f7b2ef354c3be40472c85a57b3
BLAKE2b-256 e88a7b1da80813763b610b3eeb950411e5462e1d5cccedf250fd919e402b873a

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ef99866d866fed8285a147db47ccb3d997f4f9b21000bec058a5675a73610040
MD5 27b7964d928a5e5c3a99aa300b229098
BLAKE2b-256 8b3dec8f9ca284ea1153c8b2e85fdadec41693fbba9fe9b7276958acf27818bc

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bec8abaf7da1a153bb8bf5d39b55e7cfe9d0a8de227ae4ac29c3b2cfbe6cd8f9
MD5 996c1d8bb8a15ae25460d806d6ba6d60
BLAKE2b-256 a86f0ebc41e4d6dc812ac8c2eb0d5a1c901c20486669ed575661deaed682521c

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2fbee2a8498c4c1bfaaa643ab16090272e749ab3bcd49118b4e0906a91f84d1f
MD5 d9f7395743bc9fe17403c5d2a81f0213
BLAKE2b-256 9e7d19ae52520827da2db3a7d11ca8919d9e27fd134229d0df6e99c214fe1256

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ff0d11a1ee99656fa23f1e219ef8a04d8710b8e8139f9604f47a940befabba9f
MD5 5e042385b8f663b17b93911ef0a7274b
BLAKE2b-256 ad986b850e7bbcf20b449fd6e933cf2af0dede076fddc5324497482117dfe6ff

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 865eec052d6fd7f0cfe9196434ad7140d227240361f116ab45f8bec9729c8ad3
MD5 b218f9277bd005dfd59a7816c98097d5
BLAKE2b-256 debbead0d053e8e12067d05f51155f62801e4b2e86473370d512d303b9897890

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 cf47f8054ec69d51e40a609a0d956869af3dcb386acb09b1e87bb06be333350a
MD5 dab6ac856b2e9250cf6e9de2d968cccf
BLAKE2b-256 923d95437dbb0f19d1fabc32560d8b391a1d47973782d6afc8644384a0224370

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e56e9d9cd14ab8b8a3f83d21b0fd6be70ab665ed885b8fb9f587f070f1f43ae1
MD5 b7b48fa788ef9a2de7d1295b5b832ca8
BLAKE2b-256 1a146e72ad821a2e9a93650826a6ef6738f2763af9bac9e0d4df94fa29304f97

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c389fe5f5b92d9e77201be264c5d36faeccdbf9e079a4f4d0cf0af867d4c00e9
MD5 ba7ee03d47547c64b10e115df9418ea9
BLAKE2b-256 9d6add496464891c029e8e4cd58934f61d98cecfbcebc0d860da64d553000f20

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

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

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 21e0f5845e59fe07cd485991093f82b75c6518a48467fd191bbd05694672f8c6
MD5 27f660350bd41d0778a667f95457774c
BLAKE2b-256 f0ddc4d49796185ec0f519c445260552ad7b5c4c08eee9f6f85e4f7f7450acf2

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-1.0.0rc1-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 1575f48effb7d94f9a3e0e21bd657b7f8a9edc932b7ca6c0b0d2e229597a3426
MD5 e1593b93166fa1456616c72d1a3ff2b8
BLAKE2b-256 09a0c4003bf64fabc832247abaf9b33e2ffb4ba67a36c0866b63869a9dc042e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0rc1-cp314-cp314-pyemscripten_2026_0_wasm32.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51b5576196bc9340f8c1d1dfc81388451f5e47b5a6f7712d11a21734dc27ff70
MD5 37d33eea71e3e7ca7ca7ae8b1507f654
BLAKE2b-256 f221eda165403a4d42770777453470d9c3eb8062569c5e57d3d1519d559b995a

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4cd9d87a31447f9db16857fb2132f629c45e3accb9277cd6ae6b6be49fb5746b
MD5 0a95133db7f5509d7f72c7a771f5a1ea
BLAKE2b-256 d6fb6e507dff08762170070d0ca338cb64baa742f07aa444af00482652bc2176

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf4da27468cd23f4795a8dead283c3b41b3592cef1e7ad96de4df13566c7e665
MD5 046360e17efe9a0e094be20f6a0d8a0e
BLAKE2b-256 bcfda44b3a20905e2f5d07a862fe364f61cc5060745ca9a6e72e24a96a36fdbe

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e42dd54c5daa8a7a76d3997ee863a53d2e7c595beda4a27f2dde8ea25886e89
MD5 b085646710c1927d759674f82185fcdd
BLAKE2b-256 156cb1fec88e187968686e07f585818fcd7763c34682defa89e1c9b782358a1c

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dbab22948ae96f4bc24814c0f39b02f74a068edd2d635d224cea06ed1a10578b
MD5 4e5b04d95269f8c4c1b9612af7b435d3
BLAKE2b-256 27ef9ed27cc4be3861b7edcb3e630dcc6a415c2cfd757cd77dcd3e5b020132c2

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d157afb50dc1707ac9060248f92fbd4feddf31a61be086d5bf76b09289feef4
MD5 c84babb873cc1ae98267d01a5fb7c1a7
BLAKE2b-256 c73373ca0567fb4e89237dd8b0af41c4d2cfa3163623505155c0d869bf5e98ad

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b153759715e0897758d4b7a2790d339a8a98f2ec96f34a1629aee3de40b78a68
MD5 e26347199e6a520c699663f0efdc91e9
BLAKE2b-256 ce754c48440fb775d5b3672ef3db619fc07a3598a42fa767a6a0f1f879b50bbc

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7aa1a31edd79b8edf287cb00d3280ed96a1510cb75ddfc1fff3c48542bf719e8
MD5 051018e810b2f624d398d2d2abeacee3
BLAKE2b-256 fc739f46ca9219e1e5077e2ed6a59dd3e038e2e5689f1725c2098f70c6c69f5c

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c14bd60466e9e8f725a66aff374522eafd601e35b4ca89902b055ee7af68738a
MD5 b2423c15066210e4d89c1069adbd4540
BLAKE2b-256 6f4fd5b310c4a1ca0cc33099b0cb5c66fa48dec36e03b22ac817fbd573099cb1

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3b1eefe78a0eaed87bcc9132a21371b860e2f3f2447865598a9a70f7f467ac99
MD5 51fc84a8a964ea037c207eb8415d2178
BLAKE2b-256 66b64e97e0ce9ff029137fa44f89eec645b836435b7eea5a9bfd833abe030143

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 2fcfc90a5b52a789455c2ebf5871e6f7cc2366fef788d95211b013c0502ef4da
MD5 9f5ae17d80b09134b4b52d7253ddc6bb
BLAKE2b-256 1c78f974ce00d94a118fec5f77fd3d88d5306c8b91c2c3f877497037c5e7de03

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9a3ab864a60418539c62ae9600bd7717963369a0353e55b6de1e4fca9cc1926c
MD5 4ccb77513e420d9fbefd166b687c9d4f
BLAKE2b-256 a9d5b5bc1d7fa36c28132524b73991941171fb456301668ab49863ed30338272

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 be025b2b48f8eb1152f66fde566d9c1e6cbad739682141ad42a6407af57c1692
MD5 3f11faf1036f6cb134bbfb2669b2b5a3
BLAKE2b-256 90ea6b71099ccee49f313fefbcef367563ba3c3f2c3cc4197536b221a88f6647

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

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

File hashes

Hashes for uuid_utils-1.0.0rc1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4136694dda51539e740145722038d5234549268e74c52bf05439b3b760936ee7
MD5 94dc210ffe94dbc4b55fac540d7bc063
BLAKE2b-256 c81110fe9b7b203182f5729eb72d60db639bb76e6d6f4b688806123e29838e4c

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 ea547479474182844d940486d37524e556ce53e2bc599ad14cdf50ea2ea53bd7
MD5 68717e23d5a35bf772abd0bc6f32c669
BLAKE2b-256 b08580b7b8e52c957781aa02abedc4e40fa9494d75113b88c3606bbf671e352a

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 672e8c88405e16d6dd3a0212015f96de8c2fe03293701f43713397204657bc10
MD5 dba5c218e6d1d46a1887f6c06ad767eb
BLAKE2b-256 a66ae8fd9862511748fd908e35f251170c9247dd6c51dcbcc6408816a6c2cfec

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce6bfbd336093ba3f6dbf3d6ff6039f0f08c32a40577b38f01b68a4990607086
MD5 8c33cef48223388e391fe29c3f207819
BLAKE2b-256 04946fcbaf389a2741855e211471d0a13c718abf77c995ff1a5f16b4d8baad3a

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a758fff264f606152f7263bd44611580912587cfb9c1f9cf72e03521954f7acc
MD5 f44a31b4d8f3b1956766a0ae7e27e71c
BLAKE2b-256 1b715875ecbf42b5f7675df6fed7bcd7d788852fa1d90b15a1241168324fd6ed

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4937904a4bc32714324d4864b2b44614b9e1bace05b1dc8c6112afa1ad4c8181
MD5 a7796ef419903ccac67b7e8bf0163bd1
BLAKE2b-256 680fb3f984ad81fd36ff0ad6be432580572c1422cb5564811649fbf83716633d

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97f11869ee7826b9ccf5feae005562723b29ecd72c75215a7733d4da0760a40c
MD5 8112ebbaf2bfc6bee4992403b86d7076
BLAKE2b-256 628f0e946b1f55c8d58c327a82d28d4281bfbed3465b206ff0c9f223f486bb9c

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 822b25952aa5e8f9538b1d56f177047ff862f1e57040bac0b8c520491b0a237c
MD5 1b86def94eff41d7cfd58fe435b97f35
BLAKE2b-256 2640c0e87154e43fbe59d5bf869090e4d37dbfeaaa7657ac21da715347a60208

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b1d3ae874d65af165e0ad96f265640b6b5128cf907426ce6d809c8cea4b2e7a0
MD5 43a48a9e176460563bc365c61223c73e
BLAKE2b-256 f5b74419d1f3382923c4c5dc1bd7f5f14572deaf8c06930556450d41b21dd0fc

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01768a3bed37d17ba30b6bd3a527730df3822cc5ee9d2da05a49bc143800ecab
MD5 6e044d85b1be5dc0cb600a70aaf7ea5d
BLAKE2b-256 70c7d8bfbd4c0e698dbb092eca8e593c49b7d32cf1797222dfdf190008c655f9

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7dfc161e55c6b3b225693b65b7e48b2e358fa3222aaa94cd1c9fc2f7b578c56f
MD5 e330d9d9dd93ba6e983a3e2c43f44a1a
BLAKE2b-256 6ce48ab769a2f9eded39364691b0e57f0ff6f0e167115fcde17371c44a508724

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6274fb9ec5782e6027f8422eff5492d94a8f8f352c14fc34da1a7ab29be62a06
MD5 d39dd9921068e3b03a296f74089364d9
BLAKE2b-256 12e4682d447e45655f037f8209c60e1088a40af4ec0f8965a61d82b084b93115

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 d281664047e2804ed1de846ca76959b74a2accfb0b3799eaf8813a8db37f3fc9
MD5 7dc27e043207761a9261367f4d68aad5
BLAKE2b-256 5c5cd6b6041c931f53d2003708c0995a467f34ca934acbb80d3bde0fa9f3c524

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 01caf640b9b4deed1b4f965416ad73b49ed350ab0cadfe5ba33d98067e55aef6
MD5 b62b8954d122b1fe2f129b0672a27e84
BLAKE2b-256 cd714e3ce47a1a10c210f8d583acd1992ee9aeea379e97b7aefdb6d5b4fa49c5

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1bf557610531deb873ca5434bb39b70da8283f315b0c145c483d6b588d0de0a2
MD5 9155b8f9c012514856bae6df23ea2421
BLAKE2b-256 803b64d456f285742da829e2d58bddf4e17cb725bda3b637e3338c0f497bf004

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

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

File hashes

Hashes for uuid_utils-1.0.0rc1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 112b18a75a879e21201b7e625430a7d3d2e586eae0fd6e48c55c3b3e7d903093
MD5 3a7263577e645a4008f71acb876932dd
BLAKE2b-256 a4cd3d3d7c3338f68a3fd09f18ffab81eae8a3e571322044a443bc6386980060

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abde95a02162c566014eba070f4dc564fb11d07a0396a473e9c809cf74b0fac2
MD5 d42a16c03e90314ec4d88326cd9ca044
BLAKE2b-256 7b1da50877103a151370ee2eb81f302bac15e9b9e31fcfd53949cbbcd9483ef2

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f86e323cdd6aa6a5b2527178fcbbe76d11a7b92eb6b14d431b9e014e9ce3ef8
MD5 86fad130d09550f1b26bcf0aa9935a95
BLAKE2b-256 af54c71dc09a361e6bccefbca565c4eec1b30475b5c21dd36d9e1c45227618e0

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b6072e66a526cefa6b935e583cd06ff85b792e9b03a09732ac0dcc2148e1b6ba
MD5 97cf7e129bc54fd04a881d7985f6dc9e
BLAKE2b-256 3738346a1c7b6d80fab850f0a96136add60494eb196f14ceb5b9d6fc5f754bae

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1600078aae1488d50bb66b9f32e8fb2c90740d773bbc79165eb559e70281536
MD5 cfaa8d64e4e211a9bf61e3a1dc2eb0ee
BLAKE2b-256 db328fc1f95f3803ec001464a855306c8ea77a0cf4243c8aaec0e5597034be8f

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd01997f95f516064521bd43670c271184ef8ce4b572df47efacdc9c01aa9300
MD5 c6f08ab4df92a4e761c52c96a6d9353d
BLAKE2b-256 549182768ad36bce01059f73bf06d3eaef74f411c208902ff636e332db2dc383

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d03eb6cd6c1fce1c5bf29212e8318cbcb25a5853fb64cf101bd930352b74907b
MD5 07509cf88a1856b5d8cf28de6d3ccb18
BLAKE2b-256 d951cc07ce45d31f5d1a15f0e7231d3e893a61134dcf225615a579c592049ba7

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 848724ecd47b6d45b02a0fb4bd0423adfdbcc167a0a9101374e3545dee4b396e
MD5 6c5422eb9bbe432521b384e66bcb82db
BLAKE2b-256 d581d57fc10328fe4c0a186ed8c0b88ba6d167138d1e8bb3acdc6b62e1379dfb

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 083f8f2f9845f567c513d0620d2c7ac133fae1f428a1dd46b28d5931e0e74df1
MD5 756054b6a3a5182fc29c9f3db66e89e6
BLAKE2b-256 1bc9277d3a5971198b5af9418e2358200284e5d2c94055a70a4dc52305c94af7

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 26f2354a85dc79e54e42eda39249294dbda1894eb1f2d8dc187c0601a6e812fb
MD5 e6dcc0cc583e11a7014a8677057a34c8
BLAKE2b-256 dbaa2b150c81772ccdd2ebf7a4a14d02c7ba18f250f3d52b80d5f9696a5656c9

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 188d2106b53d1a4a6bccc5d677b7cf0ee420bca2beaaf841b138e9ea452ce357
MD5 ee4cc869122a248f8958f47e04cd69da
BLAKE2b-256 be3af37263d825e648de7167dd399c4f05329602f757f58ea2d51f87092b3281

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 7e679e936a84cc06ce68e1aa4cae3112723b006ced95b028cf8b807d8d51791a
MD5 609b3f26b7921df1b92c14f9931f5f2f
BLAKE2b-256 17c47cbab2d99c0875678c3f0af65f9aa7a0b135557f0d396a15b6699b43c6af

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 7ca2afa8a0a7e88879315206275926099ce88808906141bf88101a6d6504a2fe
MD5 95e3d00aebcfb597815b14f66bf42979
BLAKE2b-256 e742c583c70fbef2120a7872a62b567d76d02387590105758321a6c55b0c7bd7

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fb81deae6e8b9e297208e497c2e15b98d83b0a35611f8a5a07ebc0fa9018ff71
MD5 5c21be1b4dca6615e2060616cfbeb0ac
BLAKE2b-256 a3a8e7d137d4c4dcccab32c9a969c68ac1d357f7ee1c9fedd1d2ceaaafc700bc

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

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

File hashes

Hashes for uuid_utils-1.0.0rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2a2a216372bb90d9d075f8b685aabf8ed1dddf6b96fc2c6c5ff5ce0485231b63
MD5 85c3638dccb3c45100aecbf109a85700
BLAKE2b-256 0f86dd2e2f89f75685888d9570e76360cde27c1a3c7ce41d251b71dafa48981e

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1bb1559c56df4b0d66b69220995a023d0d8dd194303eba18aefca8712e80c85e
MD5 51c2e09e336ff841bc8cfd58447bc28e
BLAKE2b-256 1ab9e93c43ebb122d01b2d40db0f1444caf2200ea76e1499665b6ba440555830

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c14df4396c754b5f15ec20de224b4f1edb5e070d12a235958ff9538e08a2717f
MD5 9adbdfcd9380aac54ab6769ef33234da
BLAKE2b-256 6d9492680e94e01c87381849aa9b9e45fdda7c43c299cfc34af8b2f4e89975bb

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 386b563bf53200084579e0b21f240cabaaedafdcf80b2bb03e25d8c8eb53f5cd
MD5 49dc482f1dd0a7e924c5833583994439
BLAKE2b-256 bb5894716f5647c4824b5e6ef4784af63f4c85feb90b3b05078ce7289036cdcc

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0c82d12b7379b0c7a5d476fdf6a44fe009a5f708a4191962857046e753484c77
MD5 13ba306a65564cd2c9ecde8482d3940d
BLAKE2b-256 1d20046f06bb9017cd89923b1a8948fe65df68ebfbb510b2c21db0a25b68bd45

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72e257c7fc3e0c5a5625edd7ab426552f09d12d43de7ef053bca33bb4eb9ed0f
MD5 5be337d41c766241d8d36ba8cd0bbe9c
BLAKE2b-256 f1777a44f2b1cbcad7770b4e5819c094a357486dec8ae08cd18dbf8c0102c1ba

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 201098cd5826a99406c894c55620d70f2f621036b188b91f8011ea8ee3c00fbc
MD5 f1a7a5bfc6bdc3dd0e3a36b38dfcaec5
BLAKE2b-256 7309d11c637cbc5dc040c8eb0c15de2115dcea6639b75e8d5533401d05ef6e21

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a869e7c79da0c953c64db7f4824040afc02a989aed3ce55081a179a7f438b62
MD5 9305de9d336c5efdb0e38e774fc65eb5
BLAKE2b-256 d7561c07ba281fd54d9d22b79644d30a030c7f4f60aee7e700c90ecfbea98ca3

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4f66eae086533fd70ca08630b3051c10c077a8f2679a5303df44c050b8ef638
MD5 5ed7b60f4945b0ce4f6400d7b2cd14ad
BLAKE2b-256 be043ee48a12a061ec1547e3d930c19166f10cc75b8cca81c64657446f5fd9ef

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 79cfafd2365be3cf35045879f700cfbe07cd49d9f425b8968667992e457d1903
MD5 729f9903578a2e6966ba2181de13b4c2
BLAKE2b-256 615c746b78fa1c663c5dc3a9e7334b2adc041a4e79d61edcef5163be044de807

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f10e3525abaaf3e4c2ada4a05181f2d97866376d471b922613536c18225ec15
MD5 58b2bf200e40ea808b0465369a6bfa48
BLAKE2b-256 9ef6a0edcf42fc581cca5656284e13bba2ef8a3ba3abec3d9da76aabe14326c4

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 de0a284c4eb7a6fe2217d1bc209a6f31ea1b3ad43925ffe750c1e8cdccfa5287
MD5 ba8064706225877f3c60959776f50901
BLAKE2b-256 87f45834f9d6b2cc5ad66aea6485eed9406de9a19387004186f3f9889e14e547

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1742f056d238198a93151feb06425251b7a21c842ecca24287f6b42f78fdfbc7
MD5 546424526cf728f4c2a6082cc632b783
BLAKE2b-256 82194f1cc1a265881cd5a0a6d7876a2de2940d85d1d3be1eb51a9c8ca87954f9

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

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

File hashes

Hashes for uuid_utils-1.0.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e6de713fe06baaa81b8070257117d37f68faa85bec794f4b0290453037e839d3
MD5 b057c0a7664fa521d1156a5a2344f0a9
BLAKE2b-256 6a0999dca4bebc33fbb003b932896f95ea17659d7546d159721759af692a294b

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6db91bad5dc7ce05fc92b13cee31e50dc9fc8a7b8245c6e02955aad174998411
MD5 2229aba4d2cad061d92c5660a72eaeb6
BLAKE2b-256 63067323b88c0a79376d66d2f1a35e5e22dbb31913dba4693bc9103fae92937a

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a7aebeee14c9b96639fd902e91abad677724d65f33e13dac9bc72a87b57251e
MD5 4b2febbf0c2af16eaaeecb09ee221037
BLAKE2b-256 d735bfc001c93a16a3cf3f3cb040cffe29703266b0ef14c06a29573d4bd7b110

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 52a4f93e6737a7335c8bb2748451eb8fc5d5b552ddd43cdd44e9a83f6762e6e1
MD5 52df1ef4c81e5e2f20b9381c8d5622fe
BLAKE2b-256 b6b963757902762b2cbb2cac59089a06d5673754aede2922f28cb5dae1902f9e

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4fcb46d2b966e720f356cdb05d7ad6bff68420a00a199082db90dd1422c628e2
MD5 f254338b087c01e7eedbf13dfbb5d796
BLAKE2b-256 06bbd24e1cef4b587814b1873362e97dea236b460096c10b49f8bd43cfbdb6d8

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fad7f074c781e66390c02eda8f717346b4d9d5594166ac0e490d556e7ea5266
MD5 db65b66b7282596d951ab777dccbca17
BLAKE2b-256 776a13d4c20806dd5b22dd38be9a6bf6c2c9e958483a21303ed16c44642c7e42

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 97de268928594a366e59e48a0845b1642e858c8b733bb5615a3f9c57605b1881
MD5 1b8f1dfe860e6aa95cb97539af48905b
BLAKE2b-256 2bb1bc9e17bbfd48f175d069ccce44e88dcf2600bc46d1159f808f02cd40c184

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 91ecae5e840e7e36df60f1583459096f17f2d82ec480210d48bdf8e54d1e8cc5
MD5 92b2c81cf5b9f6dc15545d330909f115
BLAKE2b-256 21db8fe521d2864314883b1663ce9f41108e64d6814dc21806a0a3326beb924b

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14b5b59ec937511dc6449b4c83a1da62442e59966120ac2a9f1a487e6e4be24f
MD5 61521b176fa1ce0982d2785c1b7eac24
BLAKE2b-256 e13d56d3a3aaeeb75a22540c012ca7ce6b5b92a5af47916b2f12db59077ccf44

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 da1f32f9f30d7da3d370982c422ac2d895cd7a118039b068b11e85cb9c36e8b4
MD5 5ebc2ea999395c4f5e2d0def2d58fb9c
BLAKE2b-256 65602bedf1a9386e5d71d80bc0c7a5d72289aa953078bec1ff7e90e7fdfcd0c6

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d94fe816e5a451ad18d1462527db93914012bfd4737e053a62387f03b8cea855
MD5 1909b67577b01a6843a132fc84254983
BLAKE2b-256 8bfb187391454db243a57d9cb6a79c45d9c610f371e6222fc2bcf3af0d3aa490

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0rc1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 12cff0f12a360bfe766382bd629f98a9ed4ebaf0eb2ade7524e7423fe5465ea8
MD5 71081461fb37fd45e2cc0f6087b11ce8
BLAKE2b-256 efba5cf7017d413d9965c14c31a554774f6e2f4d58c0f31ab3739bfb9cd1ad38

See more details on using hashes here.

Provenance

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