fastuuid7
High-performance, fork-safe UUIDv7 generation for Python 3.9-3.14, implemented
in C and compatible with Python's uuid.UUID API.
Features
- RFC 9562 UUIDv7 layout with monotonic ordering within a millisecond
- Random fields sourced from the operating-system CSPRNG
- Automatic entropy and counter reset after a process fork
uuid.uuid7()-compatible API returninguuid.UUID- Native object, canonical string, and raw bytes fast paths
- Python 3.9-3.14 on Linux, macOS, and Windows
- Typed
fastuuid7and backward-compatibleuuidv7imports
Python 3.14 includes uuid.uuid7() in the standard library. Use the standard
library when it meets your needs. fastuuid7 is intended for older Python
versions and workloads that benefit from its explicit output shapes and lower
per-call overhead.
Installation
Using uv
uv add 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 fastuuid7 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
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 fastuuid7 import (
uuid7_bytes,
uuid7_bytes_many,
uuid7_many,
uuid7_obj,
uuid7_str,
)
uuid_native = uuid7_obj()
uuid_text = uuid7_str()
uuid_raw = uuid7_bytes()
uuid_batch = uuid7_many(1_000)
packed_batch = uuid7_bytes_many(1_000) # 16,000 contiguous 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. The *_many() functions generate a batch in one C call;
uuid7_bytes_many() uses one contiguous bytes allocation.
The original from uuidv7 import ... path remains supported for existing
applications.
See the API reference for complete scalar and batch contracts.
Security properties
Random fields are read from a buffered operating-system CSPRNG. The generator
detects PID changes and discards inherited entropy and counters after fork().
UUIDv7 embeds its creation timestamp and is therefore an identifier, not a
secret or authentication token. See the security policy.
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 - Real SQLAlchemy 2 primary-key integration
- Integration Recipes - Django, Pydantic/FastAPI, and PostgreSQL
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
uv run --with sqlalchemy 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 the project and development dependencies
uv sync --extra dev
Running Tests
# Using pytest
uv run --extra dev pytest
# Using uv
uv run --extra dev pytest tests/
Linting and Formatting
# Run ruff linter
uv run --extra dev ruff check .
# Run ruff formatter
uv run --extra dev ruff format .
# Fix auto-fixable issues
uv run --extra dev ruff check --fix .
# Check the typed public API
uv run --extra dev mypy
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/benchmark_batch.py --output batch-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:
fastuuid7.uuid7()returninguuid.UUIDfastuuid7.uuid7_obj()returning a compact native UUIDv7 objectfastuuid7.uuid7_str()fastuuid7.uuid7_bytes()str(fastuuid7.uuid7())- Python stdlib
uuid.uuid7()when available - published
fastuuid7==0.1.0in an isolated temporary environment - optional competitors when installed:
uuid-utils,fastuuidv7,uuid7,uuid7-rs,c_uuid_v7,uuid-v7, anduuid6
Published benchmark results must describe both the output shape and generation guarantees. In particular, CSPRNG-backed and non-cryptographic generators are not presented as equivalent cases. Release benchmarks are generated in CI from the exact release candidate rather than copied from a developer workstation.
CI/CD
This project uses GitHub Actions for continuous integration and deployment:
-
CI Pipeline (
.github/workflows/ci.yml):- Runs tests on Python 3.9 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 glibc and musl Linux wheels for x86-64 and ARM64
- Builds macOS x86-64/ARM64 and Windows x86/x86-64/ARM64 wheels
- Verifies both import paths and the installed batch API
-
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
Follow the complete release checklist, including the security-advisory order for 0.3.0.
- Run tests, builds, and benchmarks.
- Review benchmark results and decide whether optimization is needed.
- Verify all source versions with
python tools/check_release_version.py v0.3.0. - Create a new GitHub Release.
- The workflow will validate, build, inspect, and publish the distributions.
License
MIT License - see LICENSE file for details.
Author
Pavel Nekrasov
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fastuuid7-0.3.0.tar.gz.
File metadata
- Download URL: fastuuid7-0.3.0.tar.gz
- Upload date:
- Size: 37.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
893fe116ec005da1ba54bffa4011f0beaae3b031892e0651b512dbf4a8d3163f
|
|
| MD5 |
554b71edee6926763f2dc2f1981869c9
|
|
| BLAKE2b-256 |
6d9adacc413564d22c91604938a2a532af470c9d03bf98e4d2e2f191aea42ac8
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0.tar.gz:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0.tar.gz -
Subject digest:
893fe116ec005da1ba54bffa4011f0beaae3b031892e0651b512dbf4a8d3163f - Sigstore transparency entry: 2153917763
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 18.8 kB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c286fb1595d2cc09a8046d18e27d5587d6ad8f90b9abaea1b50cb7042639395
|
|
| MD5 |
571ffc77eec5e7732a45dee9819d6a3d
|
|
| BLAKE2b-256 |
56076302ea976188acbdd71e3f9e0e9496d714c5c3112216a35c3926d5abcebc
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp314-cp314-win_arm64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp314-cp314-win_arm64.whl -
Subject digest:
9c286fb1595d2cc09a8046d18e27d5587d6ad8f90b9abaea1b50cb7042639395 - Sigstore transparency entry: 2153924533
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 19.3 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c16902d376e171752e172554c43de39b282d1c3c182c0b989e159993c6889c0d
|
|
| MD5 |
3289c0406d19d566ac4921c63316d72c
|
|
| BLAKE2b-256 |
0e04b50b53d08757cd81999e471b1a19cbcb2aefd3756579ca9e85f8014a6f3a
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp314-cp314-win_amd64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp314-cp314-win_amd64.whl -
Subject digest:
c16902d376e171752e172554c43de39b282d1c3c182c0b989e159993c6889c0d - Sigstore transparency entry: 2153919306
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp314-cp314-win32.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp314-cp314-win32.whl
- Upload date:
- Size: 18.2 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
042fbac6a5fd0d6322cd38c610967ff0df2b36b438d18440f81359f1698cba5f
|
|
| MD5 |
56015d0bf6683fba798d0b9da6c7be6a
|
|
| BLAKE2b-256 |
a25c88366bcbae5dddc07621f3fac379c994812242acf3f61d2ef5534d2193af
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp314-cp314-win32.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp314-cp314-win32.whl -
Subject digest:
042fbac6a5fd0d6322cd38c610967ff0df2b36b438d18440f81359f1698cba5f - Sigstore transparency entry: 2153925299
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 51.3 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45d5f1952f412ed38101c921f1302d039bb8ef6996f48bcb46b154252401fd3d
|
|
| MD5 |
e9409911ea34e6642eb75e304170fe49
|
|
| BLAKE2b-256 |
4bf8a86a0b25623a91464a5cc1663d1b61ad3953d0d0659cd01d96c84f452e94
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
45d5f1952f412ed38101c921f1302d039bb8ef6996f48bcb46b154252401fd3d - Sigstore transparency entry: 2153925018
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 50.5 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53c75c1c0b99ef1718162e1fb313e699e55a9fcbf3d91c06f2b27a45e40ad983
|
|
| MD5 |
76b18e2c929155823120a7fb27ec5af1
|
|
| BLAKE2b-256 |
d50ab2c2d2de022731bc0f2c74fcd2f72aa59e16210aaa13e7d8533a853aea01
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
53c75c1c0b99ef1718162e1fb313e699e55a9fcbf3d91c06f2b27a45e40ad983 - Sigstore transparency entry: 2153921562
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 51.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5fc9b92483d34c9c61f1d13793e2bd37947453b14d6af246a02dbbd6989b196
|
|
| MD5 |
65556b7b2bb0b9d67f7b2bb820202319
|
|
| BLAKE2b-256 |
6b60e6b5b88d29464f3d2d3855a4188b53b1499b8d1eec53ba063ea7dd76b009
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
d5fc9b92483d34c9c61f1d13793e2bd37947453b14d6af246a02dbbd6989b196 - Sigstore transparency entry: 2153931836
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 51.7 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50e19dce5b0ae8156f8f0fb4af88532605b51752299379cd5be1e5526db3c5f9
|
|
| MD5 |
465830608879a59903ac3351e270e48d
|
|
| BLAKE2b-256 |
2a75eea83cb9960c6cdb905ada257c3efd3ac9cd9dd73ccdba94f8dd58f68639
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
50e19dce5b0ae8156f8f0fb4af88532605b51752299379cd5be1e5526db3c5f9 - Sigstore transparency entry: 2153930799
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 17.7 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65a2baf181c0ae0949bbb364fa022a28e066043245de1ee6b14be9a7214ab7c3
|
|
| MD5 |
72ca1072a6bf7e9a795d33aa898931ed
|
|
| BLAKE2b-256 |
ee68173ece42b8163d4d8319143680d80ddb91f0125841c9c4c6764000ce6f21
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
65a2baf181c0ae0949bbb364fa022a28e066043245de1ee6b14be9a7214ab7c3 - Sigstore transparency entry: 2153923621
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 17.7 kB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dbd851d7b17767beb00301b209646d2197c71cfc798b5c23fcb9c8b15ba42422
|
|
| MD5 |
3b26e8386278aa431a688aab8f013f72
|
|
| BLAKE2b-256 |
72ab6883baadd6c290995133dc6da123d6729bf7df6c4f41250977152b64ad09
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl -
Subject digest:
dbd851d7b17767beb00301b209646d2197c71cfc798b5c23fcb9c8b15ba42422 - Sigstore transparency entry: 2153934189
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 18.4 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
380f0a2d2e2a29874721670d014395666916ccc25e3604241b2d4f36234c562f
|
|
| MD5 |
79c659a0107ba148f11d252bab3bc05f
|
|
| BLAKE2b-256 |
ac54a5cc8abf4fdb78987101ae942a07e63dedd79c49f1f923b7e09ea9e300e3
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp313-cp313-win_arm64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp313-cp313-win_arm64.whl -
Subject digest:
380f0a2d2e2a29874721670d014395666916ccc25e3604241b2d4f36234c562f - Sigstore transparency entry: 2153917972
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 18.9 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4cc90fc3ced3eccee21ad465208409f1fe1e3fab328e34637ccc8d4d8c2cd6b
|
|
| MD5 |
dda46423ac23872e8a53076c49dca319
|
|
| BLAKE2b-256 |
c9f1b72f8fd90235df2dfe97eb00bf4942b0055819f7d735a5c484b6f201a3ba
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp313-cp313-win_amd64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp313-cp313-win_amd64.whl -
Subject digest:
e4cc90fc3ced3eccee21ad465208409f1fe1e3fab328e34637ccc8d4d8c2cd6b - Sigstore transparency entry: 2153936547
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp313-cp313-win32.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp313-cp313-win32.whl
- Upload date:
- Size: 17.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
509bcb75d52a741af5c78649ad028f4974105125ec15be667ec5b14e974b015a
|
|
| MD5 |
a6166c29c70278faae5d717e6d498453
|
|
| BLAKE2b-256 |
e94e6f58be46ccc512064480d06f1b2fe851c8f2e006bd1226fd596eb3aeb460
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp313-cp313-win32.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp313-cp313-win32.whl -
Subject digest:
509bcb75d52a741af5c78649ad028f4974105125ec15be667ec5b14e974b015a - Sigstore transparency entry: 2153929148
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 51.3 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0b0f2bd87bfe1b2bce44f489019b6cfda5281cd7ba846a2f4ba4d51fee7adb1
|
|
| MD5 |
b005b3ba35b454a1d9dc5a18889fe4ab
|
|
| BLAKE2b-256 |
405864b79e07168ae502151edb46cc62b5f6670705d41d4f65095e546f323f98
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
a0b0f2bd87bfe1b2bce44f489019b6cfda5281cd7ba846a2f4ba4d51fee7adb1 - Sigstore transparency entry: 2153930387
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 50.5 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
897b63b0f07b104b67639150ce46aa750e0841c3277cb8977b2f849c995893f8
|
|
| MD5 |
b4087cc043e72e3fe4d7c556d4b5242c
|
|
| BLAKE2b-256 |
c595cbe36a4f461d0e79705c605d8b4634ef6cd93d13661a917387d809a84ca1
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
897b63b0f07b104b67639150ce46aa750e0841c3277cb8977b2f849c995893f8 - Sigstore transparency entry: 2153924728
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 51.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d06cdb744760d04ddcb1b59357909b074adedeb126bb729067249591557cb0c
|
|
| MD5 |
4d0d1e3d782d3d638585f21e05bb497f
|
|
| BLAKE2b-256 |
a0ed5d939100b7e0bab65e8cfc1fb94dd333e834b0c8225af7b139a2371c192c
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
0d06cdb744760d04ddcb1b59357909b074adedeb126bb729067249591557cb0c - Sigstore transparency entry: 2153933211
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 51.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6da58a3e8e398522634c2d66ce81e7b14f61338b24221df8eb37c664be86b41
|
|
| MD5 |
3c8250579fd3c54f8b07e86e6488043f
|
|
| BLAKE2b-256 |
a29893a0cb5f7ba5dfd6e6f805ea0d67f58b1181e522840d0dbd9f3190d7bdc7
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
d6da58a3e8e398522634c2d66ce81e7b14f61338b24221df8eb37c664be86b41 - Sigstore transparency entry: 2153920424
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 17.6 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d5aa774654ade3776e273636d9ff7aeab4799dea9a8083e876b693b630529af
|
|
| MD5 |
420c068a34b5ef64b85d6d236eed676f
|
|
| BLAKE2b-256 |
7416f1da27b89a4c3b4a7ab31292e5a54c644336551b1ed80510103d69e68ab7
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
5d5aa774654ade3776e273636d9ff7aeab4799dea9a8083e876b693b630529af - Sigstore transparency entry: 2153921951
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 17.6 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec2718e068475610b11a1983aef8fac186abec701812b4cb9ec7b169a1601909
|
|
| MD5 |
012ef3b17e527962b2dc7e87d99d1385
|
|
| BLAKE2b-256 |
ff75628131527e94db6ce306e7ba04e6109e057ec8cda8abbb4124fd46fda9fb
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
ec2718e068475610b11a1983aef8fac186abec701812b4cb9ec7b169a1601909 - Sigstore transparency entry: 2153922759
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 18.4 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a643bb50caca4b856bdd02b0d71fbfd891554a08d3943cd42fd521c249ce67b3
|
|
| MD5 |
dee6b14b9f2dbd833ab269eff1d04329
|
|
| BLAKE2b-256 |
94085e052e9d8408ed434aeaa3213e904379138fd4628987df8aae231f1c7f72
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp312-cp312-win_arm64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp312-cp312-win_arm64.whl -
Subject digest:
a643bb50caca4b856bdd02b0d71fbfd891554a08d3943cd42fd521c249ce67b3 - Sigstore transparency entry: 2153918688
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 18.9 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cab9d9c1a3c5100ce7c785ad367cba1757186cee9a1d180a1bc3468f09a741c8
|
|
| MD5 |
f6363faf00c3856db3950541bc0da785
|
|
| BLAKE2b-256 |
661d624260baeb234bd606582ae3ef44e7febaf35934e8f560aa8d573e90af90
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp312-cp312-win_amd64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp312-cp312-win_amd64.whl -
Subject digest:
cab9d9c1a3c5100ce7c785ad367cba1757186cee9a1d180a1bc3468f09a741c8 - Sigstore transparency entry: 2153936198
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp312-cp312-win32.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp312-cp312-win32.whl
- Upload date:
- Size: 17.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2f31ae056267e97d1cec26d8601c83c0173741e0a8d897f43a66b51fa555cac
|
|
| MD5 |
0400573845638df10b7a85c306b08ccb
|
|
| BLAKE2b-256 |
ebfb09484c9fca38680b1991ac234a273efcdd101f0d769a8c77395c52f94aba
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp312-cp312-win32.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp312-cp312-win32.whl -
Subject digest:
f2f31ae056267e97d1cec26d8601c83c0173741e0a8d897f43a66b51fa555cac - Sigstore transparency entry: 2153926232
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 51.3 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9cddb990ff3ad9e78d2d1f106299b19b361104ac0f00c06b5b420dc732d54ade
|
|
| MD5 |
bc6b36dc4733864843565046ca4f6cd3
|
|
| BLAKE2b-256 |
ed836a51de0926c017152df9077ca4ea4ace4af92319290402915ecf8f2bf25e
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
9cddb990ff3ad9e78d2d1f106299b19b361104ac0f00c06b5b420dc732d54ade - Sigstore transparency entry: 2153934643
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 50.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
637eb3ac9a3a37d8c1bfbc812dfc02c4f9236efe7a6c8914902a2c8baebf7fd0
|
|
| MD5 |
14f9d20920fc2b48eb8a39df86c56aa8
|
|
| BLAKE2b-256 |
5b35edf43a8b5f9016cd1bcaf23fc20299b1e51921562a9b157c87a9ca7fd4f1
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
637eb3ac9a3a37d8c1bfbc812dfc02c4f9236efe7a6c8914902a2c8baebf7fd0 - Sigstore transparency entry: 2153918352
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 51.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d10be1d16f1dc7167c4a05e6661669af32daa6a64f700811d560dbed78a4c191
|
|
| MD5 |
34575b0517d317ad0698e9c5451d1f91
|
|
| BLAKE2b-256 |
cefb364912ffcf1902ef8c31e5caa1a51917b8ee743d4be48c5a5e0c551a142f
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
d10be1d16f1dc7167c4a05e6661669af32daa6a64f700811d560dbed78a4c191 - Sigstore transparency entry: 2153920806
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 51.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
afa88d2e0019baa8706ad2ae35fce665c73d6c02d3e2ff0a7c7e59a16271a31d
|
|
| MD5 |
1b1877d6252bfaa384cb3ccd317826f6
|
|
| BLAKE2b-256 |
af0c6f49b90147943f89fece112fbb2f2fe9e89a6b68e87e25c38cc0e5887fbc
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
afa88d2e0019baa8706ad2ae35fce665c73d6c02d3e2ff0a7c7e59a16271a31d - Sigstore transparency entry: 2153925644
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 17.6 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
545e26ae4c1ab82a1beed8312467a228f8fce20c09aac19ae5ec99f75a598e89
|
|
| MD5 |
c3c1e1748766a09ea66d841de135e314
|
|
| BLAKE2b-256 |
2a40d296edb8f99bfa93761ac51659721cea92174f36efa6db3936ce66e0acdd
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
545e26ae4c1ab82a1beed8312467a228f8fce20c09aac19ae5ec99f75a598e89 - Sigstore transparency entry: 2153932278
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 17.6 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1251d0d09f1b5f250cddc364293405f742927ecc22fa023756694f8c0f25b61b
|
|
| MD5 |
8c5c9c6cf29ac14fbdb511ed9da9c07c
|
|
| BLAKE2b-256 |
2b3551a2de409557f5a364512d7644647d914a82a20348a187a4832155d71abf
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
1251d0d09f1b5f250cddc364293405f742927ecc22fa023756694f8c0f25b61b - Sigstore transparency entry: 2153918992
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 18.4 kB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6728ab2eab5fa267474336d50d70bff0e2c5d6e51ce4fa1e1e56f3b86225f23
|
|
| MD5 |
e747636ebc02f0b8bbeb1796ae13daa5
|
|
| BLAKE2b-256 |
907dd35de43bfbd6de9a8d7503e7c005793fa0854e41c0869f9ac866dc7dedc5
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp311-cp311-win_arm64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp311-cp311-win_arm64.whl -
Subject digest:
c6728ab2eab5fa267474336d50d70bff0e2c5d6e51ce4fa1e1e56f3b86225f23 - Sigstore transparency entry: 2153929988
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 18.9 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
197e80e62d9fce11ea5602167cc5d332e8c27702975c7555964298c9358db42b
|
|
| MD5 |
03ee9af1d047a10aa75e9f93e4b20262
|
|
| BLAKE2b-256 |
dc1dfa0b5d1e792bf5ec31b12b6bb8911bd65c8709d089a9f96a94b167cd7146
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp311-cp311-win_amd64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp311-cp311-win_amd64.whl -
Subject digest:
197e80e62d9fce11ea5602167cc5d332e8c27702975c7555964298c9358db42b - Sigstore transparency entry: 2153935962
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp311-cp311-win32.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp311-cp311-win32.whl
- Upload date:
- Size: 17.7 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df659c304432617b647300a68a36955144e6569b93a794ad29d7ac9d6311c41e
|
|
| MD5 |
6315db1020a8d5536e2b517fd66f8495
|
|
| BLAKE2b-256 |
f52b2eee18a6aab8ca55d628dad32c70b4aee5aa2712e02dc864cf0fcf155bc9
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp311-cp311-win32.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp311-cp311-win32.whl -
Subject digest:
df659c304432617b647300a68a36955144e6569b93a794ad29d7ac9d6311c41e - Sigstore transparency entry: 2153921120
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 50.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54e9c4ae787ca8ae9c6cb0d0e24851177221e79ed879833cd4dd8e4f01b33809
|
|
| MD5 |
08dd31aa7c77d4c9eb712a6ac1fcb299
|
|
| BLAKE2b-256 |
d52417662300ac440f75fc7cc5199d485b11d7756cd41f2cb6d9f625dd9e2dda
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
54e9c4ae787ca8ae9c6cb0d0e24851177221e79ed879833cd4dd8e4f01b33809 - Sigstore transparency entry: 2153919613
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 49.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
404bbb273cbdaaa16a1e6b14602a6fdfc178f0a20c24fa88741fe45e7b0cebf5
|
|
| MD5 |
0c47c7630772564b5757f18d4be09b56
|
|
| BLAKE2b-256 |
41ff51ed966c65570933e13e7ec41faeac703eeac7809ff2a07c5c31ff111867
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
404bbb273cbdaaa16a1e6b14602a6fdfc178f0a20c24fa88741fe45e7b0cebf5 - Sigstore transparency entry: 2153919925
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 50.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1998b99dfc558ba3f5d1133cd327985cab5553cbea308f9cf156c8b67ccb254
|
|
| MD5 |
281861d44bc6a769b01265d538c49b57
|
|
| BLAKE2b-256 |
6e5b0ae7fe312cb35d9a3075f46bce4f14df7ab58de689c141688688209b798c
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
a1998b99dfc558ba3f5d1133cd327985cab5553cbea308f9cf156c8b67ccb254 - Sigstore transparency entry: 2153935597
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 50.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8d60e092cb035db4e95bfc1a428ba36c4645c55b18f322020458c725cef50f3
|
|
| MD5 |
b808db8f391cf3920bb883f021704aba
|
|
| BLAKE2b-256 |
275a6e98fc5f94feb24380796779f00ef7aa43fc72bb875cfd673944fdb77944
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
b8d60e092cb035db4e95bfc1a428ba36c4645c55b18f322020458c725cef50f3 - Sigstore transparency entry: 2153937197
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 17.6 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32b9960748ba06bbfb4c7cc1de4f7218f04118fd978091f9c842ecc1ec027a8e
|
|
| MD5 |
6f724b81d3739685e7e5566b7277b670
|
|
| BLAKE2b-256 |
c7c67c97d7f566df391e1f90c8fcf485518363aece095104869075e20ce496f7
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
32b9960748ba06bbfb4c7cc1de4f7218f04118fd978091f9c842ecc1ec027a8e - Sigstore transparency entry: 2153927246
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 17.5 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b710398ab7d66f45077627d3004820b96358c67ed4b56d6b417d41ae36bb76b
|
|
| MD5 |
904a55fb74eee68b414e82321105aee7
|
|
| BLAKE2b-256 |
5c27d19b0b360ffa95491b1ddd2158653b18d077a55040173b1bb3583a795630
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
4b710398ab7d66f45077627d3004820b96358c67ed4b56d6b417d41ae36bb76b - Sigstore transparency entry: 2153926817
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp310-cp310-win_arm64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp310-cp310-win_arm64.whl
- Upload date:
- Size: 18.4 kB
- Tags: CPython 3.10, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db1706926199811324e8fba447fd74082f996fb883159aed48643c3a44fb8ab5
|
|
| MD5 |
2982f013323db6c5b7c6908998d581c4
|
|
| BLAKE2b-256 |
6b02fcce9072d4f1319c8293fa1a14b0982511ddc2e4cdee12de44631a88b294
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp310-cp310-win_arm64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp310-cp310-win_arm64.whl -
Subject digest:
db1706926199811324e8fba447fd74082f996fb883159aed48643c3a44fb8ab5 - Sigstore transparency entry: 2153927638
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 18.9 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f758b588bb1c6c2a60ee6192915202b3525cffcbeff0ab6ef6e217115a86f87b
|
|
| MD5 |
e274de1f0535a7bbcb85a6a7869fe13e
|
|
| BLAKE2b-256 |
ebaf279f20d1a9557105c85aeb0a7f5dd7c946fdecdfde6bb99d605636d74b1b
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp310-cp310-win_amd64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp310-cp310-win_amd64.whl -
Subject digest:
f758b588bb1c6c2a60ee6192915202b3525cffcbeff0ab6ef6e217115a86f87b - Sigstore transparency entry: 2153924293
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp310-cp310-win32.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp310-cp310-win32.whl
- Upload date:
- Size: 17.7 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23aebc6f2ed8fe169fd5151a588eb5ea3475b9e291d9f1ac9181e3f03bfd8118
|
|
| MD5 |
4001a1e6611ae628cb1540e991c0a1a7
|
|
| BLAKE2b-256 |
d86cd4e58efc00bb3b7a7958804a64fda20b45dcb24db689a74c0613420a9e00
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp310-cp310-win32.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp310-cp310-win32.whl -
Subject digest:
23aebc6f2ed8fe169fd5151a588eb5ea3475b9e291d9f1ac9181e3f03bfd8118 - Sigstore transparency entry: 2153926437
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 48.2 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a26149a21d7c4dda61fcd6d7b271087cc64d2c9199a08e667c454b34bacdce9f
|
|
| MD5 |
c488d76f4eb388ee29f558fb927bc3dd
|
|
| BLAKE2b-256 |
a106a54fb20c33592d3ccc8964001466a250a5909af22727027398000986faaf
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
a26149a21d7c4dda61fcd6d7b271087cc64d2c9199a08e667c454b34bacdce9f - Sigstore transparency entry: 2153927016
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 47.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89818b4b2f1e4a446fa0ead297de6b44abc1d2b75acc1b63631f8835df47de63
|
|
| MD5 |
e5265bece413999f5ebe8afe65e92ceb
|
|
| BLAKE2b-256 |
306d9e27c26b282aff0302b8224398cb1c1750afc34961aba592ac7c2c837a0c
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
89818b4b2f1e4a446fa0ead297de6b44abc1d2b75acc1b63631f8835df47de63 - Sigstore transparency entry: 2153933780
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 48.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af9de1d17aaf59cebdabe1cb266a7b9450f58f0db196fae81c6e8b2f4a344898
|
|
| MD5 |
75660f0938784e79660870ce865000da
|
|
| BLAKE2b-256 |
240ffe2cfd1996dc0947d9ad9e28118e53c810bb2fecb1562347abaa4bdc3a0b
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
af9de1d17aaf59cebdabe1cb266a7b9450f58f0db196fae81c6e8b2f4a344898 - Sigstore transparency entry: 2153936853
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 48.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e12a3aebcd3d5f05eebc79f155814d91c699417d8dec4a1a7574e151e045762
|
|
| MD5 |
d7a73d87688fd6859ab8e84e07386a51
|
|
| BLAKE2b-256 |
ea613e8dd70d019741e92bc5b92d01f99c6eadd4491ad604c825571ca11157c2
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
1e12a3aebcd3d5f05eebc79f155814d91c699417d8dec4a1a7574e151e045762 - Sigstore transparency entry: 2153923298
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 17.6 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5875b8fba12cc15db9d216b540583107d58a5716889195eb6dee057a2855227f
|
|
| MD5 |
9c3c88f5d51619d26a23730939e4ec66
|
|
| BLAKE2b-256 |
bf7882cbef39a1c6bd3dbdc77812cb600a6cd0bfb37282d006f93d25df33d1c1
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
5875b8fba12cc15db9d216b540583107d58a5716889195eb6dee057a2855227f - Sigstore transparency entry: 2153923937
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 17.5 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82d495475b3bf61dd6f8d7ecbbc0519bdc956dc0db3990aefe4ce9f3139f1480
|
|
| MD5 |
5c1005614df5f450accc7c4bed6fbd91
|
|
| BLAKE2b-256 |
6ed44220bca313a8629da96d4fe115b3044cb71c610140864ccb5f610fa617e0
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
82d495475b3bf61dd6f8d7ecbbc0519bdc956dc0db3990aefe4ce9f3139f1480 - Sigstore transparency entry: 2153928018
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp39-cp39-win_arm64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp39-cp39-win_arm64.whl
- Upload date:
- Size: 18.4 kB
- Tags: CPython 3.9, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43781b827f4f805b25ff5c61270881f01760ae6d4c6a4191d5389f133c2737f2
|
|
| MD5 |
f57c6e1493a591cc57e3bbdb331992e3
|
|
| BLAKE2b-256 |
46ef4ebfce77205675abd95b99a7d2f1755084dc8e01b357d308af0bebe4b414
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp39-cp39-win_arm64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp39-cp39-win_arm64.whl -
Subject digest:
43781b827f4f805b25ff5c61270881f01760ae6d4c6a4191d5389f133c2737f2 - Sigstore transparency entry: 2153922521
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 18.9 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac7da14cd96aa9b170db48e5241969678fd5534d0e06a4b91024fe4fbca41150
|
|
| MD5 |
0404c4e219303abf92684e07103cdb82
|
|
| BLAKE2b-256 |
f3c27d865ef064ca54425731df5e8d7069f7d41be21d54874a6b53f96ab17d4b
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp39-cp39-win_amd64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp39-cp39-win_amd64.whl -
Subject digest:
ac7da14cd96aa9b170db48e5241969678fd5534d0e06a4b91024fe4fbca41150 - Sigstore transparency entry: 2153931509
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp39-cp39-win32.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp39-cp39-win32.whl
- Upload date:
- Size: 17.7 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51d37ad5eb83a4814897be6963efe5bf9e5367e4f37d0e5d8a9e524e150f87c4
|
|
| MD5 |
2fb2a9d40fba5fdad1bd56463115760e
|
|
| BLAKE2b-256 |
642f74c264c5997ead250eac50382dfa5bccbaf1c5e7d0398858f961da23d096
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp39-cp39-win32.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp39-cp39-win32.whl -
Subject digest:
51d37ad5eb83a4814897be6963efe5bf9e5367e4f37d0e5d8a9e524e150f87c4 - Sigstore transparency entry: 2153922219
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 47.9 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6da6c8ee367502f91607f67df4f8bff698704df14ce58a76b1517b97327e16e5
|
|
| MD5 |
dbd1b8b1e3d83abfd40f4fce2586e07a
|
|
| BLAKE2b-256 |
8365105cff76a9ee2ee9417397ccc9f7f01e5badcf90b69fcb434038b7d87e0c
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
6da6c8ee367502f91607f67df4f8bff698704df14ce58a76b1517b97327e16e5 - Sigstore transparency entry: 2153932794
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 47.0 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42c9260244b5a7cfd9be61b4680a22d0f922d534631bd0a3dc3ec25247786f74
|
|
| MD5 |
9d53a06ba448ab9dd9fb8cde1f882335
|
|
| BLAKE2b-256 |
28236a81f73960cdb10dfa368cb30d8bd0506f1e1652cae623553cf1e42188cc
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl -
Subject digest:
42c9260244b5a7cfd9be61b4680a22d0f922d534631bd0a3dc3ec25247786f74 - Sigstore transparency entry: 2153928805
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 48.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
101c97db489576631716170269be3d191e77c721845431807fd91c44ac68665c
|
|
| MD5 |
d91c5ec2f47fa7bc956443f368d01c1b
|
|
| BLAKE2b-256 |
b38a29f86958dc9b738be94508582fc2d7fba64bffdc554e801e8a42f904d362
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
101c97db489576631716170269be3d191e77c721845431807fd91c44ac68665c - Sigstore transparency entry: 2153935249
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 48.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
919935294edf440274dc14c6b1a660241163bee23c8a23792e46efc351a723db
|
|
| MD5 |
f4f07282d1a1fb74774f21dc8a9e7187
|
|
| BLAKE2b-256 |
0d9790415a18f5574ac0b3b49f93b8676399656fb194bc1fef56a86396e52a52
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
919935294edf440274dc14c6b1a660241163bee23c8a23792e46efc351a723db - Sigstore transparency entry: 2153929574
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 17.6 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5792e968367539b3836ead4186b8e88cd27537f074293db9aed4985a14a6fd68
|
|
| MD5 |
cd75f8c1d72319dbd905d78a78334e84
|
|
| BLAKE2b-256 |
a035d1fa3ba5084870b21092d7f52cf3c77b936197497b0862ecb5728612da9a
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
5792e968367539b3836ead4186b8e88cd27537f074293db9aed4985a14a6fd68 - Sigstore transparency entry: 2153923035
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastuuid7-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: fastuuid7-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 17.5 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d17230e5043e1d105b4bdcbef51736e962ef2111b050c6a3be17eb504aec4d5
|
|
| MD5 |
7762e3bffe40ae90f76d08eea35eba3c
|
|
| BLAKE2b-256 |
c771584bc5fe048cdf5b6526dae1fbd11a4df43722b15c2efc50c1d326a40798
|
Provenance
The following attestation bundles were made for fastuuid7-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl:
Publisher:
publish.yml on nekrasovp/uuidv7
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastuuid7-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl -
Subject digest:
9d17230e5043e1d105b4bdcbef51736e962ef2111b050c6a3be17eb504aec4d5 - Sigstore transparency entry: 2153928500
- Sigstore integration time:
-
Permalink:
nekrasovp/uuidv7@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/nekrasovp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c79cf53dc93f7cc3f373bcc9d6a5488767b323b8 -
Trigger Event:
release
-
Statement type: