Skip to main content

UUID v7 generation package using a C library

Project description

fastuuid7

CI PyPI version

A high-performance UUID v7 generation library implemented in C with Python bindings. The PyPI package is fastuuid7; the import package is uuidv7.

Features

  • Fast UUID v7 generation using C implementation
  • RFC 9562 compliant UUID v7 format
  • Python 3.8+ support
  • Thread-safe implementation
  • uuid.uuid7()-compatible API returning uuid.UUID
  • High Performance: See Performance Benchmarks section below
  • Usage Examples: See Examples section and examples/ directory

Installation

Using uv (recommended)

uv pip install fastuuid7

Using pip

pip install fastuuid7

From source

git clone https://github.com/nekrasovp/uuidv7.git
cd uuidv7
uv pip install -e .

Usage

Basic Usage

from uuidv7 import uuid7

# Generate a UUID v7 (matches Python's uuid.uuid7() API)
u = uuid7()
print(u)        # e.g., 018f1234-5678-7abc-def0-123456789abc
print(repr(u))  # e.g., UUID('018f1234-5678-7abc-def0-123456789abc')
print(u.time)   # Unix timestamp in milliseconds

Note: Since 0.2.0, uuid7() returns a uuid.UUID object, matching Python's built-in uuid.uuid7() function available in Python 3.14+. Use str(uuid7()) when a string is needed. See Python documentation for details.

Fast Paths

For performance-critical code that does not need a uuid.UUID object:

from uuidv7 import uuid7_bytes, uuid7_obj, uuid7_str

uuid_native = uuid7_obj()
uuid_text = uuid7_str()
uuid_raw = uuid7_bytes()

uuid7() remains the compatibility API. uuid7_obj() returns a compact native UUIDv7 object for maximum throughput while still supporting str(), int(), bytes(), ordering, hashing, .time, .hex, .fields, .version, and .variant. uuid7_str() and uuid7_bytes() are explicit raw-output fast paths.

Examples

For more detailed usage examples, see the examples/ directory:

  • Basic Usage - Simple UUID generation, validation, and performance demo
  • Batch Generation - High-throughput UUID generation and uniqueness verification
  • Database Usage - Using UUID v7 as primary keys with time-ordered records

Quick Start:

# Install the package first (required)
uv pip install -e .

# Run examples using python -m (recommended)
python -m examples.basic_usage
python -m examples.batch_generation
python -m examples.database_usage

# Or using uv run
uv run python -m examples.basic_usage

See the examples README for more details.

Development

Setup

# Install uv if not already installed
curl -LsSf https://astral.sh/uv/install.sh | sh

# Install dependencies
uv sync

# Install in development mode
uv pip install -e .

Running Tests

# Using pytest
uv run pytest

# Using uv
uv run pytest tests/

Linting and Formatting

# Run ruff linter
uv run ruff check .

# Run ruff formatter
uv run ruff format .

# Fix auto-fixable issues
uv run ruff check --fix .

Building

# Build wheel
uv build

# Build source distribution
uv build --sdist

Running Benchmarks

# Run performance benchmarks comparing different implementations
python benchmarks/benchmark.py

# Or using uv
uv run python benchmarks/benchmark.py

Performance Benchmarks

Run benchmarks before making speed claims:

python benchmarks/benchmark.py --output benchmark-results.md
python benchmarks/benchmark_competitors.py --install-optional --rounds 5 --output competitor-results.md
python benchmarks/clock_sources.py --output clock-source-results.md

The benchmark report includes OS, CPU, Python version, package versions, iterations, UUIDs/second, and ns/op for:

  • uuidv7.uuid7() returning uuid.UUID
  • uuidv7.uuid7_obj() returning a compact native UUIDv7 object
  • uuidv7.uuid7_str()
  • uuidv7.uuid7_bytes()
  • str(uuidv7.uuid7())
  • Python stdlib uuid.uuid7() when available
  • published fastuuid7==0.1.0 in an isolated temporary environment
  • optional competitors when installed: uuid-utils, fastuuidv7, uuid7, uuid7-rs, c_uuid_v7, uuid-v7, and uuid6

Latest Release Benchmark Snapshot

Final release-check benchmark for 0.2.0 on GitHub Actions Ubuntu, x86_64, CPython 3.14.5:

Implementation Version UUIDs/sec ns/op Iterations
uuidv7.uuid7_bytes() 0.2.0 8,651,617 115.6 1,000,000
uuidv7.uuid7_str() 0.2.0 6,701,999 149.2 1,000,000
fastuuid7==0.1.0 uuid7() 0.1.0 2,673,281 374.1 1,000,000
uuidv7.uuid7() 0.2.0 1,922,267 520.2 1,000,000
str(uuidv7.uuid7()) 0.2.0 774,285 1,291.5 1,000,000
uuid.uuid7() 3.14.5 396,208 2,523.9 1,000,000

Latest local competitor comparison after the native-object optimization on Linux x86_64, CPython 3.12.3, using 1,000,000 iterations and 5 rounds per case:

Shape Implementation Version ops/sec best ns/op median ns/op
custom object c_uuid_v7.uuid7() 0.0.11 29,313,107 34.1 34.9
custom object uuid7_rs.uuid7() 0.0.9 28,611,589 35.0 35.1
custom object uuidv7.uuid7_obj() 0.2.0 28,056,053 35.6 36.2
bytes uuidv7.uuid7_bytes() 0.2.0 25,474,951 39.3 39.5
string fastuuidv7.uuid7() 0.1.5 24,702,409 40.5 40.5
string uuidv7.uuid7_str() 0.2.0 20,895,972 47.9 48.8
UUID-compatible uuidv7.uuid7() 0.2.0 13,328,017 75.0 75.6
UUID-compatible uuid_utils.uuid7() 0.16.1 12,215,938 81.9 82.8
UUID-compatible uuid7_rs.compat.uuid7() 0.0.9 3,258,733 306.9 310.2
UUID-compatible c_uuid_v7.compat.uuid7() 0.0.11 2,852,392 350.6 354.5

Clock-source benchmark from the final release-check CI run:

OS Clock source ns/call Iterations
Linux x86_64 clock_gettime(CLOCK_REALTIME_COARSE) 6.783 10,000,000
Linux x86_64 clock_gettime(CLOCK_REALTIME) 28.664 10,000,000
Windows x86_64 GetSystemTimeAsFileTime 2.218 10,000,000
Windows x86_64 GetSystemTimePreciseAsFileTime 31.240 10,000,000

CI/CD

This project uses GitHub Actions for continuous integration and deployment:

  • CI Pipeline (.github/workflows/ci.yml):

    • Runs tests on Python 3.8 through 3.14
    • Runs linting with ruff
    • Builds the package to verify it compiles correctly
    • Triggers on push and pull requests
  • Wheel Pipeline (.github/workflows/wheels.yml):

    • Builds wheels with cibuildwheel for Linux, macOS, and Windows
    • Verifies installed wheels can import uuidv7 and generate UUIDv7 values
  • Publish Pipeline (.github/workflows/publish.yml):

    • Automatically publishes to PyPI when a new release is created
    • Builds platform wheels with cibuildwheel plus an sdist before publishing
    • Uses trusted publishing (no API tokens required)
    • Can be manually triggered via workflow_dispatch, but GitHub Releases are the recommended release path

Publishing a New Release

  1. Run tests, builds, and benchmarks.
  2. Review benchmark results and decide whether optimization is needed.
  3. Create a new GitHub Release.
  4. The workflow will automatically build and publish to PyPI.

License

MIT License - see LICENSE file for details.

Author

Pavel Nekrasov

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

fastuuid7-0.2.0.tar.gz (26.6 kB view details)

Uploaded Source

Built Distributions

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

fastuuid7-0.2.0-cp314-cp314-win_amd64.whl (39.1 kB view details)

Uploaded CPython 3.14Windows x86-64

fastuuid7-0.2.0-cp314-cp314-win32.whl (38.3 kB view details)

Uploaded CPython 3.14Windows x86

fastuuid7-0.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (66.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fastuuid7-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (37.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fastuuid7-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl (37.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

fastuuid7-0.2.0-cp313-cp313-win_amd64.whl (38.7 kB view details)

Uploaded CPython 3.13Windows x86-64

fastuuid7-0.2.0-cp313-cp313-win32.whl (37.9 kB view details)

Uploaded CPython 3.13Windows x86

fastuuid7-0.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (66.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fastuuid7-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (37.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fastuuid7-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl (37.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

fastuuid7-0.2.0-cp312-cp312-win_amd64.whl (38.7 kB view details)

Uploaded CPython 3.12Windows x86-64

fastuuid7-0.2.0-cp312-cp312-win32.whl (37.9 kB view details)

Uploaded CPython 3.12Windows x86

fastuuid7-0.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (66.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fastuuid7-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (37.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastuuid7-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl (37.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

fastuuid7-0.2.0-cp311-cp311-win_amd64.whl (38.7 kB view details)

Uploaded CPython 3.11Windows x86-64

fastuuid7-0.2.0-cp311-cp311-win32.whl (37.9 kB view details)

Uploaded CPython 3.11Windows x86

fastuuid7-0.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (65.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fastuuid7-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (37.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastuuid7-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl (37.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fastuuid7-0.2.0-cp310-cp310-win_amd64.whl (38.7 kB view details)

Uploaded CPython 3.10Windows x86-64

fastuuid7-0.2.0-cp310-cp310-win32.whl (37.8 kB view details)

Uploaded CPython 3.10Windows x86

fastuuid7-0.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (63.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fastuuid7-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (37.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fastuuid7-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl (37.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fastuuid7-0.2.0-cp39-cp39-win_amd64.whl (38.7 kB view details)

Uploaded CPython 3.9Windows x86-64

fastuuid7-0.2.0-cp39-cp39-win32.whl (37.8 kB view details)

Uploaded CPython 3.9Windows x86

fastuuid7-0.2.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (63.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fastuuid7-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (37.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fastuuid7-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl (37.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fastuuid7-0.2.0-cp38-cp38-win_amd64.whl (38.6 kB view details)

Uploaded CPython 3.8Windows x86-64

fastuuid7-0.2.0-cp38-cp38-win32.whl (37.7 kB view details)

Uploaded CPython 3.8Windows x86

fastuuid7-0.2.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (63.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fastuuid7-0.2.0-cp38-cp38-macosx_11_0_arm64.whl (37.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fastuuid7-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl (37.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file fastuuid7-0.2.0.tar.gz.

File metadata

  • Download URL: fastuuid7-0.2.0.tar.gz
  • Upload date:
  • Size: 26.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fastuuid7-0.2.0.tar.gz
Algorithm Hash digest
SHA256 a41f0d24a8172556d3299bab5744ef20ee4479f1c1fcf5cc8c65bd1a463ffb91
MD5 90bc9b9fbca170e14745db8fbf5fd1f1
BLAKE2b-256 13f8d3b1fcd7cd4dfb9e6ed05a592065dd3de53e00e975611d71119c5ea5e167

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0.tar.gz:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: fastuuid7-0.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 39.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fastuuid7-0.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a8b4e43e61bf3c0501092bf2cf3a4f0a0f190837cdfb1643eb6fd16de13f3256
MD5 62c449819e3408544129b8e25127b4d4
BLAKE2b-256 ff692783fdc82c2b4512e0720dc40b6529e01336d8bdb5e32c5a65dc401d2251

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: fastuuid7-0.2.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 38.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fastuuid7-0.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2f7ce43e7cd328714f1716c75e8222624d32ed019024276eb8088406b2bbd877
MD5 72ad99229dc146706bad2776087196c5
BLAKE2b-256 2ce59cec6228944dfd122d78730e5f28679777d694c1ddaf10cf63876fa6f596

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp314-cp314-win32.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastuuid7-0.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c5eab7679a6971955fc9552eb11cc139cf78f7b87013d2afce84366595739d8
MD5 9d49582f9a03f26e541c395e31c7ae34
BLAKE2b-256 fb56186524220e4725b061dcbe9cd6bb6bf977d5d953df2dc60eb69233e46abd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastuuid7-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d4b08f859b6b60a928013fff703616a9e12a4be4e253251e157b688d09bf2b1
MD5 51cd0eefd5a46a19e46beb849a08433e
BLAKE2b-256 026a2d5885403044dd6546a5e69316b077da823d62b1fcd5c11743291eaf9279

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fastuuid7-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 038168178892eb3b28a02256b25fed97b762c5787c30b4eb579454f8d6f4bd42
MD5 3d97891f02c87e06a679408c28b2941c
BLAKE2b-256 d762700733d71aa4addd1fb45d98d16b6504674dbe6882a3fceefaf94372adb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fastuuid7-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 38.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fastuuid7-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0ae0016e94f83bc81d2e68d9e32f57760669a77c4bfe39c03d6884883c38ac0e
MD5 741128bd202202e1aacd3a01b25e2d9d
BLAKE2b-256 8d9c326540a613e25a0e2b082de041bdf410c4023ad2a15d47894eda7e9331be

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: fastuuid7-0.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 37.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fastuuid7-0.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 dd9fc5946ba88ab6e47206db6cb966e998ce0facc29990e4a3fe9b98a902f89d
MD5 c2d55d28aa0cd4c1ca39a4fc8b01f363
BLAKE2b-256 5cb458720bf7c0ffac45a23946b6f8f74abe4c711ca5ea16cf2c89032cdd151c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp313-cp313-win32.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastuuid7-0.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 91011d5c726d43d501e77406caba2a327ac0d49c2bad94c659d321c5823b4dbf
MD5 e95d301bef18a26fe93978f0c1a33d17
BLAKE2b-256 90307e7e96e93691dbab636d1b537e1563ec34e2603848f1ff195a673868c96d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastuuid7-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 504721766d86d0cab864035c6469ccf1ea08eb98baf867c38a46608501f2911d
MD5 9c9a49029a5552b4ec2acc3ef5c342ac
BLAKE2b-256 ea825e9951918999d88a92015d51bf4023bc2f6e0f37d9bcf735eed763f42514

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fastuuid7-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6b90e436952656636028b67ee8cec610a3f3a744b00d273cce2826088caf1213
MD5 765a428a641f912e78f4abfd3cd581fd
BLAKE2b-256 764db6422f07746c8bcb4495fc85236abae1d4d6cf68bc12f401cbdd6c449837

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fastuuid7-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 38.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fastuuid7-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f5c08888811f3e02182319f2e0e98dc0baa67c129421dee1dbdbd003eb4bb890
MD5 ec0191bf9991bad27fd54d848b852a9b
BLAKE2b-256 e15d8d631718012d216de4d758ee857255f08f705adbb2e8dab49aaa330b97f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: fastuuid7-0.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 37.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fastuuid7-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 487e6f6177b207938f82eb0dd8b77f9904fa12842ccf43b48234cb6119f04695
MD5 b44ef5cd01370501489c2175d8a739b7
BLAKE2b-256 7f8f230464485d8ae7e3754f2343419cb0b3e514480def412f6c1e73bf5f84e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp312-cp312-win32.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastuuid7-0.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9f970f44688b081401b74b9ee338dca868b277b3e12f2234700533143f8504e2
MD5 61df73ce47c195a787166d3aa94110cf
BLAKE2b-256 bfafff7889f60a9a8fa14e55d6c52b724a04fdd2b28eecbece388834866b6f3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastuuid7-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 020e8f3fb4ca25d855ead21e1e2e9ff18b007cbdeafc5016b6ee960b14107727
MD5 67f0140e396433935b5a82da6838e25b
BLAKE2b-256 17364ff338056bce784c8332d20ab272a451f15fda2e9ad8780e51a722627670

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fastuuid7-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0c288ca6dbcb165be6197798108c6e25a0deacb17e0c9c4a211794e74c3a7312
MD5 6a96c5181e2d30cba4a60b7f2a0578e9
BLAKE2b-256 9716821e7701b8f4822ec680353f81d599cdd87c3bca59ac3faa7055a9f6d6fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fastuuid7-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 38.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fastuuid7-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2d8d44651912d7bc555b09cd2397e22bc020b06cca3107b7096c0e61c38aa147
MD5 acf51f8ef2775335a3e59c7ded1ccb60
BLAKE2b-256 e6dd5cd0d3dd520b3ec2dbdf546972ab61f8597d4773e25e279664d7a886b206

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: fastuuid7-0.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 37.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fastuuid7-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e53a953d6e9c62631eb3b2b477ea8198daf68e3954ad7c2b90331e6e508a315c
MD5 515edaa11121d3b743833925383b5508
BLAKE2b-256 b706aa666e7c64ebe04d1717c8267c12fc685d1d42142b0cc55e4b8aae2eadc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp311-cp311-win32.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastuuid7-0.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be5be83702c631009022f8427c03e64499f74d7520a3ea068118625609429c84
MD5 859f7a32146f45f681501b6a4cd62baa
BLAKE2b-256 f6ec426680e024958b6cb0076d4feb5c7d29056ec641f60d13d26cf603f0cc9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastuuid7-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db5a325b444d6b985833e32f508da6123db01b033572ef978861fcf1775026d6
MD5 41a4249927f0c78d39b360508d768b87
BLAKE2b-256 fc073f9a980aa85f2ec1d7ad33b8ae5cb2de6c5d2fe9cab864b6656243a9ad79

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastuuid7-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ebaa3e986964c545d011b680ae73339ec6905613e4e66804898fa59f036917f6
MD5 f380ece694d3d2cf8ed3654971421e76
BLAKE2b-256 18d394c046a6cb3ab29df58e38bb9fa4918fa69fc7489822e0525f9420f7c261

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fastuuid7-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 38.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fastuuid7-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e51254dd2c7354f865e21502035ba8445184b3f96fe7ea4cf47af0b85f03ac30
MD5 07414c9a9bab3992b422e6972ea4400c
BLAKE2b-256 4d3592ea4296fbae824f94d5d2de58ec25a60dead4d2bdf6332a96935f0484a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: fastuuid7-0.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 37.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fastuuid7-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 65efa8cbe3fbee1a9d3b24955bbda1c9e3059b3be02d89ccfd8dbfe24357922e
MD5 8602fecddc494261d114252c9598ada2
BLAKE2b-256 e6d1a5a5d6c37dd6d1d0465eec6c69f2513a72f9b73683fc8a6a565d8a950f6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp310-cp310-win32.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastuuid7-0.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e5ef0f7948f7ee132c172dfcbf013f5d9dcaf1d44813c53c9a70326a75927249
MD5 ba54917badf10e949b406fac636d9283
BLAKE2b-256 963694696b85e4cd305afc229d3e5be2b3608c50b3d343e289e5ba991bf5900c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastuuid7-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 438522137da52850fc46cf05ebb5b8a14e256e5324a2326da47338db8ccbeb62
MD5 1c53f8aaab0e1d8afad4797fa8bdf398
BLAKE2b-256 8d37a1bb442dc37b8f9139aa8c96f6f6152f2cc3cde5d11f700827ddbc2283d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastuuid7-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9fe88d025dbcd9731bbf1f2698d3fd6a92d0b61b3ad60c89b68634f73468bd93
MD5 6feb8a9547ec21ebf1581b306b94e142
BLAKE2b-256 5fbe42122607e79511c5bdc2d02a5f26510e0173825020a2e6c120649799b3f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fastuuid7-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 38.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fastuuid7-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 feee1f91bf4e95680a562a90e8a218505856de7eb07baa6578581c4cf4d21729
MD5 2d876ea27af1508b72f4a4d5818df2c8
BLAKE2b-256 c18c2cff16eab854a2389538856462b86d78ae6c3d5473b57677673b79dc5bf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp39-cp39-win_amd64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: fastuuid7-0.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 37.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fastuuid7-0.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 880ec6ff3e051ed9db0a21e1d3fc9de54c3d2493468ef063fcb6b27fa80e63c8
MD5 863bcbd3f9cd25996757c1ae0d7ed74d
BLAKE2b-256 ae63c79c8fb389c03d0e0e9be4af19f2fea658bd2b33f38d42ddb2cbff5fa9c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp39-cp39-win32.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastuuid7-0.2.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 912b4ba155e182afd34f058833a8b4b18f9be5ef39d1572a52b5d86e4d46b20b
MD5 7b170dc37ae0a46e82661e929ed43799
BLAKE2b-256 40719335af2b596c8c17c53f0c3cf3af06dd5240a3f2c1acd7d52c6ba51235f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastuuid7-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5349463219c1c3a4e94c5ff6799585d35baa7b874ff8602cc227a5abac3bf806
MD5 a13ce65952ef6ae99f8891825e7f1392
BLAKE2b-256 bb2be52d2bcaf9458fb915cf0a7dc6f1f12ba5f67bc5cc484f8f4ff4de227a26

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastuuid7-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f505f861a5fcdcb6f7655b5081b97f1b8cd696b86285791fe0ee41a047a277c6
MD5 bb0062d07885d241505e25789bc212c3
BLAKE2b-256 fb76d0241164d63f6e5682e7dd83143d46a57d4c6718d996eefecf802bc8006b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: fastuuid7-0.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 38.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fastuuid7-0.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 27037dc5cf9984f7ea334ef02ff000e74f4afe6c1ed973fdf6ce652e79ac4642
MD5 6f6bd86ee2c5e8f491f049610b959230
BLAKE2b-256 c747f5628c4afb475cef555e67f45fe619e6aba1723ee56d6cce7d59de509287

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp38-cp38-win_amd64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: fastuuid7-0.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 37.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fastuuid7-0.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 625562325a511b4e6bb885a9947ef2d09f783b16aec744ab54700352705e9347
MD5 32f8ca998efa322404d280773f10a535
BLAKE2b-256 4cc8706096c2509a2bc55a84a53d66e93945126adcb95af989549a207c68a7a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp38-cp38-win32.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastuuid7-0.2.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1cccf615a45982c218d5ff21ee33433dbeaf2ca1452e43bf722ea060c235e7ff
MD5 48becbfbc3befe59278d623da8941e86
BLAKE2b-256 d243bb330ce9bc2e50a7a0febd5e23222c657c36c0b78e97bcedcea5c1a5596c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastuuid7-0.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87cddcec71fa99945fdb7ddf55d6287b08f971e890aec3fd0043b1e176c095c5
MD5 9a78e7431cc0ebf745966b2e2e484cd6
BLAKE2b-256 1606d4cdd33390686e4c35650c719483e7850dd4c68d39eb7a449c740194ac14

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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

File details

Details for the file fastuuid7-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastuuid7-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 295ed52d1fff6ee5ca598be84c2d7159cb6240e0ee74d2d72dbeaf225e7510b3
MD5 7ff07b72975ae05d0e36ebdd7ed4cfbf
BLAKE2b-256 61ef7961e34284cd5c43132f47960ed43a0491543e614e48e919cef5173c951d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastuuid7-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: publish.yml on nekrasovp/uuidv7

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