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

Uploaded Source

Built Distributions

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

uuid_utils-0.16.1-pp311-pypy311_pp73-win_amd64.whl (178.7 kB view details)

Uploaded PyPyWindows x86-64

uuid_utils-0.16.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (330.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

uuid_utils-0.16.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (453.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

uuid_utils-0.16.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (337.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

uuid_utils-0.16.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (332.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

uuid_utils-0.16.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (357.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

uuid_utils-0.16.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (291.5 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

uuid_utils-0.16.1-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (573.2 kB view details)

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

uuid_utils-0.16.1-cp314-cp314t-win_arm64.whl (174.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

uuid_utils-0.16.1-cp314-cp314t-win_amd64.whl (176.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

uuid_utils-0.16.1-cp314-cp314t-win32.whl (169.8 kB view details)

Uploaded CPython 3.14tWindows x86

uuid_utils-0.16.1-cp314-cp314t-musllinux_1_2_x86_64.whl (533.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

uuid_utils-0.16.1-cp314-cp314t-musllinux_1_2_i686.whl (569.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

uuid_utils-0.16.1-cp314-cp314t-musllinux_1_2_armv7l.whl (609.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

uuid_utils-0.16.1-cp314-cp314t-musllinux_1_2_aarch64.whl (503.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

uuid_utils-0.16.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

uuid_utils-0.16.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (449.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

uuid_utils-0.16.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (333.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

uuid_utils-0.16.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

uuid_utils-0.16.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (353.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

uuid_utils-0.16.1-cp314-cp314t-macosx_10_12_x86_64.whl (292.8 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

uuid_utils-0.16.1-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (570.2 kB view details)

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

uuid_utils-0.16.1-cp314-cp314-win_arm64.whl (174.5 kB view details)

Uploaded CPython 3.14Windows ARM64

uuid_utils-0.16.1-cp314-cp314-win_amd64.whl (175.9 kB view details)

Uploaded CPython 3.14Windows x86-64

uuid_utils-0.16.1-cp314-cp314-win32.whl (169.4 kB view details)

Uploaded CPython 3.14Windows x86

uuid_utils-0.16.1-cp314-cp314-musllinux_1_2_x86_64.whl (532.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

uuid_utils-0.16.1-cp314-cp314-musllinux_1_2_i686.whl (569.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

uuid_utils-0.16.1-cp314-cp314-musllinux_1_2_armv7l.whl (609.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

uuid_utils-0.16.1-cp314-cp314-musllinux_1_2_aarch64.whl (504.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

uuid_utils-0.16.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

uuid_utils-0.16.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (449.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

uuid_utils-0.16.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (333.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

uuid_utils-0.16.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

uuid_utils-0.16.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (352.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

uuid_utils-0.16.1-cp314-cp314-macosx_10_12_x86_64.whl (291.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

uuid_utils-0.16.1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (568.1 kB view details)

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

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

Uploaded CPython 3.13Windows ARM64

uuid_utils-0.16.1-cp313-cp313-win_amd64.whl (174.3 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

uuid_utils-0.16.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl (98.7 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

uuid_utils-0.16.1-cp313-cp313-musllinux_1_2_x86_64.whl (530.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

uuid_utils-0.16.1-cp313-cp313-musllinux_1_2_i686.whl (566.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

uuid_utils-0.16.1-cp313-cp313-musllinux_1_2_armv7l.whl (608.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

uuid_utils-0.16.1-cp313-cp313-musllinux_1_2_aarch64.whl (501.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

uuid_utils-0.16.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

uuid_utils-0.16.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (446.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

uuid_utils-0.16.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (332.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

uuid_utils-0.16.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (325.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

uuid_utils-0.16.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (349.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

uuid_utils-0.16.1-cp313-cp313-macosx_10_12_x86_64.whl (289.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

uuid_utils-0.16.1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (562.7 kB view details)

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

uuid_utils-0.16.1-cp312-cp312-win_arm64.whl (173.2 kB view details)

Uploaded CPython 3.12Windows ARM64

uuid_utils-0.16.1-cp312-cp312-win_amd64.whl (174.6 kB view details)

Uploaded CPython 3.12Windows x86-64

uuid_utils-0.16.1-cp312-cp312-win32.whl (167.3 kB view details)

Uploaded CPython 3.12Windows x86

uuid_utils-0.16.1-cp312-cp312-musllinux_1_2_x86_64.whl (530.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

uuid_utils-0.16.1-cp312-cp312-musllinux_1_2_i686.whl (566.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

uuid_utils-0.16.1-cp312-cp312-musllinux_1_2_armv7l.whl (607.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

uuid_utils-0.16.1-cp312-cp312-musllinux_1_2_aarch64.whl (501.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

uuid_utils-0.16.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

uuid_utils-0.16.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (446.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

uuid_utils-0.16.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (331.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

uuid_utils-0.16.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (325.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

uuid_utils-0.16.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (349.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

uuid_utils-0.16.1-cp312-cp312-macosx_10_12_x86_64.whl (289.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

uuid_utils-0.16.1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (562.7 kB view details)

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

uuid_utils-0.16.1-cp311-cp311-win_arm64.whl (176.6 kB view details)

Uploaded CPython 3.11Windows ARM64

uuid_utils-0.16.1-cp311-cp311-win_amd64.whl (177.0 kB view details)

Uploaded CPython 3.11Windows x86-64

uuid_utils-0.16.1-cp311-cp311-win32.whl (170.2 kB view details)

Uploaded CPython 3.11Windows x86

uuid_utils-0.16.1-cp311-cp311-musllinux_1_2_x86_64.whl (535.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

uuid_utils-0.16.1-cp311-cp311-musllinux_1_2_i686.whl (571.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

uuid_utils-0.16.1-cp311-cp311-musllinux_1_2_armv7l.whl (611.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

uuid_utils-0.16.1-cp311-cp311-musllinux_1_2_aarch64.whl (506.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

uuid_utils-0.16.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (329.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

uuid_utils-0.16.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (453.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

uuid_utils-0.16.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (336.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

uuid_utils-0.16.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (330.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

uuid_utils-0.16.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (356.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

uuid_utils-0.16.1-cp311-cp311-macosx_10_12_x86_64.whl (289.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

uuid_utils-0.16.1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (570.3 kB view details)

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

uuid_utils-0.16.1-cp310-cp310-win_amd64.whl (177.0 kB view details)

Uploaded CPython 3.10Windows x86-64

uuid_utils-0.16.1-cp310-cp310-win32.whl (170.2 kB view details)

Uploaded CPython 3.10Windows x86

uuid_utils-0.16.1-cp310-cp310-musllinux_1_2_x86_64.whl (536.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

uuid_utils-0.16.1-cp310-cp310-musllinux_1_2_i686.whl (571.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

uuid_utils-0.16.1-cp310-cp310-musllinux_1_2_armv7l.whl (611.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

uuid_utils-0.16.1-cp310-cp310-musllinux_1_2_aarch64.whl (506.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

uuid_utils-0.16.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (329.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

uuid_utils-0.16.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (453.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

uuid_utils-0.16.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (336.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

uuid_utils-0.16.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (330.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

uuid_utils-0.16.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (356.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

uuid_utils-0.16.1-cp310-cp310-macosx_10_12_x86_64.whl (290.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

uuid_utils-0.16.1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (570.7 kB view details)

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

File details

Details for the file uuid_utils-0.16.1.tar.gz.

File metadata

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

File hashes

Hashes for uuid_utils-0.16.1.tar.gz
Algorithm Hash digest
SHA256 60add5671aaf99cb2fe03359d9f04da27443eadd03ce523e3c64635acd3123fb
MD5 cc87e7ef9e0035d323bf410d25a0e3b7
BLAKE2b-256 6f8a4ef2cd407871a21f948ad447a2754294a4fbe0fdb6cc96f4575490ae8df0

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c509fa21729f9400eaea60d7891e6b20ec9193799794e1f0acfad5324fb7d9ee
MD5 c478c6f4e533e6d9abbc01d450f798e6
BLAKE2b-256 d31ddf986ff2ace560581fa9ef242c72f913fc00e33942e0b5c96ad63c982f4c

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-0.16.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec1e7c073113f80137c12f76003b8100c2b8509c8462eb4bde9f4d9ead4ff372
MD5 779c47398aead00b5ba2cd6def047980
BLAKE2b-256 7db2ae6694b800250bcba1b991d3789b38240df99cebfdb22f4f3fb0b6813702

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-0.16.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 85fb3d570e0fb939c480a932e7e7abea88f45d5e9dd1175ea52382d8a6db0106
MD5 b9dab7745c7be04d362278d2c82683c0
BLAKE2b-256 cb2ecc15fc357ef524ee6534652fa2009ac2dd111738a5a12d8cf2ec1c1fd93d

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-0.16.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6abcd34ef51ff5ede64c565fc19bca662b529990edf22172fa15f7e7a7598085
MD5 65fea7a81f46686ed3d14315aaf8c8bd
BLAKE2b-256 3476d5271c9782e2bd24a203118a2fd3f16606fa24d2499f255870f8b08da744

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-0.16.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f666ec673f6722de62619dbfc5fa4ff4518674caba8a2bb0e5a99d720b9d9af
MD5 28f757fa8527589521acd031062a629f
BLAKE2b-256 dfa48c0d354a3dcd2a9c6c092aa030a05d89cd140e53cc46e4b8aeee27921ce7

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-0.16.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 65b41989f392087b78c1bc5bf2edc79cff7d277a1284d60cb1c901b6c52ba3fe
MD5 dd99f823492489e1bd9a0a60753f21d2
BLAKE2b-256 aed3683d1f3154ec1cce704bdef61ed3a5ea36c2afe63f4a0b4eff719aacbbed

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4f97514417941797014c4a29280be571586a8e29b6e0e467a13c9738e124247a
MD5 c0f6dc6547a3fc1a142112fb21e80814
BLAKE2b-256 9711a410b13c2260ddf8cdd46f28fc123fb6e595b794ef18909c7eecdec25a4d

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-0.16.1-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 67c7381a5673d8227dbe205f130b425af9f47dafd844e6fe65be0cd7c0ad4c32
MD5 c921c5af316eab9eabaf8916994a2b66
BLAKE2b-256 8ec7b9d7328b44a1c38b88e70ca9d81460885e1e5c29a06aed01f3cda91b7999

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 702559aad80d8be2ff31a425004654153b2d7ed9448dceea32cf7e83ecc5e403
MD5 7e30a85a11aa45f9ccb90d834c4d8b54
BLAKE2b-256 ae863b2c2369de084276f31af6e4c26d41a88d48b842305a8fd999fb7a1a6b78

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8f29c7afeff321567b47cd5ce26560bef2528f317f398f127ac5d1c3c8b864f7
MD5 d38f86120bd5722596c9dc6dd4cc4e4c
BLAKE2b-256 7f084c0deed2973b4069a888407f1eeec1f0e7a9792ebb033f995f239129caa9

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: uuid_utils-0.16.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 169.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-0.16.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 f330f1ab05ad26a6bdd4717136c2a4e417b853688ceb40b1a537130cf542cf0c
MD5 08350fbf02a729734b444912187f1b17
BLAKE2b-256 a7bc08199e799f2d2f29c6d7266d6484aa4ca92830e2839e24013dba652c9c5f

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5480507adc72cda50a4d923c68c7f82f39e7833a92379298743efdb084646bda
MD5 fb6fd28262c066c9aff951563c6eea7d
BLAKE2b-256 b20ab4c45682b4fcf69304c2069491b11819637d4bc56d3af8fb061042b0689c

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 684efe2e5980a516f369d393b87d30ddfcc1d30ab9d50d47881d86b719f07e30
MD5 cbad415abb23313cd18a64a86da0b78c
BLAKE2b-256 366b9f9265911697a27fa0436ca9eca41a65907b0f74ca56240fad9d3d235248

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a99383f696d5f8b3621a8d5f8501e8760539276f05ae341b26b842b414f25c28
MD5 6012818f16349526ae8f607aec11aa27
BLAKE2b-256 0508a70888d1eb780bb20b7236482bbcd89b734bb261a5ae9301b4c1579b29b6

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c0bedc59f321b299ff6626ef76c163e4731614066103708c0158054b7fee184
MD5 68432374a096fbc107dc92896fea1356
BLAKE2b-256 00b83ba75dc9bc5c0dae3bb590ff8cff661077c2fd79b81163c56dc0ed0090eb

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79b42065d01244c04c92ba252e6cf877edf845cf5a55ed7d5a14e1ad3f3efee3
MD5 ea60c7ef46866dafef20a62f4fb333c6
BLAKE2b-256 8845347f0f28a0f2a6c7b078c50624838b5060fce62ad0c512750cba18bd3745

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 43e981840285825ece6a861c600b3e0da93575a67aac20fcf77d185e615a6ef6
MD5 dbb35ddfd5b48aee8cbdd55c68b3573b
BLAKE2b-256 7ad464b5fa6f42da85d8f4cf2d838c152ff9eb2b5e14d24e3784fb3836fd7ae5

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ca3ab4579e7335b1e7cf0be5a889cd2f9561150377e88264663235ed94f0c44
MD5 5702618efb97a6c6d40b781ec6596fca
BLAKE2b-256 4e9072feb2f35deeebbbb87342943e1041290133f46594c37351e9fda4104486

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d41154865431e6e9b3bf28c8ecead4af3653f24029f64561dc0968537ebd890c
MD5 af349c10d7d89bb77721ce480141eaf4
BLAKE2b-256 9eb0718e9df18b6214b64d063b652ff5801001783942a8527ccac28dabd81ecf

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d6c492464bccfab7872bbd6a7257841f70259bf9eb16f98e1b78648ed40ea2dc
MD5 41fb1f52fba5dc6858a7c2e522ba8952
BLAKE2b-256 7932ef685e83e4560d4be94878691853142e3c100a571c5fcd6e9af029ae8bc7

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 856507775e45660a00e603622108ad07be666ea2f0c333c51d8d857c490d25e7
MD5 ad2f9af30e7421ba088407fb8d67eaa4
BLAKE2b-256 f21869b97093bfb26281d8ac539186af343ec9ab7a43bf2e45871d5e5c3ff9f5

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 a60cec7b6b0a8fa6048f386b50fa3741ec31e4a4c64682d9d4a6cc809381d655
MD5 6a5bd846d52f70cb1d1607d9844583b9
BLAKE2b-256 826c8599d326903aa36f6df377af5704f4c8dd09f91b63dbc5af629ad970516f

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: uuid_utils-0.16.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 174.5 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 793ce3c40cb6690de63ba5859ba1a7d324dd317368a6d941a9a069cc3121f80e
MD5 a09b764c18771c3ecfba4c76a62a0d63
BLAKE2b-256 978be92640d2dd21da3a5f719af234ecf3595a9eb4594f8e7561fd625c91f7ac

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8c29a69b1710716ef356e3e4adf557f122381cf0622bd8034900f33f3621ad10
MD5 ef0c1028dd2bb052934d060ebd2249e6
BLAKE2b-256 8ec7e2934ccb5a81e7ca01aa76a747aadafaf011f209b5c2aacb9226ac1b6b17

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3823a2aa06b912ff119d2ed1da19f549ffb2b0ac3187560d1afd5d5e0f905e21
MD5 33e888ac99536319519190f57fcba20f
BLAKE2b-256 efa824e10e7a2d8da2b74fff7dae4fc3f05ce57908008a8cbc4362843b4e75e2

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3474a0aa88a59451bfe1053e59c342ce9c57efaca864d26106ffe40f1d18ad2e
MD5 7e3e10653c01f8c6b3a0e54bd412ab4c
BLAKE2b-256 32d7c4501cb4fb09b7cf31cef630def234bbd07b89e69828e53777b0e2322c74

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e13d6f28174ff47cc2c956d1b1ced15ecb41b485dc567f0868c242fef767d6ab
MD5 87abb6a5f27ed823a64abfbde1f7cc74
BLAKE2b-256 cf64902551df2ff562212e80d11055789749e3bc015f63418291047fe255d978

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1168f364da715143e58c1cf3f0533fc62be18cb08d89ff934faa0b3911b07f4b
MD5 2561bc303d358003fa53fed2369e8b0d
BLAKE2b-256 5593fe2afc29b32af5a6bc1f362785f5be161cf98a823b5a4e3b46a7a1c8f859

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f74c53f01aa5a0d5f69d44f9c18b4ae676b9456ff914340c7c37032547c36553
MD5 c558dbb038a3203e2409d710e5be4ff0
BLAKE2b-256 903cde5e5d26866cf6da46399a74f07c60f8a79a9366a1391e084f1edc5caf2d

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e1f5958466456ba330273320baa9a1e78a0773f3c4af22bfdcbf3ea49b77277
MD5 e954a0100747db108bb6cb9d8f2405be
BLAKE2b-256 90f2f3ee2c3b08eceb2e1718d2d5f31f4968fb807444f6e28ec5b2d257b009e5

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec209a454806b34e2d6fd41706d62a77c2f671192388369f65947b50f8dce14b
MD5 6cde453208c4d3ee4b12b6003a633a68
BLAKE2b-256 4e1f24feb9df2298982ae58eb750e3a2836170149292a7d80d30c7c4e2c9863c

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 554379de42217d21fa4cb141877df317d015bc75e6f80cc86d87054dd8c63aa2
MD5 f480e9f42e69874c93e88b0a00f7b28e
BLAKE2b-256 ccc0bdd42425146679e3d62236b29c4a59ae5c774a2c57c7ee4cc32f9dfa0725

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4e72deb0c4fc48ffceec4b5776460734ccfdd26cdc4f466e6b525db528cf3c9
MD5 29af17c592df120e6dee0390454ed660
BLAKE2b-256 e1ad3a84dac53f45d6f5e9eb7bd5732ebd30cc32194e972ed19cab4842cd7737

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1bc891f047c29e4e5947942fa386eab642fed082bccb932e4b1f29fb98c760f5
MD5 a7b6d18bcb6bfdba71f25146eef2a424
BLAKE2b-256 295871334bae33eec0730abbf5c5bd021757b9766d26724744c635c73915d2d9

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 647f53c992ae2799924c870065f2615a0e1e3dd1394273b7b64de1d965ffe251
MD5 c3cd5fc29eafa1a0bc28884cf2ee3726
BLAKE2b-256 0411bb14b73b42e733945b015ef6374676e6c50ebe26f5a506440087a8357f4e

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f3fa8c13516ecb3f8fdc6d454f2aa82412ea155071d003ef592522f7248eff2e
MD5 6d5f4b83e97229c0e127b725fa795b6c
BLAKE2b-256 2ec52cfe257f5e3d988234bb476cb5bffaf4b58ed7955b9547bef1fab9c6ee07

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: uuid_utils-0.16.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 173.2 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for uuid_utils-0.16.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5915ed4face0439d566360db0040aa91236be8f1d717dffd92e312da52f14434
MD5 d8d395babf53a11284470a31764567df
BLAKE2b-256 bf7fb000e716d77ab1a275bfaf16cc58e97ac6bfc69a7df41d11797800ed6e3f

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for uuid_utils-0.16.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4702353d3ca02d36db089af40ab963a0b7231c496f5012433e8deda1027a4d6b
MD5 1061c31bbb5f8da5a9e120164eea4514
BLAKE2b-256 1502589d2b5a2fbc75e8a6cda982b42455bae8e49ea8d849dce5e24c044a764b

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for uuid_utils-0.16.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 717696c17f1d15f577bcf90464163d39f7b36d8925b3cbbd044032855c59050b
MD5 f6d0566b38d64f5b7678268f3d54799c
BLAKE2b-256 05afb09772d65dc09d4123766f3048992c644820fc647af90635b913c7f746b3

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 c8188ffd368ab005833e51b304b0f5f2967fa97bb10b01a4c91ab2ea01d4f33c
MD5 5a2d12eb60da774a3c5f23e35e7df119
BLAKE2b-256 16d4a66fc1d1d20df8d164f6821a132457c91dab26596486db04f0cbc191100b

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 327ec607b6386c99c50486bd0f2a7d0c5996e6085764a923425327f3fa8c8787
MD5 654c75a29194669405058d057c02438f
BLAKE2b-256 aa450339e76cacff0d69a384813e41a38d5bc6dbf69a20ce9b453d803d527cba

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 07a9c972f7e22e3a937671415cc006999ebe6e243051bf8f22e553e2a089bcc5
MD5 341f1dd9f0f1dd2b6453cc8c3f0022e0
BLAKE2b-256 f0e386cde5a431df2c7a0f58e4399d277d591c5bc841e107de7f989ae380808d

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1f547598a5afc1456768a6b7eb2952e9db936d730fdf2b3e60740d4417e1eecd
MD5 9a571c60300882ed6232c634a3a24347
BLAKE2b-256 0a4677f97e71718b4fe8b167da2316205cc07c47b44547683bb6609adf0ee82e

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c95a339679edca5908b0769c404f103ab4c39b20eb424059b1219709d75d56b
MD5 07b0efd38bd50083c8290a640e3b2227
BLAKE2b-256 8cb03c41dc45c2695080f8d92f6cea9faf1935bfb2d0ceddbe77036aa5f5decb

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2be8a39895ddc1f4b1814c7f08178755e77e53197f609232f19ef0798bcb68bf
MD5 ca00b1976adedc318f769edf5666dcda
BLAKE2b-256 da7fd9f9881fc980acc2db6c7b51afb29e674ba9375d96eedb1b3ad9f14680c5

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c6cc68b3e08164b09bdcec302fd597584739dc45e701b2a0473fcf2406ae5ba
MD5 859d94a0379c8145e484a2b69d91312e
BLAKE2b-256 cab55cbb166d77554f4d0aaa2c728014e4011f58509ecf4d0bf62272abc8b650

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2dd909678ee21a77d21c81b394c99f9a40ec11ec8b60a7074f1b01a765e70b97
MD5 d374c074841acbaba33d576cb3ec60fe
BLAKE2b-256 93ed7694ba36f2f424f5e311752ce0861e71e6959bc62c2dd3a1e8587c2b6984

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e82e709fb3f260a2680fa8a4918b600de153357fb5c9f69463a8c28b5a737e00
MD5 a07ed5954bc3f18924feeff4d116ae4d
BLAKE2b-256 159a23faa0390415789a3a0e3cbaf73f643ec668d5f8fe96c10bb4f326e3280f

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5069e78a05010bd7e8ee1add95ca030d1365014f68de5fbbcb6dc1a313ec19a4
MD5 39891bf2d6ed45e7154b42cc311dae3f
BLAKE2b-256 e8b07e30e090bbb1c66bab4b2b7ab70ee843bfd0d20638d4e814d060ee6c822a

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6c1af7d68f53b4c91dc8c291a347a74bf2b0a25c9a28a66a24197c2c593ce024
MD5 ec2fa4165d8844c50e3013f623bf5293
BLAKE2b-256 fc19bd2964d8562b4d2e7554f0e42a08901da924b459b1b7ab4b3f99319ebb6c

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 1808d4453c0d0469092c7d84c90e695229e26275287f10d1717d1be8f6c08acf
MD5 1769518d8fe3cbd19238bbbeaf7f5f7d
BLAKE2b-256 8c0e5be838a04c609ff6c62664eee5e0b590fcc38f70bd0c8f10438b83e92988

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: uuid_utils-0.16.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 173.2 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for uuid_utils-0.16.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7e77476788e1db2b5a7c53fa7437a259af7d872c910e379ee4b6e3f780785dc8
MD5 b64f4ccb8b8ac3f8d85c070c532a8436
BLAKE2b-256 56ea1d6ce69fde3c5e051f68d1727296d12e44f6b2b21f29d64f8bb7fbe4b17e

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for uuid_utils-0.16.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4f57d1d08e8b304a44e350d873b8343780b83b111d85ebac11db2661ca68b701
MD5 2845375d259aeca19ccedb20b34baa44
BLAKE2b-256 25c3bcd053c8480c8b03c2c610391cb74a141b37644dcac6bc70773c0af45aa1

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for uuid_utils-0.16.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 89a160cb85331b271f73903bbc4a6d47c668497d3c10abfbcdd670329fcec218
MD5 52c71a14141be221c32bf86589bfeb7b
BLAKE2b-256 06dfa3786abf57b67578921c6cb48b84803ef15d8e42fce6077e3eb2ea691a65

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 931732efbcece3399ea5250732c0a75f91c2f5172b74641bbf707cdcaf58bd1b
MD5 9564e51fd74766be9aca282f2718c34b
BLAKE2b-256 1ffdf1d5cbfc48675405831f998b3caef87234aa1cab5f9abc257b3127f476ea

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c3c4f3d5d22deaab29d17c5def41d45733d043dc667492cbb5c85b1bd8301ad5
MD5 512f43ffb2f076b5e0dfcc370b7d7a61
BLAKE2b-256 feaa9f462d087d21163f2fee1edc548e82306299f70c7eac6757477bff7264ee

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 59f9ccb7b0d022cb184be56e0c7bd908f1b1129ba946c8e4b1ea0e39784597c8
MD5 08a80e9abe237f7f139569f680dfd426
BLAKE2b-256 aecad34022617cd27ecdde3829cc6bc066e47fb9d280692a311ec5634cf1682d

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 463e7fb4ad94d8ef9fc32bd118c39cab45e2ba7e14c61b7d0e859c0767323bdc
MD5 5558dc2eebfeed2847c0025122cbd84f
BLAKE2b-256 b0a382da5920558739cbf126bb414b6a9569e042390693bfa54eadd99f338f2a

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47ea8f2544a301f6cbd81377d638f4ac1f6f860f21133f4d18a450bb4baf9d42
MD5 4feb048daebe57b915fed46bf72a08ce
BLAKE2b-256 572c37735ada185956ec01474e10c0e4bebe486add2de2e31b3175e19c7970cc

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82b0a3abf892aa0c7c7657f81359e2388cf8b20e64e7f897934720198e9d3975
MD5 dcd6852ae6637e708f06ed6501ce5a07
BLAKE2b-256 d8e9860d7601a1f4fc8499fc9897fde9567267499f0dcc5ecb7a23decdd60302

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d0e4a28ed6eca38ce71423c27d13ba16d0da77f04315a2ed391a4f0565abecc6
MD5 d1e137e22404820f8420a486addf6c51
BLAKE2b-256 a6642a6ef4ad23dbf87056655c2388d406475f0de13ee408114f62583a25065d

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fcc71914c555cd11d88d3f3a9c5e971b9aa5921423d5495b286cec4f09f6ba12
MD5 e212e0e175065aeac99e37893f45f5b2
BLAKE2b-256 85cf41119860ec2c8de904c848739861b16ab92defd4fda0b86d7ee8ed724aa2

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 75bfa6af766bc73b1a36e49ebb3c35b61fe9f1e5e584c26a2ad32ba01c5b8513
MD5 d29399a7a0a73bb8d7255404351a9652
BLAKE2b-256 1d9a7aed02b66a6cb7d43d5bed2ca484d70ea8e023f381f25936c51cc4c05798

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1653e4d45fdd2159e242b8fe382cb48c1955a3eb6a3f25009357b1e7d910f374
MD5 77ce4dea2b35de81a58acb1472230cba
BLAKE2b-256 a469ad75eb984999305cbcc808dd1c53f84bde0f0b11942aaa29f14150673ce1

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 c9bad1c6e47bb9ac56faea8c23c3214eb7be55612e12ea3c05b0c01aa824083c
MD5 0a2b2e8e1b9752003633bf566758dc79
BLAKE2b-256 2e2d9f330dabb97aa14de667e908996f2733b4a3be94ff3dd8f9b46c366a2a5e

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: uuid_utils-0.16.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 176.6 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for uuid_utils-0.16.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 9fa28ac6ec2210c49b4359b0e061473b8d6c79cff8612668ed7f092b73a81976
MD5 6dae1181bf082cc1b7991c1760c2711d
BLAKE2b-256 7d57637d3d921eced7bc3ad39934dfd9d05c44e1aedbcb08eebc66fe8c49faa9

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for uuid_utils-0.16.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9f5eef68f0c8bd341bff3ad6e8a05c13f153113b8d8c71f724bf224ba7bbfd21
MD5 aea28c02969202c8cd6989dbd0b09d83
BLAKE2b-256 5af5bb0b948d166c4537eca089e1177d3f4200a01ad9cf6a5d57c6068de0794f

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for uuid_utils-0.16.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2f30ffeecde5c57903b03f526225131dadf7fd14b7134f12ff65234e3769668a
MD5 12314640554a7910f6a04e5ac2f5cc75
BLAKE2b-256 7fbaacf90a984f0648461c1b984d8ca8dc753d2041dec8e5e5e1c02299da7988

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 957cde5afdc85a59708e533d8e1194d2d3224fc1b5013008868864657aa73cdf
MD5 84ed0bf156fc4be36d957c4f50efb652
BLAKE2b-256 7e8bd87fa2650f1e6500c7bfce9d54be39ecb0943aacc85a40ba3413e77f68c6

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 33e17731701cfa5f4625d0050eba9bc7cdec652baeeabf0e3f162f42ac4f248e
MD5 c91ef82807396dc618b6696d3889d89d
BLAKE2b-256 cb5a481a12602d8e7909e8f4463c3572c034eab5f559f0b92ac995cba2407723

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0fa88f567c5bd4a6d9a69833b36351fb7922f29d763e52e0c6b0d1d5689e1c6b
MD5 1adbdc40795228dfb7be3eb838ec6a23
BLAKE2b-256 fe87a1fe4a893640f7116e1fa047002238bc98ac9f2747dbea68fe207baac484

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a3d345bc9df1767d7c3ab772af320579c22d9a87ee04bd22f5c6590c50ca7282
MD5 e0e04a22ef32b315517a77de185ce75f
BLAKE2b-256 725815be0a25f6a750b384e67428f716c9adb15eae3adccb8e693f4b71072d4b

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72085b587d100e8e724addea0c3c20274f1e3ebfd04dfabd239cb60db6818554
MD5 c78d78dbb2a830739afaec5cc7473d75
BLAKE2b-256 f74e932015dafc1b2eb1c85dc7702f5dabc7af921384e82d08100602d06a476d

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 21a39b304540400c3398fff922cbb240f402c0e15f68057f83e2bb80d98e30ef
MD5 6e17ec5a9e4558224a3e5e2b106e7029
BLAKE2b-256 8cfe0fecf9c99ad19e6392aadf7d1f41936217c7625ef248f79a3d3bb7cf9ae2

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b05bebcd4f428b6a4a43c94e85bb65522714a99f4ef62ecb8991fab9a349c52d
MD5 4b69d83cd2b1d9560b0d1af26259df2a
BLAKE2b-256 132ca999a850e01ecec4ba47f1e6de022a595e1d09a7b4b6d2abb70812fcb28b

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2d57530d894e8bbb04c9a81f1cc577a71d373f1303c69382ad1d486fe3b4780
MD5 d4166da2c61834a58a8e12499f78352f
BLAKE2b-256 5a67f15c76d0650af4e88bb8d6df3bb6d5179b1288b6308c2f592ae7c5baad72

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 de2172b3a22653127643903e4293cda737a79f6dc902e0dc56be2d297c1a1ecb
MD5 1690871f569780ecac5860986ac3d587
BLAKE2b-256 0c057be32c6836a712f728630a44915b94bfe036bc6310d7b0a8506ae0374747

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6703961c037c783c88b2770a7fe8e4027b85144f5625da51a16eb4141903627d
MD5 c5bdf90c0bef0307c2770692951ce427
BLAKE2b-256 98bab165cc8eaf8b9b03b625e318923110cafdf5cbdc0281e5a788b52dc8de48

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 05a98f47805dce1658dd143503e85a3eb4aed9d9638c8138948a72c626850a55
MD5 a4392cf0e5991350b3a6b5e5023894e1
BLAKE2b-256 d47edb2b282dd614670879470ae949b5ee7e140ec0f64387b0e566555807575f

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for uuid_utils-0.16.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6a78cfd838f00225ef3acfbbf0ab2c2e9e7a43f2876c2f0bf30eef771e86c4e0
MD5 544e76d62cc629734108033cf640dd5d
BLAKE2b-256 d2edd6bc5d01ccc2a1b85af6dbe3f2f28c6e8bf4b5fe528532ea0030d25aba9f

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for uuid_utils-0.16.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ab2a2322a3203977d02c15e836c1f531fd37905f66cfa6b029b82b647a6e8622
MD5 c025808d452a921214717fa89b623fa2
BLAKE2b-256 1a968247e077ed4ea75707e701c0355701b6c87953703c191d9a694facd380b9

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b12f8e7cda30ecce24bdc20fc1f1b21d5f597541afc816034fd1701db034226a
MD5 715a52531920b65821dbaeb1a5e5fd1e
BLAKE2b-256 84f0d68cf47822b31a41132381aaa8ed58e760c9a331d6ff7052fc8c04b2f139

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ccb2e5b1b104ae579b23d0a5ecbc21fcccdd8a7ad7bc95f5b7543a4f472208a
MD5 9ac2905c62326ccdf2c3fa557e857cb8
BLAKE2b-256 f4ac7fe06af5e8a75ad8420c2defd49e19cbeb08e9ed66b13116c9bce0c5ae29

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4d4f1b28b082074cab627d07185d29ed7d601eb59490f136f4d31f4d252c0af8
MD5 4d46e6b619398b94801d8568d62be09d
BLAKE2b-256 9e27b583569faf91207495d049a6faea63c4d3026ce138a6d1c9cea2cc6bac1f

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbb29b9066c6eda402e196b62ef84b0202f2c3f5b425358da4fd2912609bd99f
MD5 871872ffd93a21590fc2917916755552
BLAKE2b-256 a3e13c042a9fe58dc0dea497407b0e4e8666ecc2e291d1cc919816f34cc139bb

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40303a81816156aca750663c0cf11ecacb3369f561ebb38c992efa9c6af94285
MD5 8f3b59cd77201b768dab123fcfde8933
BLAKE2b-256 f35c12414bb64c1f00255538aec43ca2c0c8c1392c1b03abecf2e158fd963879

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dbff94632989dac51117f2f1c0f58268859aa18f797357f176d46aa53c6ed6ba
MD5 d1833332d2a4a3d0b4c31f05f7700f41
BLAKE2b-256 7e4e366474396514ecf2d843afb9bb53bd66af6656142cab25954840df72658d

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f6e7e54aadbdd7e2a1c0e41b4e57ccdde1df91ee32a09a368cac12fcdd190f33
MD5 6b038991c220c154142f17cff482f95f
BLAKE2b-256 97e1014d347dba9c8ae91396205977aa33319557e006cde8303f9adaf165da03

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad28628a73da6bc1512fab8f53ad61350683a63cb5d391fe07b7864eee8ba640
MD5 50229927a4e9d6846953a73052ba2995
BLAKE2b-256 c35fe9fe6b6f2d4cd5ddb44a9333e962b858486a7881b8ed6ce7338967116192

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d26448ea50c6c43aac153d521afb26b271d9cb751f3877b180c683263b2a42b
MD5 268693f56573a45eef73473192c418c1
BLAKE2b-256 6e5408dbacb87df200397c30d57d87fd6ebe555f8c18f5445d78dab87d43922c

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

Details for the file uuid_utils-0.16.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ea3b1ed2d7ad271d220ea69d76c336d253f493ae0b0b34c3b21925d8bea1f630
MD5 dbb1327b6de53d9b81ac646e90f82964
BLAKE2b-256 28f72b1c72d0f18f171c3cc97af17577c289997ef59287df1ebbbb79b76ac64e

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on aminalaee/uuid-utils

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

File details

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

File metadata

File hashes

Hashes for uuid_utils-0.16.1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 e67f7b9e7955e442ed261369dadce0b277d1a6693e36f365b4a81b5bdaba6450
MD5 a462fe3b0dc1d1648dae7debf665741f
BLAKE2b-256 60a25ab64c57dc432c36bdd91f8849a50cc88e422e574c5bb63e5c1216ceb2b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.16.1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: ci.yml on aminalaee/uuid-utils

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

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