Skip to main content

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

Project description

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

Project details


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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.12+ x86-64

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

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

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

uuid_utils-1.0.0a1-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (567.3 kB view details)

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

uuid_utils-1.0.0a1-cp314-cp314-win_arm64.whl (173.8 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

uuid_utils-1.0.0a1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (451.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

uuid_utils-1.0.0a1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (334.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

uuid_utils-1.0.0a1-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-1.0.0a1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (451.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

File metadata

  • Download URL: uuid_utils-1.0.0a1.tar.gz
  • Upload date:
  • Size: 44.1 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.0a1.tar.gz
Algorithm Hash digest
SHA256 11b5eff169defc7c926ed8bb1d7e06600bcea8ce4fcc087bb837c4723225c33f
MD5 fd29664487b1c99a17706922bf6aee65
BLAKE2b-256 bacdeacb6bef9c3151caad20a8cf845109ecb71fa7425a94bd0df5d0d2a60467

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a591d468c47ce0150fc36de2a3aed1bc8b97b86f9106ea2a030ce0dc2ae5ade0
MD5 037cb56cf24c1f549be59045e0b820f0
BLAKE2b-256 fac7f131abd70e493050bc75d02f8cd5977a9d98ab21025d912843b0abf033db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b031cabc948a309cb8a7a3403ea1c84aeaaf162189bccad7d2fe30c4c4d80c0a
MD5 f6d2029386331e8bc7126ca114ff9eac
BLAKE2b-256 d794eb09990030b6de8d8642efb6ee20b904474ee71d8c3984cfe7952429e04e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 edb0fbd712d986552c59bc059953c3c4b5de218b5a0fa3758d92489136818ffe
MD5 5a64d6834ae961d550a6b8072569359c
BLAKE2b-256 629fc60a14768676593e2a3be47a4e50b821e6765e8f2917a6004f48badfa754

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bf104dc582bc24f9438ef03feb44508b9d4b6fdf9fca7ac27f681678a33e02e3
MD5 211ab9ebe62eafcf98ee3e4afc0de194
BLAKE2b-256 e955008676384f618a10c8ce789ebe411e6e3832a3775c6583c579c40ce8db91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5519088c6c5807609638606fb74ac4cf0ab46ee59ebbd09917cc566c86ea24cd
MD5 9438b4ecd84e80fab8d604a8170f8b0b
BLAKE2b-256 b6bf8cdf30f6031203272be473429728ba5f4001a5484ff76560ef4aa371ccb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ae2669ad1b0197b6449a530a83cec2904b5d404ebe969bf3dc7480f3089f8739
MD5 1472cf2225e7e1d0d142e0349b47de36
BLAKE2b-256 10facdde6be33360727e07bd5a5f0f50c64858ba672187b01a3e477131692a28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9cf72626cc25f07d702889e2df482be162504a6d4509971648feda53a293aafe
MD5 f7b65acd2b971e50296efda2aa74f68e
BLAKE2b-256 672e5036d4a83604032426bbbe5b511835c22a95e6c9d91b1e696987e31b9209

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a1-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.0a1-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.0a1-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 c617e2b17a50e0701c5019555e1e856e139a56e529ee090a8e13070ae48874f6
MD5 d05b9776e49e6e3af6f8985acef46ad0
BLAKE2b-256 165b973a54419e26ef7174e021b645aea048059339b818515e65e8924cf4e354

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 14fa71f359349f15a24c70555aabdcaf40ef80656693d9152c82a16c2d01dada
MD5 3554f8b61ad7a845b35ab068feb520d2
BLAKE2b-256 d79fbe055e86f9caec7211c77fa678a31f475c64c155bc9ed1da73b8b975e33c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 66f1d9e260fadda90f42b1dd709fa8261ebb782c72633821a4d9df8fe607b786
MD5 faf1318b1024278d716eb7b52b64f639
BLAKE2b-256 6dc3ec47d98eec98b6f32ef71114e2437bcafcc7b46b333006c34948ae72d041

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-1.0.0a1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 169.4 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.0a1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6805af69b7bd5dc5fbdcca0de18c7eb88dfa63c567682b81861a415aeec79a95
MD5 25c567ec26c87ea085c4ffa3e8e1767e
BLAKE2b-256 4a81f2f805417615ff4a41d10799cc834e625791f32a22671613f501cad1246b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f0bb5c73ebdf96bed6a111a81b9d1ca4729474d7becffc7e62120ba058ef2f6
MD5 e0f4de9feee3f00609123a0f0eb8af55
BLAKE2b-256 a73c40cd37ca755f4727485067c43d4049d6de17854a8ba16107ed277d90efcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3f409af473e22b3706941b8aeaa24ddc2257f083c5d5746b989cac16a5a0ed64
MD5 0251f68ea7981c52282c684efab4cb1b
BLAKE2b-256 772a012f8995160702738597feecf5604782c623fd581e16014c156dfca1247e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cd66c6eca031b7ec74fa6c91c220380374a43d52fa392a0a7d6e2fff373968bf
MD5 e9d37fe1a7f004033a0c5adc3c11f6e5
BLAKE2b-256 822eccbc6cddde167083361b2c640ca098cbcf18fb27e6ca9d4fb383a5015297

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66bc5117d2ffad842445a45cc36417a993cdfb501f6f4ec8f5e15ebc13385e27
MD5 e84e41f1fc46157ab7cdd0556c60cabf
BLAKE2b-256 30d3bf4afaa057bd06f13545ee80307c8a694a0bc46e309e10455bbdbff3100c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 827c84d281242c4e281b8f894f57d423d5e0ee77b44ce502b05fa572c2b5c523
MD5 0730cec6f3e3fe5629f6f7ed83fc2ccc
BLAKE2b-256 ac35cf43609588de7d86f330ae4ddce9ce53f62b8a7d2d54692a5fedf2357206

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bd98f1dac387fee36d1ad5ed83ac01d514df5ca53d540c4e05cd9ee53befc406
MD5 313b4178a7067bc949b7a8c42659ac54
BLAKE2b-256 fcfa17b7dcc9c8c7a84dd8277943106efd9dc54ff0fa1e61dd0ff66854476c92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eab4fac31e8011d0bfd10691c824abcae5851018673976ddecbffd4ba2e3899d
MD5 9b19a563444909882de2a89a1f210808
BLAKE2b-256 6e125fd21c3c21ea7b11fbf41a35b5de7c2b3eedf3b68705b439bbe8681a6c0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3653e1e1b3772af9037f4f74af1a074b0407f704eccf856ba815d9daee890a0a
MD5 fc68450358bc5d9f11df3d13b56ca982
BLAKE2b-256 6d24889070d58a3a64b4183ba8ab247a24882e71014c82385fae65df131b75ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1b6acbc7f62b4f30a1df9cb92986ec35348a052212bc9a7cf136b34f735fb28d
MD5 b6af6ba494063a17c63b5ebc9e02cf0c
BLAKE2b-256 b8da16a72981c8d7caa62186d16bfb0b659ca136b9bacaf0636fbb52f160e94b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a13d87bd2143f57f4700fe1386202c4de46e7906e6197c0719434c90bc74e381
MD5 4a0a9fbb2f56a90212356c0ca39520bf
BLAKE2b-256 12cdba2d0410d69834d82a2280520911a5cf68c7070742ad21046170f9ca1ef1

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a1-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.0a1-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.0a1-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 4d6a6e5dcf434b554f66f42acde35d756b97e402ebb7f6fb6d3e816fba2bb288
MD5 87c62d946859d4ad2db15ffffe9975fa
BLAKE2b-256 429ad48bd522691b3ba153084e0784a220424317f056624a28eb78323459ada3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2a9c31ac755e60d7f65a7bf5cdce48dfe988fb932b31eec7625b0aa94a3c8a28
MD5 6149e589bba75b4b230da6b7b0fdb1cd
BLAKE2b-256 a8a5fa4ed8649a97ea663d3e6133ef1efd463bb7868fba0d712c9e74b5aacbe5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 908ecb90e0d00898a081e47ab8995e73388dac4381ad5792de49ca2783ffb7d8
MD5 868adcb64deacebad8ac7a598411f8c6
BLAKE2b-256 e7e4a8e186c2d7d945c0c9e2634e71e85b48eeae716b4898da8cfc7a72632624

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 264303c19ee60c61207c8e2748a667f2dce9e7adf03be28444f0166655ec1819
MD5 7c5d297f31a30244e288b50ed6f7fdaf
BLAKE2b-256 47423ffc84fa1d9a720063525fec7f9b1d5a8d7f9e9c293988925c2c6bedbaa0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d64b7aab170011c163912601a98d9d6bb59784d5d3094affcc45b47c85dae996
MD5 745d0d9292bf9c17a9aa9e64f91e6478
BLAKE2b-256 944efe1a4308b4803f8d2d12e5e341becbcb126d6de7db11171e9ff8d1806ea9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b8ffd3bc728d901228ad0e38dfaa6f7f3d5cd20c5f2243eb1f1c5dc5741937d4
MD5 f61f8ac39ce46e8aba87f9fda742adbe
BLAKE2b-256 c9078bb55a76d422a675d7a0837bb4bbd90d398fed5d272a64921d077a469e0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 844bbb6f2350340eb282871c1ba064189eed2e9867ed39d100346500809aa9bb
MD5 a0b73ce2ab7deb31ae7979f593d7c948
BLAKE2b-256 438aa51cf1699c56bf866a17b3387d507b38aaa9c47337dfed28e8a9e9d419c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc2e91dec5ebe31d7b9ba404bbd8b137b800f461b3be7164cd4ac77d28f6fd98
MD5 74602287fa879f855bb73c3c28d2432b
BLAKE2b-256 3b672d36699ba65d45d572421ed7d5cb9039ab693d3daab985d2473937000316

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d00aaa28e7de50731679c8452bab73dd42ef6272259894134ce327b184db75b0
MD5 5f9623a9aa7b5e666a6904870e5613d6
BLAKE2b-256 5945ab7ba8da54802dcdad3656812fac3c01d75064a7938bf27bb8139d2d6788

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dce57bc1ff1bfa79943d01ea8fdadb19fbf429de9eb980b3d53fc8848a8816ae
MD5 aaa4d56068fa363a76e3500ee17fd387
BLAKE2b-256 15c53d373351c31b1de492be02d07506d0aa853640bc098bd7f5248f811c5c65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 28586ddaa0ac4aa0ca34c13cf403e307ada18895a30c723de1f611548cbfa347
MD5 5f4415651c0a487b45e1b31758306883
BLAKE2b-256 5a4e6c0f85aa27a5bec98973b78cf42d7de790c5bd7e0c62904affa7459fae5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0fd59a6da3062488e394bffc835f76f6cbb1ab657c92a518e1e5dc8bf509cbdd
MD5 156d380a1ee2328f1f13186be9b1bda9
BLAKE2b-256 bfc6b50087c993dade07b30f8e82a758f4b0d68c163ed72f9a79e33b6cda2b9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cb64b46e24b3e50626cc8af94f52e9f5554e938ed82241843c80582915b39005
MD5 e1bd6cfc6024f198869d2efc62ca3786
BLAKE2b-256 3ac249df424ad0a1c97d01c8ed4abc37e3bc3cd12346c1301e3c09d46ac7a108

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 21df0e7482d4feda099dd3afff83aa20292f51af5253f5a758414aad63d09ee9
MD5 c515ba33bf0f023a433a2fb6f1212262
BLAKE2b-256 1d226e59fb8c58b680ef47b3b000a72b9d81377f00f6bd1bdbbd6ca3f2b6bad2

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a1-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.0a1-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.0a1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 a32ecaba88d5518899ccad3953d9efedf8d07d973b8f34a0872f0af8af114271
MD5 e19b3ec9ab8bd45b9566d1c920780daf
BLAKE2b-256 65b576b7f4207c8151282158d96d4cbe8304ed584c12f6c602c981e47c9792f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 31f6e92bd70efefdce039008729823a8f071eb3328aeb4110b2399c41f5980a1
MD5 dbe35b53b9e70fc34a9067801422e2e8
BLAKE2b-256 3434353f2424c657b33a98be4871b693e73113e9a74708de108ecb842aa41bdc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 450852accb8f292d9dc6c7897007a3ec4897e687670d25d30c777dd581425ac7
MD5 c97de7c9e07544f1c790bfc01c7e6127
BLAKE2b-256 870f202cd66315b5a72b75df37dc947e9cd8e7c681134094bbb82b9fa6863cef

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-1.0.0a1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 166.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-1.0.0a1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ae0ac1949b18e1e2f49238b294c9d6bf9b899be85d887dc0d27bc2e2bb71a816
MD5 be76256ecf4065f721405d98ca519d6e
BLAKE2b-256 70143e281fbebff6944c5570b9bff37c5bcb6f133ebe9c1aeafc4ae420e0834c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 00b565fdae73cfb7d06c1cab84362513b5b0d3321708c085837a399b21bd7721
MD5 5e76c2f26c8fe1cfa34df4d5a6603323
BLAKE2b-256 a196ff27da53584e43a75b9888131e074230e7a94cda65f77f0eeabb16376265

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1920a8c971b18fdaf82573afd7143282eac4e01258fdc89afe9e3df2cd504dc5
MD5 c6477142696b33eb9622d75ae8c8fee8
BLAKE2b-256 1895404121de6dbff6c81cd1f8cd4b2806b8a6e3699210865e7a03145fc59fb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 24d913262cbb1c4d689dfd97a55eb2eba5073b51887bef792e751c94ce5537a0
MD5 c4a47feb7e6019de401c46522efecd79
BLAKE2b-256 99406196b1ff13d58a2f39f876e34de59be8abc44e88fcf01ec6e9af763a04ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8c9fe8e9eb5b15117cba5974f19850b012ae5da3c6764e44b90e189297ff237d
MD5 e5fe87a639f0b3d2f928dc9700a7022e
BLAKE2b-256 a61e3f8717adcc92f620107d73ef349cfdc2fa69725c68d7220e4c125ac98aec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b60f06dbbb66b0145722e0a1d67e01d99fd27b876942ef0f000f6edbcea47b2e
MD5 d64aded5085b444b1859f6f481b54ab8
BLAKE2b-256 0d5e75489493c8f4cfd23004b8f60220719b8f9e670145ed67e0311d32932d56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9bb19465b2832056f1f69691a0e2a3a817c670692a85e36fb1e6b5fe225a1bf7
MD5 fa07da202dbaffc2241e231d8d1887fa
BLAKE2b-256 c0acb5dd3eb08351fbd0a9edd5c53c66a3d3fabdfbcf9fd1592cac99ccef93d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0593f1196be8adbd55250ca49f8051c67afda795dc0455caae2e41f24005027d
MD5 889e1a07e151c38acff9460ee31f465d
BLAKE2b-256 379cc4dea09a56d65ff3ab1e90665236c3580da59cb55f441405ba11d39b0692

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b089265aaed657c3ae9a27924ffc8ce3c90ff80f9d3bfc9acfa9a6097a8f09a7
MD5 33395100d77aa9db055459029eb2ff31
BLAKE2b-256 f4e7a1a53391c2326aed2da20d8999892d1d52e85902e3f03ef76fdc51ec78be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25c6bdf0ed368784b20ce18b866e800c99b1eaab60e0c70c18c58ee8ff59ef72
MD5 f367f3ec22588a57daba75b72939b47b
BLAKE2b-256 26e133beaceec78080b93d20e85bc46e44af1e010c8f0bbb1088d4681c66217f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 07b2521824e0dce3cd7d7d61ca14d16dbc4088e763bcba812e28c060a7caf145
MD5 53f4407fc29fd20f29c594a44271e8cb
BLAKE2b-256 3cd21d1971aa87faa02c2978be436ca728d1a2499d53797ae65158ce3f390495

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ff4f6b46d4ed4a7d4cef9b500781fa155bbdb89fc5f238e515d7e427d5c99c64
MD5 43852b1134ad793a89c42a7c6df48e47
BLAKE2b-256 2d772c4e4a849307e161dfe04f1303669bb1cc3c5627e06fbeddce2814889bde

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a1-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.0a1-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.0a1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 02edd4106b85079bcd3fb614032074dc4553011ffd03d15abd0270456967c0f4
MD5 2ba00c6f8e76d4da57732bcd9ba7fa43
BLAKE2b-256 0d748b4faafb371ebbe0fd959b45beee2af680721c965bfe7a2d3204faf85148

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a1b34f512aafffe32ed7f730a923754f1896af44bfc04234e53d3ed25c6092fa
MD5 c8f7e28a86b5d7824d4a327b93851eb2
BLAKE2b-256 a8ee3a80a303bd4dbd1c403fc30a89ed27a1e9658e10a9d84d26c38c971fbc2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dadf4f43d01e11af3b41d4674dcbe951ca14de8b158e6899c6738191f2b2a43f
MD5 463cd4ee52edee1e7e8b386f58f228a3
BLAKE2b-256 195ae2a6e7096446803d7cb8b3b4f3dfdc80b3853903caa4a1fe1fd64a3b5927

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for uuid_utils-1.0.0a1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1bd62596237a60b0a955094e36293f2cec915f387f70a6e01b798e2de4e5d1aa
MD5 016be8bf6c75f26a55fb1df99e3d17e2
BLAKE2b-256 f56c49ff278007a6acf421597274800ba6c6d1af818dc208d6bf53eb85406466

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ba2d4359ef15e55a0445316270553fbd7078ce7ddba5afd47133ae17dac1ce2
MD5 997b4d38dfc7df10c9cb2a024649e3aa
BLAKE2b-256 503fb66ca76fcf8f0a945c03f8bf8a71f5bacf5a8721af8e5d065a866525037c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e43065d05ea94c3a33b7c90cf66461428aab5a7fb02b5bf148693d9b779885c4
MD5 3f3827a8fc962db504d0ce94bd310656
BLAKE2b-256 161e6b8ff55c603077195d47e4b61e6058d549b7dd2f8a9a49255b319a6d63ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 78d81f02e68f44f3a28a31f0cd3f25c0e61d296e244ffa979c80ee59bcb6c829
MD5 c21e74761005f6edf5ed68bdfd0f528a
BLAKE2b-256 64238cae6a8fd23b015d5c4720c86c0ceed733f97f4cf117c64862cb7c264706

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ea67cbd6c547c0aff8bb08a99cba015a0ee79ca1f84339c9d2ddc22a54be7a9
MD5 9339405424c0324c930a50031b35cf7c
BLAKE2b-256 f9caa2f2217e16138a23f62b15e1a954f635abf1bc91964b7ca44bc64d319a47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d75dbbbf633d07538b811eacbace50bf47a02e661a6cca526f7d24f61c0f948f
MD5 93c0859d085484660745c1a16883e835
BLAKE2b-256 97492ad69f70c2ec8b7e23d3302cd3ed848df47fd1ea3275e70ccc0193f6226a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bb90ff1cdcf9cb0c29c6ad544fb616597201f948c516d0c03f98715bc8a55a0c
MD5 24abf42fa3ba0e31eaf88f26ec35cf3b
BLAKE2b-256 d02574f0cdf10a2626164e7b657d306a56073ac8ae49e7d8b834f35747dc98b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a5da56263ac2de3f089e5a5b5ce891902cd3c68e04a629c6a535ff0c88763c1
MD5 44232bdaa4bea58c4e837eee4c39fdff
BLAKE2b-256 b380028b3f97b47ec520ffe72b0ad4a107c78aa8c10f759ce532c2c97dba2144

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8c5bf5161ef2965937b8164e9c07c0fc3efe52e09b2a94e564035beb6de2a41
MD5 8c3c024d97b7279491d99cdfba99c84f
BLAKE2b-256 0291d945a91512c46f037f96a722ee1c953732d17e0dafe1668367ac44579426

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 21fbef358cb8d472b19f7d7b7216aaae68f63d515beb0c4155b277ca30fc60ad
MD5 331cfa75f19a5bbc81ac23f1a8b713a1
BLAKE2b-256 dc12adc64f17efd9298f028622e79675ef18cd2e2902216c9fba5c1f3afbfd87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c5b5f31e656c3e982c424a7b99a6deaf962c1f2f70ce7d7b62f98a032c7a2ed1
MD5 f7812ad4587499f3c5498d8620b1b06a
BLAKE2b-256 fd8a960aace3174c82357a94686c215c27e654fb15f418c7f5e006b22aa51b0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a1-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.0a1-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.0a1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f21770c41a453826c113973d6eeec5a04f0f795b85b0b445c4abde2b88da8a04
MD5 6c39ab682515049e52fe7718acf31344
BLAKE2b-256 cf930a056ce94af86e4df9fb79028f6062882577cb05114e25861ec4c4529def

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 70f1eda1a3805f93cc00eaf13970143197346b310a8c7db28dfa60bb5b1f5f44
MD5 56c5efb0d4d385c5b1a148d0ee5a810b
BLAKE2b-256 4da1847152e56b74d29e5b3af1cce79d9851b5ca2897c564f0869e82eac1d66c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5e5da02ce02d9ccb4832c10be406ccda37522b211fbfdf89a984b0a99fd2cce6
MD5 13e30dd42682ded8341fde53db240fb2
BLAKE2b-256 7dd46b7c4678f8e721f3708a9d1b2955051ef8441293d6156713b3cbc282c82a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-1.0.0a1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 169.7 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.0a1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8d2e0a938c6509af0e61e9760ac1c0c18a028c08211e7d0f09acd691c761352a
MD5 907e8bd6708f491df96cae297ecec241
BLAKE2b-256 9bee11ee0072be1bd6fb3c8ce8d372661dfdc3821e94bf5b5741c054c990d93f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42ee21f04c79f62f156f6836e902a346e1352d922a115075eb8fd65b8fa11b41
MD5 c4ff2f9adb3bc675ac8f562704ac776c
BLAKE2b-256 0310ce472262ae66f75b3d58d734f82d6f5816712ba7e2c05dbe5e35b980c24b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e6d88e7773f2da6add010040c75d1c7efb7573c884336dbc858f3d02a48404b1
MD5 ac72bc07480cd0f99b56cac329d28344
BLAKE2b-256 c24510de8c6275de3db372a3f97f5496af15839c48ec0f386b586e260c830af5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d163f9e8043d49b03ff3da73aa38150f1f1a4e383abd5e48cd37f1fff098e96
MD5 5bfc0226626a77471dbb6c18cee03702
BLAKE2b-256 23bfc7dc8da66023a59bff247eec007b97da14b905767920eb76f3ec9fd2967f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 503361b78642632ea60d7d35b2d4acae1c4f2de9a3f03cc6cac811f1a1dae849
MD5 bc43da1f2f7a931a0699409048b79b22
BLAKE2b-256 4513d64a5383619387d4f61b88c8ba0104df9685fd975978adcbf58ecee3eb88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c45ce856b1efdabc9518fad6a70d8d1f6ced3a5f698381febe91124eb39c307e
MD5 8c0301da99d49fce6cc6ac7305c51ee3
BLAKE2b-256 e11b6f7174e58b8d51a4f4cfe02378a8e385c799698edad6e5715121a71d1844

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 16ed2a0a3a54158fa82836645d12b4b3e51b677c9ab654d14dcd5394403e96c1
MD5 aa307f04027cc1f3697dad169ceef896
BLAKE2b-256 ee06148bb3e118f12bf081d9208fefbcc99c121fc820ca7348d32ca798ad3b4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6ab5a84bc0cec26f69f9aab2e8ae055948727bdaa3f477d7492a0da33b1f8a3e
MD5 d9f781be5ea021968c94121986ea82a2
BLAKE2b-256 ec4193b3ff8c71a321ba750c86668576c2574a7d5b6f0dae58efe493226d17d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d12e505fb33fe92d223956a5d3a774ea62518a04cdcbf2946938c930b76bc10f
MD5 8d31775e5f8ce51ab5c3effc64dd57a8
BLAKE2b-256 5d322ade702a28f7c63e28db9af097b55005024cb53b168c4fc92d3cdd858022

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 33b0a5e393432aa3074aeb43da3bbdd2b9569b52312cdd14b74ff00887a2130a
MD5 8bbaab22321d9c770ddfbc294f19badc
BLAKE2b-256 87173eb935a659362e8420403dade1c14c2c3c11dc387483cd45b05c9c824915

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 25260c52b17148e1c57e8d88695498a28f7e1f62d90d4d750967a9f0389a691b
MD5 9559e405313ecd17b7770b373d160ace
BLAKE2b-256 c4d33988a7176f3a341224ef1b8adb7b0d66db8a857a439e15101f46a4d9b585

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-1.0.0a1-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.0a1-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.0a1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 5bc4e96eb3bbcbe2a5fcedda2586cd926331f690f7793a691d662172eab47781
MD5 e0cd46b36d347261c890842d5a00d628
BLAKE2b-256 8a17546360f39815040cd214715306d642b37e5beeba1a844283fe1691035b33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 866a3631ef64f770cf646a3deed2671770af28efeb766f0bce9baca1980ffdb1
MD5 44ba1b4e83a165c52e1f2635705fea48
BLAKE2b-256 05e873cee18de2153d31ba97ca434c7ba07fb98a4f8915c7b38d7b8e907b3c59

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-1.0.0a1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 169.7 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.0a1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ad0b317b6cce8ae8a8f479bf0541c1b6079cd92209100a24858e4b77f929f7c2
MD5 2422ee0ebe0fcb7f7c3d31e4b081b822
BLAKE2b-256 7503faf0a7847a59e42896d5c858bed4d827b4c03ebe3fe2e8ab7cc6a58922fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e3efe9ce5eb13ada444aaa5ca23d4ab403b91e7f7d1bbdec40ce500e03db8a8
MD5 8446f0131b3e6c2e957671c43528fc16
BLAKE2b-256 61d6659eb8327220d34b360e83deb22d0ec6abf93cff0091ba9779862e141ac7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f5db85b64c0aa5ef28bcfbb0cc4af347f8801309f285d1ddbe591ea6f30f5f50
MD5 72e6170a9e24ae40035e28d43cb36a03
BLAKE2b-256 7029cd25b7357215fb2b10873089dd6c3eaea27493ce368ff84337a876d2d3a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 44731f3ac2dd05b6be94e8cf1cc75f5e1bedfe41181c32bc018431be4d9be554
MD5 fd229fc98366af2c6f4d35552adc2a7e
BLAKE2b-256 e6c1654eee5614981c7c48fcf946ea84b85a90e1838ad1534b176a78932bde4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1e126db20218f225b1488d46d92b0af653b70325d006435ef7b1d7bbc9c7c47
MD5 e65425a55a9db3e480ca2c1cdb5f29e4
BLAKE2b-256 3fbe86ae8bc633794f7ee98f271fda3a11d5b5c0e54ab6cc5a6a4058f68954a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b7f2273b870151bfc85f6ba773652a3422c12e937f77e1d82f35fc285a2f2c4
MD5 5808f97037e6430de3b82b6d777b5ce1
BLAKE2b-256 deb6c1334cb716f1bf218ee4dfab2bd2cadad1d020d0597003e6ccbd78da3fd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1aea608e45f1f945fd758e792b9fdc5d917dcca29590f02ca9566bab01766e97
MD5 3b8a8ac4f06504ed184948e4d74912aa
BLAKE2b-256 7288fbc4469d3b7a513fb35aa91f645ac6ed8efe9f9ddbd436a7ebfd03975c97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ee961afa397e1859fd03425c0c55663fddcd275831237ec6248cc751a03a3bf6
MD5 dbd0183fc1ceab512911823b4151b959
BLAKE2b-256 af3f1d5ec907ae977d371593077a40757f490e7f78134bdc24eb17b050269ebf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a1ddddba5cc1093a80a846dacba2c526d7555ec9fbae156bf0af2922274833ae
MD5 1eea2f1387c81a2de7135b498179d1ff
BLAKE2b-256 c97940292d1c2dbd9a5c62f8a37f36c0cf66f305591113d26b4a55b97a5b7343

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5c2ad28c6d1708e80e661cbdcd9c9adb44334a957f1727218018841ffaaa0f26
MD5 d2aed562870e80e81fd102cf2b14cbc6
BLAKE2b-256 f870c29564b8b23dd9c06b4e8f91be1119e62f5ce6b420afd733f712f7c19c42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-1.0.0a1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fe6f056bef3aa5499cebc50d1e9449fb46f5e3bc9938763e46dd571e3c0b4fd6
MD5 24a4d0ce3f87f50690939c494a575743
BLAKE2b-256 1855b081dc5525cf375c1fec9a63c66b9f4bcf4617af898fb62c76f5e5fc0579

See more details on using hashes here.

Provenance

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

See more details on using hashes here.

Provenance

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