Skip to main content

fastuuidv7

Python bindings for the Rust fast-uuid-v7 generator.

Python >=3.8 Linux x86_64/aarch64/armv7 macOS x86_64/aarch64 Windows x86_64

This package is intentionally small. It exposes the fast Rust UUIDv7 generator to Python with a module name of fastuuidv7 and keeps the API close to the Rust crate.

Supported platforms

Prebuilt wheels are currently published for:

  • Linux: x86_64, aarch64, armv7
  • macOS: x86_64, aarch64
  • Windows: x86_64

Windows ARM64 is not part of the current wheel build matrix yet, but source builds remain possible with a local Rust toolchain and Python development environment.

Install locally

cd python
maturin develop

Usage

import fastuuidv7

raw = fastuuidv7.gen_id()
raw_sub_ms_4 = fastuuidv7.gen_id_with_sub_ms_4()
raw_sub_ms_8 = fastuuidv7.gen_id_with_sub_ms_8()
raw_sub_ms_12 = fastuuidv7.gen_id_with_sub_ms_12()
text = fastuuidv7.gen_id_str()
data = fastuuidv7.gen_id_bytes()
uuid_obj = fastuuidv7.uuid7()

same_text = fastuuidv7.format_uuid(raw)
same_text_from_obj = fastuuidv7.format_uuid(uuid_obj)

Convenience aliases:

fastuuidv7.uuid7()      # fastuuidv7.UUID object
fastuuidv7.uuid7_str()  # str
fastuuidv7.uuid7_hex()  # str without dashes
fastuuidv7.uuid7_bytes()

Benchmarks

cd python
python3 bench/bench.py

The benchmark measures repeated single calls, so the numbers include Python/native boundary overhead.

Current results on macOS arm64 with Python 3.14.4:

Package Callable Time per call
uuid-v7 uuid_v7.base.uuid7 2574.2 ns
uuid7 uuid_extensions.uuid7 1969.0 ns
uuid6 uuid6.uuid7 1946.2 ns
uuid uuid.uuid7 1588.9 ns
fastuuid7 fastuuid7.uuid7 126.3 ns
uuid-utils uuid_utils.uuid7 100.8 ns
c-uuid-v7 c_uuid_v7.uuid7 40.7 ns
fastuuidv7 fastuuidv7.uuid7 22.2 ns

On linux x86 GH c-uuid-v7 can still be about 5-10% faster than fastuuidv7 - 40 ns vs 44ns. There are bench results that run for each fastuuidv7 release.

Notes:

  • These are single-call throughput measurements, so they include Python/native boundary overhead.
  • Install comparison packages such as uuid-utils before running; missing packages are skipped.

Notes

  • Python 3.14 includes uuid.uuid7() in the standard library.
  • The main use case here is speed experiments and using a fast Rust-backed generator on older Python versions.

Download files

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

Source Distribution

fastuuidv7-0.1.8.tar.gz (52.2 kB view details)

Uploaded Source

Built Distributions

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

fastuuidv7-0.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (280.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fastuuidv7-0.1.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (222.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fastuuidv7-0.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (213.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fastuuidv7-0.1.8-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (279.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

fastuuidv7-0.1.8-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (280.5 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

fastuuidv7-0.1.8-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (279.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

fastuuidv7-0.1.8-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (219.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

fastuuidv7-0.1.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (210.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fastuuidv7-0.1.8-cp314-cp314-win_amd64.whl (189.7 kB view details)

Uploaded CPython 3.14Windows x86-64

fastuuidv7-0.1.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (280.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fastuuidv7-0.1.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (221.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

fastuuidv7-0.1.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (212.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fastuuidv7-0.1.8-cp314-cp314-macosx_11_0_arm64.whl (249.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fastuuidv7-0.1.8-cp314-cp314-macosx_10_12_x86_64.whl (261.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fastuuidv7-0.1.8-cp313-cp313-win_amd64.whl (188.8 kB view details)

Uploaded CPython 3.13Windows x86-64

fastuuidv7-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (279.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fastuuidv7-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (220.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

fastuuidv7-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (211.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fastuuidv7-0.1.8-cp313-cp313-macosx_11_0_arm64.whl (247.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fastuuidv7-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl (260.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fastuuidv7-0.1.8-cp312-cp312-win_amd64.whl (188.4 kB view details)

Uploaded CPython 3.12Windows x86-64

fastuuidv7-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (279.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fastuuidv7-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (220.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

fastuuidv7-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (211.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fastuuidv7-0.1.8-cp312-cp312-macosx_11_0_arm64.whl (247.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastuuidv7-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl (259.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fastuuidv7-0.1.8-cp311-cp311-win_amd64.whl (189.1 kB view details)

Uploaded CPython 3.11Windows x86-64

fastuuidv7-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (279.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fastuuidv7-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (220.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

fastuuidv7-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (212.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fastuuidv7-0.1.8-cp311-cp311-macosx_11_0_arm64.whl (248.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastuuidv7-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl (259.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fastuuidv7-0.1.8-cp310-cp310-win_amd64.whl (189.3 kB view details)

Uploaded CPython 3.10Windows x86-64

fastuuidv7-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (279.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fastuuidv7-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (220.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

fastuuidv7-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (212.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fastuuidv7-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (281.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fastuuidv7-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (222.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

fastuuidv7-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (214.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fastuuidv7-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (222.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

fastuuidv7-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (214.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file fastuuidv7-0.1.8.tar.gz.

File metadata

  • Download URL: fastuuidv7-0.1.8.tar.gz
  • Upload date:
  • Size: 52.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fastuuidv7-0.1.8.tar.gz
Algorithm Hash digest
SHA256 a8bfccc89e81b1780a4349327e3f46b51ddb7091a59cccf2721367db94a8fa9d
MD5 9ee888f3e2d4ca12d836a5f781e97efc
BLAKE2b-256 131995ee350705929440746b7fd229a195b669f3e875cf384ccdc26694f4b8b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8.tar.gz:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0727adf890ba65504270a8236597f1fe81e8866816075d6f61f5357236834995
MD5 99bbf7697f46729f1e097e7ee8275ce3
BLAKE2b-256 b34c444ee2c372678ce9ffe92e7032261d3e86fab39655cb1727ebf627e768a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 821c9e75210be97538c8be34f128da7a937e7a4f9221c7021cb3a2c3cb3f1a6d
MD5 bde75bd3c3261abf46e0d8b6450afffe
BLAKE2b-256 fcf7b00799a889f434ddd7e01c2b9e0ab589651f3b24b34145974e62e8cfa4ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 793efc8300166452ae2e5bd309965b4059fb0e73c4297a3842a5629375c6b0ae
MD5 8d52e7b7f71e82d4d96edbb6b6589715
BLAKE2b-256 e5db0433285d6c330db8aeabea39b78e0caeaa3f42547db578b8009141c74cb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6616fadcfa5a03bb7a11884059cab4ada885d9fa0f0fcdb26fc3977017c863c5
MD5 9b49522dbb4ff23dbd778c0144f8cee8
BLAKE2b-256 dfe8194e49951f6d66655f8096206c1612b9393aef8f06814d688081882b5789

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c87f3f8446bca3037f364bbd3f4b2fe1ae803d5e981864ff8ea731cead1b336
MD5 5f2761f6a97f64ecb2a2fa2ede3a00db
BLAKE2b-256 134220f9b8943e2133f5683bf84104d738c3490ad82d441eb1e11b8c3f82b033

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a12cebdc3046c3c954defc80f3a1279aa3655643ace23ab5227b52489c62d5b
MD5 e583a683c3e8ddffc5f074157ce90453
BLAKE2b-256 fb5aca46ed6a2091e21c141510f9f23f01203db49db0fd6c9b0c258a3b24466a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 da94d649ced279fba16feab980df5889062a1663f5c606348c4f741273c25968
MD5 cb53218c598bd2d41b83c84a90147b20
BLAKE2b-256 f2523a7f276e5700b9f600fc19b584304761b9664f3a7bf6d5fd4893a90423bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5208766ff04e6f9e7b323c04a37193f5c02570e29fd32785db6866ec1f86e7e4
MD5 577b58549590a8a3455dcd5d96429dd3
BLAKE2b-256 cbde3137543281f24f48dadfa49f4d49638224879e49fc22f349b5f3ff6a1563

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: fastuuidv7-0.1.8-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 189.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fastuuidv7-0.1.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 725f1c0fac6730c32029a49d1f666013386c0dc513f9aaafed791f46b24f65f7
MD5 ad2c2a8e504b3c1748e69aac4405b8b4
BLAKE2b-256 3b5210fea1584cec10d0b8f4523cebdc84bc7647041723fd0adf9957bde0af31

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp314-cp314-win_amd64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e56a2de89b69f6b41f6e760d9e12a69ed96ce883c2c553a3c8111c3335495a06
MD5 d951ee4a52d376848f3935dba7f02385
BLAKE2b-256 a17ffae781d15e13e7d9c41d8688c90a485598b7ed42413fa61c56e932e3a461

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 24854e45a749f073ae18fbdd67b6ff84b461cfded73d9d5a4da5b81d9380a90f
MD5 7601d197e55dd05c9f3ecc3b3868adf9
BLAKE2b-256 54be5c9afcfe4f65209744b6ca3bb4fbe1bffb15d441d77604e01912bdf8425c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77e9bbdf22e16e631b621fa885e956a980785ed0969a33762086f21f7d02b82c
MD5 ea22e59a1f93237b25f242b3dc72a0f6
BLAKE2b-256 dc371f65908f5ed784db6082c00f2e0e78704361ddef8f31a42c1f0e91b6c442

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f152978dfb8bc8e4cccb6c55618ebe5ce44bdefa6a8a49aa16c71ab72529bd43
MD5 612ae7b06d6ff351dfef5a3c7e5ae8b9
BLAKE2b-256 e581df44a38cd8f785b89f98d234fb12cac65045efe58c27f3fe34eca2821171

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ddc165ebdd20d79013b10b611aab2fd5f9dd7197dfdec3fb2f6d4b75278ee14d
MD5 72dc6f9a51ab5eee9e64b3d1c92e83da
BLAKE2b-256 81333a933d889556040b9c21b5a867a7963779e138c004db9569e503d18bcb8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fastuuidv7-0.1.8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 188.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fastuuidv7-0.1.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e9c795b53211cad22a95561ec98d3e1136603cfd4809182d16a8d013075a6773
MD5 ac0bd551d7cc5e62e6112516a06898a1
BLAKE2b-256 2539b39eea1ec84d7c7fcfbc347186daaa807aa5768cf87210655c36bf0b35e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp313-cp313-win_amd64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c62a8cd7123d3fa5099770142ec9dc77ee6a7a9ed050609b73146cd945f01e5b
MD5 760e64d3ee0e29f9b1106481bb0de293
BLAKE2b-256 f35088e4614f2393df1195b98c9238166e9d2b4c98ba1a55e3ff145d805f1fb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1c5f8a33df0aa56f5a99afcca0ad268cdea150d49c50773ee321251a235d057a
MD5 3a5aadb9745355b209053298a2f4aa77
BLAKE2b-256 c20e190981d4a6269bf85f2e2b87d2c1ef6823907bc34de742181c385301ad9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d92be29f5aa3328ca9e7a8440e2751b6e0d057b87c58bfa5200fe325e26d84a8
MD5 f6038a391ceb22f49c66b467b5c663dc
BLAKE2b-256 8433d028dc90eaa9c01a2ce3f64f1a24aeecfd0a0e2507b677cbe18905168005

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40ade38f4b7afe559289cfa2b540b90cee18f1784ea0a55683df8f746b9666b3
MD5 a6f475dbc52337ee52ef2512eb17e0fa
BLAKE2b-256 7328418fb803ef998d0c6a3406ecd07b0856f729c5cd0ef6854de57cf55859aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 57ba8791e925d64dd26bafef12df0364b080c18847726a9f4c12de7fc0ff4f7a
MD5 61ee497cc853f49db64e12b347fc25d0
BLAKE2b-256 e9429cad927bfc733fb4fe6505780bf8f4eef1328054d878e62311f69522139e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fastuuidv7-0.1.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 188.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fastuuidv7-0.1.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dbfc2fbff5c51c296fea02970ecfcb12a793dd78462ce1aa9027e4167482838e
MD5 9769b345740edb6b2d1056d620213ec1
BLAKE2b-256 01cc292c39ebfbd9243dc2ffa55c42791661cb7eac9d541312547d4de7e5a86f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp312-cp312-win_amd64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac4bef90f7f79a8f9e39c60b038952e61c41f28c9d4659404d38afb05434e402
MD5 0c8450e8f9eb228eba14fe67588aec11
BLAKE2b-256 6d6e445ff9a811e5a01387175263fadb97e2fbc6887090e6d245243c6faa26a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4097a75a9dc77f5bbf985a7d73f3658c34db05850fd749514b72a7e3844f817b
MD5 f9bba077f9ef3cfff7bcb3803b8728b3
BLAKE2b-256 7e1db3f03810cfb99df513f63f0beff6d691fcccb5a3da69f9612de51751cff3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e5bb8b711d121ef5e29b05f166c854513f2b5ef4f95e6e792e7b67f971b702d
MD5 31e6fcb8d1a35bfbc6e0273232eb7ffe
BLAKE2b-256 99f1fe9915f1c4215951685b31d7ff1cf285fd2ac3727738413e9b55a46a1c54

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cc9bddeac4ee38ada08d641550c284ec89a9eb9ea5ccb21e3eda1bd6ae0f7d9
MD5 b38f33e4bb4c94788d42c5f1d92aedd1
BLAKE2b-256 c2448dd12de72f117bb97063d906dd6c4c4c59264305f0dd4efbce9c77f395bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 93d01e85d1688f75b619fbcb4cade8789f9792e240db661e7ae8b9c5dde05f90
MD5 7e703a8cd48abe8a69ee9c40550c9331
BLAKE2b-256 07bb9d9525c54d30b7775f606c67886b61240378cd6b497e206aca483349427e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fastuuidv7-0.1.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 189.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fastuuidv7-0.1.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 152a15d336904d3a21aca3c4f630f31749bf198ac6e4477581a1b23abddb4756
MD5 edbfc57b6424ac9d11691abd095e084d
BLAKE2b-256 4f276b36260cc8aa8fd621774b842760a425dfe679f5866667567dfe7486bb18

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp311-cp311-win_amd64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74eac994b0b2735182e790571894c4c710f18acbfb2641cb08858dd1a473727f
MD5 ec47ea0bd4dbac7a05700ec1bc5f7ce9
BLAKE2b-256 f00ca868084a1d2e11ca513a9c7b2e7d62c53cf57e81a01e2ccfb8af2b827cc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bf119fe65dfece3d828251122cfaa1266e44b04b0987e069d99bc787f4aa7a33
MD5 14d04538a5a67437da761472e32ca5f7
BLAKE2b-256 bcdcc64f62f730045cadac25e66b9c6e39e2feed611a8d08f23b6f7ca05c18bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9c109f2de22e736c4c1f4a39bb70fc717c87d0317ac5549a662dfb9d6a4d323
MD5 63f241bf1964ae47ac90866952e18be5
BLAKE2b-256 bc28b6774355d4c1dc25382f28de190575caec67235d1b2f12cbfd47496b3e83

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 980a90bc5aae1ca936622461bcf98d004cbffc2a424a20bf430308657ef66023
MD5 30425ef6e07bfd343b4ffc726c24e9bd
BLAKE2b-256 55e7ff208c5db9ad8a6607a9bf13b715f5697a32cd3326662dc8ab8583e23efa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2ecacb6f97f65d10a0e1e801082de9d17d8e96baa738910e0a9bb8f61103f930
MD5 035e066040e5b9d242c443cf586caf92
BLAKE2b-256 ff7c0aff1391ccfdc5240cadaf08ac24b3499caf496f8942d9d62fd6f6ce8438

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fastuuidv7-0.1.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 189.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fastuuidv7-0.1.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 41ec86a6799e6b83d8ba86919fc06ebe2e96b0fb9c87f4d0f871550040192453
MD5 c131cbb22a9ee4ddc540507cb8c9c5d7
BLAKE2b-256 bf378772874feb3c7f32fe0e835990a0830f0eacb8f80e26f944cc9099d248f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp310-cp310-win_amd64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 146aa1ddade2e99a9df97366bd1a93929ebf281bfdb6d0994c357fe27a3aa616
MD5 ed76235abb1977baa5f244337e8a3da7
BLAKE2b-256 81d465fe47226ef6e6cbd4aa99cc6903c36ea2ec3c1b16c09ce5be63c5775b29

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 249fc3fd52f250653a213e38ba0a9604e49bcc6b9989e2fab29e63e1707b6a2e
MD5 c70fc88e38622b78e5a05b2d01d0334f
BLAKE2b-256 b2b33432644afa18026b3565b9155a2c30c1058be4db1d44a83e0652a0545e8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4fc66646a1ddfeaeaf5c670e49742d050527386ed792b5d01fbbbe7ba672ef72
MD5 4e6e27ceaf09edbd6b8c458a23672b5b
BLAKE2b-256 e0340ddf96d38932ab8fec5b9be4863fe646a67ead486842ab2f3fb0fdfbc7c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 043eb09a2331c863617d6247c3644da465b8422153b5a308af872f091f486ab2
MD5 06475b64938eac91bc39e3bf4f1dc0a0
BLAKE2b-256 6f7df67fbb9cdf920717b27b94626a9860b9cc3bf8c5a0d6b1dabcfe23496f06

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 104c924d63d6abddbf695719ea19d75d320d93218c7caeef1adb6772df46e72d
MD5 bc05067f09a66fd322b4adaeab101674
BLAKE2b-256 958fbae9d3ff99e1625874f45e39a7ba3f620d3b51f1d870e20ccd480d99d6c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16a2089e39b20c10f1b04c1ac601724fab8b7f8b3034c8c3fb0b0165bd04b5bd
MD5 21b467545fe6a6814918fda8d300ea1c
BLAKE2b-256 2c7c438e256df791ea173ccf4f0e1756221de3c96b34ed1a28f498292a5405ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6419f70dc98b5da39ef2fedd2884e47c03fe446810d2ab88a931ad39417727b8
MD5 17653068441a6b539e581330108f240a
BLAKE2b-256 e409245fa48416c3374fcfbbf77fe0b83966b8ec95feb11e1c7b5b29284bd2b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

File details

Details for the file fastuuidv7-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastuuidv7-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f1974bd6971e4134b6a0d72ac1eedf5f323357d1d3802ccb0a4117d35492c90f
MD5 9fe4738bfdca865ea681a66eb372dedb
BLAKE2b-256 86b78e5ed32db15160e38baaa2f0ef5ab37c8946a5fc4d93b06842df78fda511

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuidv7-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-python.yml on marcomq/fast-uuid-v7

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

Release history Release notifications | RSS feed

0.1.9

42 files

This release

0.1.8 This release

42 files

0.1.6

42 files

0.1.5

42 files

0.1.4

42 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page