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.2.tar.gz (43.0 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.2-pp311-pypy311_pp73-win_amd64.whl (178.2 kB view details)

Uploaded PyPyWindows x86-64

uuid_utils-0.16.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

uuid_utils-0.16.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (451.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

uuid_utils-0.16.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (335.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

uuid_utils-0.16.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (328.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

uuid_utils-0.16.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (355.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

uuid_utils-0.16.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (290.2 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

uuid_utils-0.16.2-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (571.0 kB view details)

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

uuid_utils-0.16.2-cp314-cp314t-win_arm64.whl (174.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

uuid_utils-0.16.2-cp314-cp314t-win_amd64.whl (175.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

uuid_utils-0.16.2-cp314-cp314t-musllinux_1_2_x86_64.whl (531.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

uuid_utils-0.16.2-cp314-cp314t-musllinux_1_2_i686.whl (568.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

uuid_utils-0.16.2-cp314-cp314t-musllinux_1_2_armv7l.whl (607.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

uuid_utils-0.16.2-cp314-cp314t-musllinux_1_2_aarch64.whl (501.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

uuid_utils-0.16.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (446.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

uuid_utils-0.16.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (332.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

uuid_utils-0.16.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (325.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

uuid_utils-0.16.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (351.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

uuid_utils-0.16.2-cp314-cp314t-macosx_10_12_x86_64.whl (291.3 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

uuid_utils-0.16.2-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (567.5 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.2-cp314-cp314-win_arm64.whl (173.6 kB view details)

Uploaded CPython 3.14Windows ARM64

uuid_utils-0.16.2-cp314-cp314-win_amd64.whl (175.4 kB view details)

Uploaded CPython 3.14Windows x86-64

uuid_utils-0.16.2-cp314-cp314-win32.whl (169.3 kB view details)

Uploaded CPython 3.14Windows x86

uuid_utils-0.16.2-cp314-cp314-musllinux_1_2_x86_64.whl (530.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

uuid_utils-0.16.2-cp314-cp314-musllinux_1_2_i686.whl (567.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

uuid_utils-0.16.2-cp314-cp314-musllinux_1_2_armv7l.whl (607.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

uuid_utils-0.16.2-cp314-cp314-musllinux_1_2_aarch64.whl (501.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

uuid_utils-0.16.2-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-0.16.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (447.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

uuid_utils-0.16.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (332.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

uuid_utils-0.16.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (325.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

uuid_utils-0.16.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (350.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

uuid_utils-0.16.2-cp314-cp314-macosx_10_12_x86_64.whl (290.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

uuid_utils-0.16.2-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (566.2 kB view details)

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

uuid_utils-0.16.2-cp313-cp313-win_arm64.whl (172.2 kB view details)

Uploaded CPython 3.13Windows ARM64

uuid_utils-0.16.2-cp313-cp313-win_amd64.whl (173.5 kB view details)

Uploaded CPython 3.13Windows x86-64

uuid_utils-0.16.2-cp313-cp313-win32.whl (167.1 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

uuid_utils-0.16.2-cp313-cp313-musllinux_1_2_i686.whl (564.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

uuid_utils-0.16.2-cp313-cp313-musllinux_1_2_armv7l.whl (606.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

uuid_utils-0.16.2-cp313-cp313-musllinux_1_2_aarch64.whl (499.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

uuid_utils-0.16.2-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-0.16.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (444.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

uuid_utils-0.16.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (330.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

uuid_utils-0.16.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (323.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

uuid_utils-0.16.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (347.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

uuid_utils-0.16.2-cp313-cp313-macosx_10_12_x86_64.whl (288.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

uuid_utils-0.16.2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (560.8 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.2-cp312-cp312-win_arm64.whl (172.2 kB view details)

Uploaded CPython 3.12Windows ARM64

uuid_utils-0.16.2-cp312-cp312-win_amd64.whl (173.8 kB view details)

Uploaded CPython 3.12Windows x86-64

uuid_utils-0.16.2-cp312-cp312-win32.whl (167.0 kB view details)

Uploaded CPython 3.12Windows x86

uuid_utils-0.16.2-cp312-cp312-musllinux_1_2_x86_64.whl (528.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

uuid_utils-0.16.2-cp312-cp312-musllinux_1_2_i686.whl (565.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

uuid_utils-0.16.2-cp312-cp312-musllinux_1_2_armv7l.whl (605.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

uuid_utils-0.16.2-cp312-cp312-musllinux_1_2_aarch64.whl (499.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

uuid_utils-0.16.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

uuid_utils-0.16.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (444.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

uuid_utils-0.16.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (330.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

uuid_utils-0.16.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (322.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

uuid_utils-0.16.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (348.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

uuid_utils-0.16.2-cp312-cp312-macosx_10_12_x86_64.whl (288.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

uuid_utils-0.16.2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (560.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.2-cp311-cp311-win_arm64.whl (176.1 kB view details)

Uploaded CPython 3.11Windows ARM64

uuid_utils-0.16.2-cp311-cp311-win_amd64.whl (176.5 kB view details)

Uploaded CPython 3.11Windows x86-64

uuid_utils-0.16.2-cp311-cp311-win32.whl (170.0 kB view details)

Uploaded CPython 3.11Windows x86

uuid_utils-0.16.2-cp311-cp311-musllinux_1_2_x86_64.whl (532.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

uuid_utils-0.16.2-cp311-cp311-musllinux_1_2_i686.whl (569.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

uuid_utils-0.16.2-cp311-cp311-musllinux_1_2_armv7l.whl (609.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

uuid_utils-0.16.2-cp311-cp311-musllinux_1_2_aarch64.whl (504.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

uuid_utils-0.16.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

uuid_utils-0.16.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (450.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

uuid_utils-0.16.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (334.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

uuid_utils-0.16.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

uuid_utils-0.16.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (353.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

uuid_utils-0.16.2-cp311-cp311-macosx_10_12_x86_64.whl (288.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

uuid_utils-0.16.2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (567.8 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.2-cp310-cp310-win_amd64.whl (176.4 kB view details)

Uploaded CPython 3.10Windows x86-64

uuid_utils-0.16.2-cp310-cp310-win32.whl (169.9 kB view details)

Uploaded CPython 3.10Windows x86

uuid_utils-0.16.2-cp310-cp310-musllinux_1_2_x86_64.whl (533.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

uuid_utils-0.16.2-cp310-cp310-musllinux_1_2_i686.whl (569.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

uuid_utils-0.16.2-cp310-cp310-musllinux_1_2_armv7l.whl (610.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

uuid_utils-0.16.2-cp310-cp310-musllinux_1_2_aarch64.whl (504.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

uuid_utils-0.16.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

uuid_utils-0.16.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (450.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

uuid_utils-0.16.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (334.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

uuid_utils-0.16.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

uuid_utils-0.16.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (354.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

uuid_utils-0.16.2-cp310-cp310-macosx_10_12_x86_64.whl (289.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

uuid_utils-0.16.2-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (568.3 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.2.tar.gz.

File metadata

  • Download URL: uuid_utils-0.16.2.tar.gz
  • Upload date:
  • Size: 43.0 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.2.tar.gz
Algorithm Hash digest
SHA256 fa637e4f314ad5b59ff6d8e809d506443d68bef30bfaecdfcfe02cce689abb2f
MD5 c7efb058199eec27e834bd6a51d6b2e0
BLAKE2b-256 f85a5da7ae85b38e3eddba0be3e8e4328f90882fe92989728e6fb552963d4c42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9b4520521aa46a2582fe1829c535fe60b78999b89257db998df3816eb895bdf3
MD5 0c7626b88f29b40d23ef5f1c69c29fec
BLAKE2b-256 b470b708edc3b776d7624b4354f43d443f14d951d3ac4d7d8867d94f2e59c3ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 585d3adf73afa60348bf2bd529491c640a692350e76d8ff3974455e273aadfe7
MD5 ef614a74d633e5ab16eb9783bd0faaf0
BLAKE2b-256 6adaddb1dcf0fe9bfcb0dfcddec8ae52c8f95e7088e44719f58477f5fb2c5586

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 511b5fde12d29c37a9badd399af62105bb2f4696aa10eb18be74e7b9ca84413a
MD5 763668bdb5c6e798a1ad233aa935a451
BLAKE2b-256 042ae8d4e6f1f2d2e567cf6e3202d125afe7da52ad7680bba048b106c09f01b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 43cc72a92694d08ade8faadacf928857d9cceb84b449473246ae4e4f263d7d22
MD5 62f5d0bc6274dd09587c0d3f0de4bd6c
BLAKE2b-256 72bfbbdbc39d1421953edcee0bad13a1893521a636eccf381580f53e530a4feb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e9ca7f5e215373cc9c147172170a0b1a4ab0dee9cc62fe446d9b075f31e3241
MD5 8f24a4162f6d7fe03d4d6baea3fec06c
BLAKE2b-256 8ee2bfcbcf7eb9dfb17701104c569ed771eb359737bc70b7309e439610d089ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ae5fa2007fd26d26f7b09e76259d5ca99bec191616207ca929f8dca12da08129
MD5 5a7010cf77f6a1f9c72eaf4be9850e34
BLAKE2b-256 37fb39305fbfffee1fdaccdb88fc0499ac9dcb7289a77ebc31938dcdd933cf95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9282677ebf2ea5b437c20d16e75bcd7629bdc205018f95557b33b76868d8bb5b
MD5 ed33dc40a9ce356cfac2c4da31ec6692
BLAKE2b-256 de78754eaaa49509be6fdb705de61d1e3889de32002132d5f00e8c1e5d212da3

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.16.2-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.2-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.2-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 8b8e325e61f918caf74ca540e3384b81e6e22aea782e57f615d15fc9773b96c8
MD5 cf2ae2f6104adefb0db05c6a788764cf
BLAKE2b-256 0e488c9fee7d75571f2f4b2386eac798fe5f826155d13797f7c86d45eb3fdc23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 3324bac95084e63e28553c92fac5a0394c636a76e03e50a7dab0c0bbddf87fa5
MD5 0e225c69d8b33f12e67ba9f713d80ef3
BLAKE2b-256 86fcaff8b0456e8a63672fa89ea9c773f7547a31ff7b596a40f226bf148921a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e9064805881c30dd80a4189a0da7130e3d684de353ea36edd99c1b994bdf429e
MD5 6f727adff4354e4e3b3b98a33f13027c
BLAKE2b-256 a6afc0d482bdd637a8a742d3274cec462b770919f032e179216f2fc2851afaf9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.16.2-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-0.16.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 62b8841895eff1c0afbaf5f0050411667231160478c8ff9f411742abffd3b619
MD5 3cbc13881916fb76de183d65c4324d20
BLAKE2b-256 6f5dd98d99f601d70cc00287dce5aadef9c199912f0d64343962542f35e7db59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f668035ea9faa763e8f1ea42040e8439db88cf2517056d47c348a62a257a1d02
MD5 a8705d8b6f1160180aef8c564c64fd85
BLAKE2b-256 6850644e4e55f47048d12bc20665fac85bc1fecbed9c892acfb91626abf8ad8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6c02f85f49c9c2abbf247a8622458c30232332a28711755aa191da5f38015af6
MD5 274c7e5ea59f89adcd4de6ae61cb428a
BLAKE2b-256 ea526102f21f28323b27122a6aa3d4cea183b4fc401868c5c40767e1b9f53beb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 76632d2e16e26de777851ec07961ceaea14e65167d0603a0b17fb169fa9ca37b
MD5 ae2d8c27136522784dede229d906fa4b
BLAKE2b-256 aa8d003865d5ed5bf82ece80bd61edb2692985f7548051749fd10f34edb16705

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d4805c4739dd06d539f8f4fa94f5aaf26eca4b3ece1ef134d4ff904c6b08dcf
MD5 920fc8d158814cd1b66059fc17e778a6
BLAKE2b-256 1b5c168d1f4d30b33c08365debfe4176c2f713a0940f1f11a64128a186d050c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d8257329f26905f009aed694bd3b17f334f43748b03134dc7bc99d6c5b4e371
MD5 66434402a0c105f86f667578b6e19d3d
BLAKE2b-256 f7100c5d1dd6874fa35e2cb66a8499ce303eb8678bef226951182603bd30017d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aac82500329ffaf2788dac36cf133e1e4e23b6d5e1118274ea6749c3b512f4f1
MD5 21397a5fc3c9c326ffdbeaa2b92f9b40
BLAKE2b-256 46be12d3df7bd824e3ce71630c022184a5aecfea92b0a7fa70459542b237777a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a59205fc15463dd0f978f14df14307737e3d4e8ef4aefa29a9d0fa766d84d16b
MD5 1f1a61416e75c320114ffb7fa42a6fb7
BLAKE2b-256 1642e397a1eda06b20dd3a206e3a55b346ff2caad23906586801a87359530864

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d906c00f965d5c5f4812d0086dc49bf813285ea84c97e8816405200e146f805b
MD5 6a509210d69b32d2ed284e30b5de4b46
BLAKE2b-256 4ea8fdadd7ada0de53dbc03f719da0948cc275abd24d8013a26e42e50d3665c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e04b5c10c6fcf9d9801084d1e86c9d7ada7eb48fe07ee4ae5e7fe5b1a852db8a
MD5 78c5baaac0a03991aff415d6f8b8646e
BLAKE2b-256 04e29ebb8414875e5c14737fa7145a023458c9b15754f1d129cefe7824197256

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9ad2adeb941292fe02e1e5c70b80a5746c45b1b77594506c2a1421455d8384f9
MD5 6f12cbf7159c4b4a455a3c72d776b13c
BLAKE2b-256 4e2ccc2bb8273d414d651acafccc3705a8843c130a541fcce65fbeaac22266ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.16.2-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.2-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.2-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 e0609e7e906c08386b7f33141254df05dcab24f1c4884150988dc7a287516aca
MD5 563af138bacc9cba83daf950cce5a3d1
BLAKE2b-256 9243401acf6fc0e0665dd11a095a28f6d22708c6f8f148c326cfc5b0b1ae9882

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.16.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 173.6 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.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 fad82e6482129c58ba9b00da6c247ab6e767645ab17981599229cce19d7b2ce9
MD5 4f8d0171123c39bf10b4179a2588f738
BLAKE2b-256 ce5db3bd7415622060dd17d587545e3c037f83dc0dffb8880ac798ca7936f630

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.16.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 175.4 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bf922bad7df257336b594d316a1657df569860bb5389602919001fa6fb17f06e
MD5 82a4476ddc76b4ee6087e34db89286f7
BLAKE2b-256 fe5e111908bdc7287b2589e9a9f10be8e0358844fb4a0554677cbbe0ade49766

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b5f8e7d0bb2c6e6180176237f92d2e949626e04fcf701c49d73f128e1f64e1d1
MD5 393696dc30a5a3497cc73235cf1fa8d6
BLAKE2b-256 6960cf1666d0dbd6fa869b6de3b85a17254ff0ab10ed286fd59366148bf08e89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e3acb5e1451232381daea01645a98c69de4bb9ad88d77a1f7c1df4d83d54e62
MD5 a5a006941140e1fcefc80822899774c8
BLAKE2b-256 150ead7424a6444e3e108a22781c2e164e82752da5db23ccc5cba8b4470c3164

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ef8c561fdf88fec205e3d54037824cfe2addce16b509a8d2ecb69daa904cbb7
MD5 1973478f1a5fd7610dc49842c386f7fd
BLAKE2b-256 487f1024c22657a0c0572c4fd5189fad3127cb46731fb26fad3be1e8a4a64972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7f3cca9ca5e2c2dfd7b885f0d34c10b993a070d3593f3cdfef785195da36fb0f
MD5 226fb6b53746f527387ba5efd9a8e692
BLAKE2b-256 9d0b84c1542bf8c465b456f742318ad83eace63551e7f603b06c817b726670af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e75f9429d4533ce275c98bc68bf47fb237ae7b32c954266dabc5edab0c7d682e
MD5 af5d1ab7218df5d066ff2b61d0a888f8
BLAKE2b-256 4566260836aaef14b8254bc449b3163fedec06ef0a0bba0d6a999c918479b2f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 273679723e88544dd2de0564ab7f2fddfa2270faf05cabfdf63c275be67ec2a1
MD5 fa9ba513b6f4bd45fbfe473ff16ec5b8
BLAKE2b-256 954377e83019effe1a5ab7169a2d4bf1bd654bebd850b81c8a937b96bd6b5c9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 026b96b2f1e6b004579e030692d2f6568ccd0b29d40687213c31694abf570c78
MD5 cba166b187a701b815a172d981eee797
BLAKE2b-256 1c218c21bf6cf3ce9447b73cee6a38ca63c9bb2f3145259422646bae8e8ddc21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ecadf55ed6b8fb72e7966b52fd02919e7d7bb8e7bffeaf285803b82e774debfb
MD5 21b57f9e99da145ab30c1c6e3609b0b7
BLAKE2b-256 1f873b59aa97e788ca4fa46e2a3856ef567b51e03fd7fbf27d39ce36e46478b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4af7673e84e1ec6029f18d3a0408095c471c4e2691b6e46b4e1f0a2051734ba
MD5 4aeb051756bac9a602041464eb65f771
BLAKE2b-256 f5278bb31429884b9f340f964ed70b68bfd81cec61f6e6877633f6a014358e78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ec5b1a338b92d1eb121e9eaf06ae3db1b9a5cd794ce318a475f6dc6f9e89c3a8
MD5 c2b97028601d682e9f0eb9624c296cfd
BLAKE2b-256 f3a67bf6e0165dc191c09bc4e8c011de5463d64c5a651ed38ad6698bfc552a52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0aa2569908bdb21ccb216cd6bd06cb934351ee65ea7cd5e351e19f633a99b577
MD5 4638de4208878126b0517ec2f6873ad6
BLAKE2b-256 28b32b6f9d6832e939aaf2b2ba89ff70b3994cfa3ae9b14daac3329eb9202ef8

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.16.2-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.2-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.2-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 617955f4b3f649617c0388127d8a257202189d5cc3c720313f8b207df1cdb2a4
MD5 4b4039c40a2869b50c45fc993608fa40
BLAKE2b-256 893a0e5a0c1e1e3243cf5f12efd2b88a33e63c38b6a79483d3c84b2f5e7265cf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.16.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 172.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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c1dbe65ce6d46c5f645356d64bfb2de7564e2426ca8c9b1a0a401d6f7ae5cc22
MD5 9ff4277ba29f2dac5da49cb84723172a
BLAKE2b-256 b2794e5d63d605b13201ae9af6fcc36ec77949cccc99486c430c016d8f8ed274

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for uuid_utils-0.16.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 01f81c71cf2185de0707e9d2f248e17025ba50af0acd3cbf51cd8aea96c2e0be
MD5 3f2e2bb6a85f68aa18829686bf564dcf
BLAKE2b-256 86b3b5ba393fbe5142eb9d5db23d4b9b16dde2a4e1aee6f2fcb7fadef97e419a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for uuid_utils-0.16.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4942b26ad12c5187bac52b7fb4685040139ff0df9a19cde33e5025326f6180fc
MD5 4e56962384d9d19a666b5ad010aa1398
BLAKE2b-256 c0fd8de85eeb8dd59354ad46e897ab0d0f0fe6bc48702239a6c9f2613f961c8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 280d4f1f22dd2e79c1cc31ffc7fc26dc3534ffc114dedcdd29cc8489c5ce9c98
MD5 eeee5829b8fa55a356b7ee085751755f
BLAKE2b-256 87ad47c93dcabd00f6749803a00be361c75d7079c78ad5e67077dee63d30b687

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e44020a4532229ccfbba353138539774686350dda71cf4368e257973dd8ba403
MD5 b639dfa2d2266652a2c0786a28cf4bfe
BLAKE2b-256 013b9a5fe6691f8f6d72899cdc2713ffbd845b8c6981eeeab66d98a71b721116

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9fe600ab7d3d4eb56986e814042c917e728ac92cd8a41f099a6b59b84d8bf9e6
MD5 0cd3e9092774eec86a3bcf77409e707c
BLAKE2b-256 7cde140f1d2a161320d1ac9073a03b9eb31fe35ae70f56f8971ec1fb45c14a44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5119bec75f56bd028d97472f72b1ed723a0d60b09a48017dc70a3cb1892ed081
MD5 957f2dbea6ea16491ac73f55e7f77d9a
BLAKE2b-256 25755a1f297a09556c27d9617c44ab0510de5f3a70120df236f66b9d0fdd1976

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 840b21e609a9b203eee06bdc73e18397154447a9814a8e78d9b68e5104d9802f
MD5 eb139bdcc1f13e083b4aa8acc7c3b8ec
BLAKE2b-256 482fa1e87e268df98f6740af81abf225532c173a971c64df0258c84b630e35a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fcc329be41bb6534ecb03e50596179ab76c7643ced33d13c66967d5ae1869663
MD5 a986105aa23a7f8f4be00f38558fb8b7
BLAKE2b-256 370dc3918356932ce467b11e954d0c93697fb4652cf664957e3d9521f7ece22f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c3bf41b696b0fe808df1b4091c70273a52ea033b0fe97341cd67ecd76d22bb3a
MD5 1d9264ffb2399970186384e18ed571ec
BLAKE2b-256 aee38173202b7cfcfeb4a588c5f8b85d3e2b44973384eb33167ee25c5c78867f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dc4b9d96a2c689d664cf3fc7f7db46b82d2821fb2ce8a4f0798fc0a92c1569f8
MD5 d1d61fa48d6738e9b9c7740aacc4af65
BLAKE2b-256 e8924e5b412d4710617fb83ed77b361f5fa6247b99bde2fa6ee07ddf851b59d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27271b37fbc6812bb1542c4b8e22ee00223a6bf7f62b1f38d3bcf8e92f6d9acd
MD5 53dcc2957bb64ff3181e4e8da2101a9f
BLAKE2b-256 ad0e8e799537ea458abaefb0f5c3b3b05304d3faf413feb0997605a3f8ae2484

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4125bf6ed3ae443c05e140f8585d174b9d647295b12034d5ec94ae2ae38edefa
MD5 ec9aa015dc2ce3b7abc98868652c3ad0
BLAKE2b-256 f0804020556682441b62a25b7d07798812115fca97d417a3498d5af6dce36504

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 909e26fa2451c8db31b9ed1d3c8e4ecf513b6d1619db4205997fe99eb6b4ef4f
MD5 53b6654d7dd97d949077558936f522f8
BLAKE2b-256 ba1c77635489de5454f2a25411030f78d31931dbdc0c86114da00adb9b91f120

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.16.2-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.2-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.2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 c19b7d595d12923da682ed13d313c2333b9ebf214e65a47a24927a8a3a81b191
MD5 b6da338e9141cbfb6986138d98552001
BLAKE2b-256 eda13b48859953ee74fc26628ca5d9e5f848209655a0a8c934032fc596035976

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.16.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 172.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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 72cfd9ff1e8a7c371a044687e77eb873721c4a9f4814e453439bfba595b84303
MD5 511822257ec00a366843dcb8230669ef
BLAKE2b-256 37618a025284a31c85b7c0c5319e96868c2c09dea3fc5f676c979a4cd4baf2e7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.16.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 173.8 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 97ee6f5e803ea571f5f6da42efc97d8c5a13f121043680177f8470529b94e855
MD5 7c5232e50542aee5ef3daa6b28858603
BLAKE2b-256 4738f72f7bed062601448ec2db47351e6c1faccd78fd693bbc6e067299d1fa11

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.16.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 167.0 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 dcdfcab60562d12dd43c1a6f495b1d089e41f0e10fac37d94db285d72b678c23
MD5 af3a9e603a8c2e88b7b2e0bbaf566a4c
BLAKE2b-256 427f279e6159c37f43feb9dd70218b49a26696cefddaef1db7f4b79895eaf5d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd32dbca0792b9683160151dc07fad11b915020eed7c82b43faf0862c2ff06a0
MD5 6f529916f9f4daa995853a8f67b57554
BLAKE2b-256 a3d0f6011dbe4e5d751a8494715e014019cb5b242d8cd6dbec1cfec3d3fb2e81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e10a02b3a31ed44c7c9a96abde335f5fa222735e73f3081d693414377eb3b016
MD5 54f45f9aed92b42761b54654fd99dbf5
BLAKE2b-256 3a28e382ee44a592e35b80397b493bf3fbbdb8e30a64eaaefc7dabc246aeb253

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8197870739a3094990743a80f075fa0b17beafd6c187e5f360e021d90a12a6d1
MD5 4d23ff6ef2995ddb442a62115c01171d
BLAKE2b-256 be10978d5ad82bc0fe7ff02d5be6f1eb83b090849f0a95bf8438593565273b7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 725110434a1d482a639a9ac467a24f1cb531d84ab52e454a13fe145b10b42cae
MD5 28628250553b38afe4591e7884de1784
BLAKE2b-256 24d8cdf79b242e41ae47b7cd617ac5d48f15ce44e81da8000379c757091ae5f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9bf8bfdffb22f620635580b17fd178272f30a9841b824b19b935c8db64bf09b6
MD5 83a416cfafdbbc40a5690cd5da251584
BLAKE2b-256 936683e62c7a152bbbb8b30ac58eaad81f3860ba2fba91a334c50f223f9ce878

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8323136bb02355c1b973492ab98b0722206dfdedfb148e4115c35fcdf3889bad
MD5 be9cdd0dad50f215ce419b894cb61743
BLAKE2b-256 b7b01613bb98ac11234145aa5bc1de618be536818fef05dec595efb3e2b37097

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d0ca752d51d1004caff65fccffd44b32a26cb099b546e0512cfa09facb683d6c
MD5 df6b60fe47827aecfc0375a305677d88
BLAKE2b-256 74008a009762015a134aa04b5451400e0ec9832ccd598ed4845f9aecb0be6299

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc25ad320c9b44c2d3ed33aff4f85b0b277bef4ff79b12c01ee58b52ea44be1d
MD5 5bcc2f2f24f89b1161ea0b8df1fa5ccd
BLAKE2b-256 4c9d6404d48fe71def0733c9568d96043b2e1945e2e4205c4eb525db3da42ba3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 61454f2139424a6cff14eca7849c28b3350f261453b74075aa20fe99592dbb16
MD5 00cd195ac70b892e368f9298d403a0dc
BLAKE2b-256 1537c1b2faaf3a9d7952f321a9fee3ad74e05b25878bd9b7cd6b0398fe77f279

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dd7aa18db5cc826d482d876a826fee445839701f81f78567e7c74b4458d57a84
MD5 645075d32f560c8c38505523aadfad46
BLAKE2b-256 e53c1095b6ab574a7fa69136d47bab5a43f320a8f00a0ecb96059fd49b1747b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.16.2-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.2-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.2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 6f064dc54c6abecb09eb104d953bfb079f3c395e0d6b18899979f852d1083549
MD5 5cd39bf937f463f542bbc1d06160e167
BLAKE2b-256 fd07294b72a572218bf6e92355203b832b3356c58a7e1e0b92a034497d15bef9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.16.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 176.1 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.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ea175649789f1e93edbf1a0440cab18c9838977703917221777691d8d988d7bf
MD5 2225d748e329ef5d026e0ad011e61675
BLAKE2b-256 d47118a43b6e632adf3cb3cf5db777ea03f9d3b2b259de65de5e41419004c2a1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.16.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 176.5 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 71192a59d473f3f638e2a238905046e2942006ad90ac5ec10d578e58ff9a08ce
MD5 9ec2c2a7c4c9bcd5d77155a74d0594e9
BLAKE2b-256 758b1e4b51c075eaadd23828b708249374db0bc40146f7b673027942d3383f45

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.16.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 170.0 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 aab7cdf28a3e2859ca4f40a3e3bf53eb35895039c80d4d8d8c5e15b90346c55c
MD5 0db29fd197a85e69566254ee062514fc
BLAKE2b-256 f106f7ef7f6dabf68021eb6e961c09d16d517ed7587cedfff18969ba7f61798c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 503f020acc7dbeb39c47fa33cf2971cf5960fa11f8394513fac461762a90c556
MD5 5d4987894a8f7226287f2098073073be
BLAKE2b-256 3f98371cc1f332f7463b9cfac0a66f984af00f4e3ada4a196b20879e35404e8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f69658c42411540cf58be958a47e317fd2302cc0b613ea5cff1e60d87be2846d
MD5 cc3beb088e43656cafdc1fb1bffa79ea
BLAKE2b-256 874922bff932af63764b4cad9c01299ed64c60d101962988efc13964b4165345

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cae08df8695f4b01fce2a8ab50e9e310971276d85dfc7103e977bed52d365094
MD5 f1743c2c77fbe535850c221341ea401a
BLAKE2b-256 39791a133214626eb0e18c51ef196946b1263d65b578ffee432ad1b7afffa5d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0529b1ef0788f663e1211d221b59a38ec67f9b084f1ea5342ba84358b3d87e98
MD5 4c2c60520e6e9e1c817f27577d9c3d7b
BLAKE2b-256 0c0f3b14c47fab1544bcfb92d28bc468160a4fc6ff342d0e6defa8ff40d5e4bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a30b6a5790acb854e4b65fae7875e5d3c6f8076fa9c91dac43ff9e28380bc52
MD5 d6815dd097201ed17f51d01fcb83d0c4
BLAKE2b-256 0070b3cf708e8942e6494742404a66f1586195a20c8fd235bdc79f385db383f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9e97ab941660f781a8e45f15aba9ee01b40dbb96adb5c43617c1671a4604b25b
MD5 f9d6c97bbacb040f0e80660cc4b2f8a7
BLAKE2b-256 ca58d8fb393b44ad0b719d96a5b7809d0ee727f7e266d9e88a4da235cbfbf9f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f7a44f8250ec178c0af703c3f1b6e81865a771272ae735ca403f27c95c62f132
MD5 a0cf56e8a6284113f56110fac088905f
BLAKE2b-256 c6fda9172970fa07ce0b9148ccc679a99540375c7bb32f8fbd72cf1e6cca43ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90903ab7fcdfb0300390c15f5a68cb91f15139d9a1a93f134c783d7a973fa269
MD5 cef1a3c626c5d59ebc633edb31183a07
BLAKE2b-256 45ef58077250fe04eda4a3f9fba8c35be8d0937b7d3e02302ac1a6d942b77dae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5dfc3e9e75139a84898771d31958ece6cdee8e8f127700aa8aa26a4f1a348d57
MD5 f5ba78a611944497874d5d04799f90f5
BLAKE2b-256 a89c4c5b16e752a2402259a3a9d1371227025e5b85182024c82a446cbe3ed6ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 79c5a3bd4301257b9a524efd16baf61ea65cd0d1b60b47d80f20b151fd65a09f
MD5 f3c32612155a2553610148828ad27ab4
BLAKE2b-256 fc30764d2a76e8e7688abd5577e6024787c13692095eb1230fd1936f27205cd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.16.2-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.2-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.2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 fadd23eee409237fb8637a35796a6e108873c28b40f7de89a36685f18ca055ad
MD5 64ac0d617830e36fcae6cfb216b41e4d
BLAKE2b-256 0a964023966d42fd9bbf9e2a8ce2b25930113688128b569f68bc4697cb18181d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.16.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 176.4 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f709169579a356132f224d525ed589f88d466bbb922b9d752d8d86b1fb57ad46
MD5 d0c9e3c79d8a7b949db0112958d631d5
BLAKE2b-256 93721fbd0db90f9fea4b0c54dc20dc2f26460f3f71d4273773d672bbff5c2fdf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: uuid_utils-0.16.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 169.9 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 dcf20151d2aa451013f2b3c2cce06958f43b7573b5f616adb91786c7b777715b
MD5 e4fe5424001ee08f05313af60b7ae528
BLAKE2b-256 b0c8e015346ed76c9e5ea866ade786d328dee9d96241a905a190c408550586ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3aa5c2ebc843e85a078ec27c1ad677871c44065b3dd58748166783a3c454859f
MD5 f2c362978a1e12af0d5e8dfdaaf94e02
BLAKE2b-256 e1c226cbc525269fcea4cd2e8067ddff0cd7e74fe654414f1429d3d2279b6aac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fcc212dec731aeba110953643c214982e667cab9802f7d99d066e03ba0c44c90
MD5 2249666b35681a8ae07a7eeb7c9dfa9b
BLAKE2b-256 dd7a8fc55abdc1bf8e2fab855f323d6259d6ca64dde91bfbddad3e7f8c8d2537

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6fe3fb4bcecef69cacf3a11e182e204ce778998bd439152a173bdd2e9e8e9cfa
MD5 57cd980151d98da7834166ff7d10637f
BLAKE2b-256 dfaa023bac4d6eb1148b7546bfdec17328b89ff6b32fb54ed7aaaaae61a96ff9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ef60e0a91675cfd9850e8aefd0d899fe09c4afb572bbe0ac2de4f8848d7663d
MD5 0b7a54b68af7541a4889c0b8ae5ad79b
BLAKE2b-256 ea456211782355f89ec540f5bc38a50e526fd4954a92d24d6b89e2adcdc31ded

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22446af2ae47d1054562b159bcd65714a022713e56697eef77cb5f291dc5ef13
MD5 57f07800843375cd6aa5e7fb318e912e
BLAKE2b-256 30178e8ae0f16eb4d183f43dbec12487795ad98ba875d30ffa4a97ce0b291a3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 887efa34701d197239ec3b0e89993ee8c0cea1746483b606e54746ea81c966f4
MD5 5b1e8dd29fb5e10a62b30ec4b05204c8
BLAKE2b-256 34612ad178d48f7a81772bdf56f699d7b9f2727b38531b28313f730bf19a39a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2cd4612085e6bbf6a00b9890779023ea97fe1ee8dd1758381022f7588a06e123
MD5 d7185e2ff7c441ea6b0706480c2c1168
BLAKE2b-256 09b3843d002eafcfbc7a1812fd76d6d0633936b63b392ae728084a87e62feeea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 945e1819dde4cce6828683ce11311977e73e6d46c6cc18e5fb9fcab2051b94bb
MD5 7d8d52c561b0d7f88b58fcc0e0654f34
BLAKE2b-256 78424d6202d9f7136c99fae003c73317928c1ca31d9bfae19f8d8f5d7791efad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 41165aa4059e3b03605c1c8c48df6c887a16f8f6a1fc4cb2155360a61aad8666
MD5 9a5f80adcf66d8d9ec984130e0a1e371
BLAKE2b-256 403a21b94228241cbf9f834ac4274b0cf9d9ea169f0bfa6f4b332b215a043352

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for uuid_utils-0.16.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e92875a315f3cc4fe7a2324c17b3c7ac5e3fd0e24b14fc4deb28370431fe6a2b
MD5 ace70eda826ebb55edf497626eb40ccf
BLAKE2b-256 ff392def0fb3b15604afacd95aee1f65fb60bfa33293792aaaec7d9722a8eeec

See more details on using hashes here.

Provenance

The following attestation bundles were made for uuid_utils-0.16.2-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.2-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.2-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 89a627f74cb55aa508809592ab9149806649e4ee37f4bc91b60c7ec10929f0eb
MD5 c94e91e6d7a8a9b05dd5ba6ee5d3200c
BLAKE2b-256 416f783ba3792d91b89af608c120e40285cafed6dafd9354042f7a0ea32fca5b

See more details on using hashes here.

Provenance

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