Skip to main content

ZID is a unique identifier with nice properties

Project description

ZID

PyPI - Python Version

zid is a unique identifier with nice properties:

  • It behaves like a 64-bit signed integer, so it can be safely used with external software, e.g., in a database. ZIDs will never overflow into negative values.

  • ZIDs are numerically sortable since the timestamp is stored in the most significant bits. Additional randomness is stored only in the least significant bits.

  • The specification is very simple, reducing the potential for bugs and making ZIDs highly efficient to generate and parse. Scroll down for the installation-free copy-and-paste code - it's that short!

  • CSPRNG-initialized sequence numbers enhance the privacy of the generated identifiers while remaining collision-resistant. You can generate up to 65,536 ZIDs within the same millisecond timestamp on a single machine.

Installation

pip install zid

Installation (copy & paste)

Alternatively, you can copy and paste the following code for an installation-free ZID generator. This code excludes performance optimizations and utility methods for the sake of simplicity and portability:

from os import urandom
from time import time_ns

_last_time: int = -1
_last_sequence: int = -1

def zid() -> int:
    global _last_time, _last_sequence

    # UNIX timestamp in milliseconds
    time: int = time_ns() // 1_000_000
    if time > 0x7FFF_FFFF_FFFF:
        raise OverflowError('Time value is too large')

    # CSPRNG-initialized sequence numbers
    sequence: int
    if _last_time == time:
        _last_sequence = sequence = (_last_sequence + 1) & 0xFFFF
    else:
        _last_sequence = sequence = int.from_bytes(urandom(2))
        _last_time = time

    return (time << 16) | sequence

Basic usage

from zid import zid
zid()  # -> 112723768038396241
zid()  # -> 112723768130153517
zid()  # -> 112723768205368402

from zid import zids
zids(3)
# -> [113103096068704205, 113103096068704206, 113103096068704207]

from zid import parse_zid_timestamp
parse_zid_timestamp(112723768038396241)
# -> 1720028198828 (UNIX timestamp in milliseconds)

Format specification

ZID is 64 bits long in binary. Only 63 bits are used to fit in a signed integer. The first 47 bits are a UNIX timestamp in milliseconds. The remaining 16 bits are CSPRNG-initialized sequence numbers.

+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0|1|2|3|4|5|6|7|8|9|A|B|C|D|E|F|0|1|2|3|4|5|6|7|8|9|A|B|C|D|E|F|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0|                     timestamp (31 bits)                     |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|      timestamp (16 bits)      |   random+sequence (16 bits)   |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

Limitations

  • Timestamps support years from 1970 to approx. 6429. To verify this, you can follow the formula 1970 + (2^47 − 1) / 1000 / (3600 * 24) / 365.25

  • If several ZIDs are generated with the same millisecond timestamp, knowing one of them will allow you to discover the others due to linearly increasing sequence numbers. Otherwise, guessing ZID values is difficult (but not impossible) due to the millisecond precision of the timestamp and the additional 16 bits of entropy. Do not rely on ZIDs alone for your security!

  • You can generate up to 65,536 ZIDs within the same millisecond timestamp on a single machine. With two separate machines, you will generate on average 16,384 ZIDs each before a collision occurs within the same millisecond timestamp. With three separate machines, the average number is 10,240 ZIDs each.

  • ZIDs are not strictly increasing within the same millisecond timestamp due to the possible sequence number overflow.

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

zid-1.5.0.tar.gz (7.0 kB view details)

Uploaded Source

Built Distributions

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

zid-1.5.0-pp311-pypy311_pp73-win_amd64.whl (107.3 kB view details)

Uploaded PyPyWindows x86-64

zid-1.5.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (216.8 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

zid-1.5.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (214.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

zid-1.5.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl (203.4 kB view details)

Uploaded PyPymacOS 11.0+ x86-64

zid-1.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (194.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

zid-1.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl (292.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

zid-1.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl (275.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

zid-1.5.0-cp314-cp314t-manylinux_2_28_x86_64.whl (212.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

zid-1.5.0-cp314-cp314t-manylinux_2_28_aarch64.whl (210.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

zid-1.5.0-cp314-cp314t-macosx_11_0_x86_64.whl (199.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

zid-1.5.0-cp314-cp314t-macosx_11_0_arm64.whl (190.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

zid-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl (293.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

zid-1.5.0-cp314-cp314-musllinux_1_2_aarch64.whl (276.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

zid-1.5.0-cp314-cp314-manylinux_2_28_x86_64.whl (213.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

zid-1.5.0-cp314-cp314-manylinux_2_28_aarch64.whl (211.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

zid-1.5.0-cp314-cp314-macosx_11_0_x86_64.whl (201.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

zid-1.5.0-cp314-cp314-macosx_11_0_arm64.whl (192.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zid-1.5.0-cp313-cp313t-win_amd64.whl (103.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

zid-1.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl (293.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

zid-1.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl (276.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

zid-1.5.0-cp313-cp313t-manylinux_2_28_x86_64.whl (212.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64

zid-1.5.0-cp313-cp313t-manylinux_2_28_aarch64.whl (210.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

zid-1.5.0-cp313-cp313t-macosx_11_0_x86_64.whl (200.0 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ x86-64

zid-1.5.0-cp313-cp313t-macosx_11_0_arm64.whl (190.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

zid-1.5.0-cp313-cp313-win_amd64.whl (104.2 kB view details)

Uploaded CPython 3.13Windows x86-64

zid-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (294.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

zid-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (277.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zid-1.5.0-cp313-cp313-manylinux_2_28_x86_64.whl (213.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

zid-1.5.0-cp313-cp313-manylinux_2_28_aarch64.whl (211.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

zid-1.5.0-cp313-cp313-macosx_11_0_x86_64.whl (201.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

zid-1.5.0-cp313-cp313-macosx_11_0_arm64.whl (192.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zid-1.5.0-cp312-cp312-win_amd64.whl (104.2 kB view details)

Uploaded CPython 3.12Windows x86-64

zid-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (293.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

zid-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (276.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

zid-1.5.0-cp312-cp312-manylinux_2_28_x86_64.whl (213.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

zid-1.5.0-cp312-cp312-manylinux_2_28_aarch64.whl (211.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

zid-1.5.0-cp312-cp312-macosx_11_0_x86_64.whl (201.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

zid-1.5.0-cp312-cp312-macosx_11_0_arm64.whl (192.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zid-1.5.0-cp311-cp311-win_amd64.whl (106.5 kB view details)

Uploaded CPython 3.11Windows x86-64

zid-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (296.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

zid-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (278.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zid-1.5.0-cp311-cp311-manylinux_2_28_x86_64.whl (216.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

zid-1.5.0-cp311-cp311-manylinux_2_28_aarch64.whl (213.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

zid-1.5.0-cp311-cp311-macosx_11_0_x86_64.whl (202.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

zid-1.5.0-cp311-cp311-macosx_11_0_arm64.whl (193.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zid-1.5.0-cp310-cp310-win_amd64.whl (106.8 kB view details)

Uploaded CPython 3.10Windows x86-64

zid-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (296.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

zid-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (279.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zid-1.5.0-cp310-cp310-manylinux_2_28_x86_64.whl (216.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

zid-1.5.0-cp310-cp310-manylinux_2_28_aarch64.whl (214.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

zid-1.5.0-cp310-cp310-macosx_11_0_x86_64.whl (202.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

zid-1.5.0-cp310-cp310-macosx_11_0_arm64.whl (193.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zid-1.5.0-cp39-cp39-win_amd64.whl (106.8 kB view details)

Uploaded CPython 3.9Windows x86-64

zid-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl (296.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

zid-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl (279.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

zid-1.5.0-cp39-cp39-manylinux_2_28_x86_64.whl (216.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

zid-1.5.0-cp39-cp39-manylinux_2_28_aarch64.whl (214.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

zid-1.5.0-cp39-cp39-macosx_11_0_x86_64.whl (202.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

zid-1.5.0-cp39-cp39-macosx_11_0_arm64.whl (193.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file zid-1.5.0.tar.gz.

File metadata

  • Download URL: zid-1.5.0.tar.gz
  • Upload date:
  • Size: 7.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0.tar.gz
Algorithm Hash digest
SHA256 aea9327391c88a585c00b0a0c72cb83e012e91b96c2fb384a1d0483cd1f9f201
MD5 d765dee09136c979af5c846f54e0e53d
BLAKE2b-256 5117b3a43491335d884deb9e5ff0f9ccf3688ea7f2074d222eedc732a89d903e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0.tar.gz:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0bdfab28a745f95eea2a42000fac9650c6a625ac6b27c5a913de5752116f92f6
MD5 20c6ba35cf69b5aabd44e962ea9e1044
BLAKE2b-256 5bbc664e208a22ddf22ddf557bbaef3c350351a1093f7f60d4f118db83548a48

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff90a350584ff442aef6c93c2cbe2a11eace11ae6631231678b24297ecc3b725
MD5 b2b7e75eb80ab6ac28cc7c9af588db9e
BLAKE2b-256 0af7c7608ee25af00a4b71b0de78f1f96f0b2c4cfe7440341820e69f293605a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 277fbe6f36389eac68e8b01db20bd592c5b2f02dbc36eba327cd072d10aeb7b2
MD5 4e67460115390b6da4e2498ec75521af
BLAKE2b-256 cf6974ddd1c743c3685ba1567e9f7420e572197591fd20749d1dce4ed19e5202

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 85b1d93de480ef971ef5205e0877afad3c8293bd2f0ef532976f268198dafcf2
MD5 df1a38e729b90ef2c6b9ea5dc0512275
BLAKE2b-256 e91a79afdd5d243260b56968a1f895a0e679bee0063bfa0a7f6961c77f15b4c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2d1c21a8da365830ff17fb7d3a4feb46e873865001c8905cf035bc9286889c7
MD5 7b94be1675f0e6627108077aff047c97
BLAKE2b-256 4b1bbc34a394ff41e0cca77bb6e8ca4cbe4cb9c1f73b4ea672bbe229a2dfb7fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97ece2811686c8578825b72eb0fb1cc1038da8321b5049484b1321cd1937d798
MD5 cddd1a41b289cd805d9cd172037592ae
BLAKE2b-256 ddaced397243ba33f727dbd089acdaacff0f83e33f80264dafa7eda8edcef570

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d5232f21469e26e1cd80aaf2579da82f62fe3fb1b278f433a0094f486d0fc9d
MD5 936f3da1777dcee666e818448cd2f506
BLAKE2b-256 26e3b33ef64a1e0887cbf1d4881e9a637e3ddf121a9584b629a50318ca0af6c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7df21cc1af93ab7ac5be88bbaa768db051e2e359d935764836cf205db417353d
MD5 30299c496ba1c357752f1b6727179e56
BLAKE2b-256 b7f24fb5e1c0449a33f389645a1d850f7228fdc1a897531839823913f60373e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0640bab8e13da083ad9a3256a1fa2b2327bd37ba54ea19e0ad1298ebdcc29734
MD5 45c4c228bbb7183c2053c23efe471727
BLAKE2b-256 a27cdc40c45ed53905f0cda507b743f0c8b003959f4eb43e537b6cacb54c6ee3

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp314-cp314t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 fb8ffda642d75a4f837be57b3c086bacbf1f26ec4880302f820adf8be4efd23e
MD5 8e70bcb40a9929d7a25834594efd4708
BLAKE2b-256 e97a9f3e8a2af60e39d5f91324c75e75dcce2399ab0b4f7b7fc7fc24d9db97f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp314-cp314t-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zid-1.5.0-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 190.5 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc40d8540ced4642e60aa92af70e000683a51d508b2811f9b1ff6fa4fbaddc01
MD5 eaca37e7e924fc35e542f7576c0e3554
BLAKE2b-256 57ffbb5c3239b13c1262754af4e036c51ee1020f88d9645f865dcb5437086143

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: zid-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 293.7 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.7

File hashes

Hashes for zid-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f56f82d3dc598ce7283af43c931c7b21fec655732b3fb5c46cdd6ac8761118d5
MD5 ed10762886e52f6b24cd77de18a8fc20
BLAKE2b-256 d3c9d69a44cc9fc898f9f786db3cc561f0c6d6d7d0a351f447788c732706eab4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aaa42e87a43af13f9e28e080e77c572de722df572e67c7d74c23f5de0be53c0d
MD5 7815f5645dd7b9a7e5185b4c0c1a373d
BLAKE2b-256 f85d92d7b9303ad200dad9ec6ab9fc08ed8de296863a274750908277c4206a25

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ac0c533b30794f32709ff2deed6d0989ef587327e356301af50cd7685be3342
MD5 a1962b5387197785cba63cdf66977e0e
BLAKE2b-256 cec63bffb93134d61d81d400b941a0cfd78d9f33487ce75e196894d320d62858

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a885004a72cb88c1ae2cf33d773892bd6b69a21555a126ea374a3944d629fdca
MD5 a6254c9bf097988367a2b8a0552c105a
BLAKE2b-256 048dbc1c54dbab460a5b6b2d570e7983f2a143ed08aa31752826643423126553

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

  • Download URL: zid-1.5.0-cp314-cp314-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 201.7 kB
  • Tags: CPython 3.14, macOS 11.0+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 7c6e4d9328256b6500f5288fca59a29a15616f07dd6b7b835a37710b0a4f5ce5
MD5 c7eb045644f106ca9f1bed90bc1fbab2
BLAKE2b-256 05d04b857c89a63538ec9c53fe53db75ebe3f93bf3f377429273fca374c59f0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp314-cp314-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zid-1.5.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 192.6 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b31bb02f5c16f6ab8ace00614a81e18c333737f7a2c56788b63fa255100a2f1c
MD5 979eea6656279bea22bf31224820d765
BLAKE2b-256 5d1e89f4233cc6e5ebd04ba14bdf628cd22bdf392f0d2d7825f7f22fb25cbc1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: zid-1.5.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 103.0 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 4e3eab92f18e082dc21394c9ec28e2954ca8f305703455135ba034bbb733215f
MD5 844834167549885e6442eba195767fc6
BLAKE2b-256 ea89420c722a2240fd6383b9e5e7a77cf4e6b00d91a39de2d1583d34fd57bc72

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp313-cp313t-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7678b848910850b8a01d5f94d8ecab1cf86fe86479f2bf97577f50c242de3c6
MD5 5478b4f819b6b50c293cae325eed32a4
BLAKE2b-256 9f1359fa49711950da8d1231c9ec090cb76d17db0de720ff6715c18e8867dd60

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4556b1b355f78a4192aed56d76d140830cb2911d7743031100bce8ff35c520b3
MD5 8ba9b1585a401936a185f0e8f7687f15
BLAKE2b-256 25f9b1ad0dbd0c5635c092897b42635139712847045add2200e8a7cd4afe5818

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp313-cp313t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb8eb01d00fe3fd1439757a50d1c9a41d63392f8d60aab3f8e9a7243162e88ad
MD5 653062aa37029f1fb17e0c54b28862fc
BLAKE2b-256 2229df10529d23975a50b77ee6f510774cf6b14be1a2f0bb573aef1376d236b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp313-cp313t-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e9205ac83c17f440fd15d65db02fe8ee17a03320a2bf1af0adbdaaa934ee3039
MD5 0a6c7d8f01d7ee4ded5f0d87a2e6618f
BLAKE2b-256 469db1b4b4078af52cea547bc649053bf8fb97ad6042914d841274775191c57c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp313-cp313t-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp313-cp313t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp313-cp313t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 216209db589cc99655ab6420f3fed68ebb2100784a597ccc09b888093f5ce8a7
MD5 a8b9fef4cf478edf154246e7b3af15bc
BLAKE2b-256 4852c1f1651f89a559a100934f3133b2f9244e2ac7966abda24671f2fa09b6a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp313-cp313t-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zid-1.5.0-cp313-cp313t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 190.7 kB
  • Tags: CPython 3.13t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c35559a0e9042a25e0e19b68a760131e063fa56047599450bfadcd0a2d48ff1a
MD5 221b287123e9487503e3ea2d9ca13bb2
BLAKE2b-256 3e7064c8566e5b8e8ceb687adffe12f2a44483ca3080c155bf1b4110bf5c84ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: zid-1.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 104.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8515afe162610077d71cfc7878d23d4a3ea2350b10d767823dd637ded00f2eab
MD5 2197e899acb31bdb42841acc268b1f89
BLAKE2b-256 7f09206e6b3ad81a3ea24e715e4fa3a54b2968cb56a41c5eeb65b8b0a189535a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp313-cp313-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: zid-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 294.0 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.7

File hashes

Hashes for zid-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6480798f91977f2d5b7fc80e99b4c27168ad25b9e71f05fd97e3039e88ce2db0
MD5 6d05ae227a927fb5c8c73670ae12cbe5
BLAKE2b-256 ebc50376f8f0acc5cd67eaa668f6508602d1316bbfee898a8753f0e47f963f31

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03e2fa25a141d39b4d9d086bcb2ac598467a4b4c9003ecfef542ecfa7525ed4b
MD5 bfe5bc25acdcf092192abfd70f333e24
BLAKE2b-256 f5f14a0050150eb9e8f370fb54fd53376de0d883f9bf6186dd9029c210b9cc3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 00fedcb9a65beeb41773e971dc613154330f03373b51aa9474d4a4fe2d8dd405
MD5 194481bf440dd396c17f6862af1a8dda
BLAKE2b-256 a75a1a979532e145775b686222f2e1a6aacf69d82b6bfe668613d0571b99c4fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 047e3289f968ec9d59e55ec4dd365a25b3ca9e76ebeaadc01560bc4451c9f677
MD5 6b038db8567cf7059cbee1c5385b7a22
BLAKE2b-256 583c2a3867d9199ae586f56a750413d434077bd53c21f656d1f4d592f4989439

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

  • Download URL: zid-1.5.0-cp313-cp313-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 201.9 kB
  • Tags: CPython 3.13, macOS 11.0+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b983bd42eeafbcd53369252a0abb0dc66d981019820763ddc4ce1015894c6f77
MD5 5d34ee96c7c6477e63208c39ae9a5cea
BLAKE2b-256 f777b352d7eae49b85be5b9226fcc353f3f88a30b2392dba06c374af2843d67c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp313-cp313-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zid-1.5.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 192.9 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae9c2ec6e41a65a885e1838ad03668e8d89d8c7840a3d521957f3da17f5899a3
MD5 e9b825ffd4fab42045de95b561911f4e
BLAKE2b-256 6484edd8528f88f7df99674865f43431cbf787ccfc418203857c6f5624aa3dbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: zid-1.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 104.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 587041c2410c3bab5efe9b0bd68c60d53fff9f3fabaf6ee7f437a945c4a1902e
MD5 214bac9ab1c3530337c53e5dda787d2e
BLAKE2b-256 b29d241769eb0040e4f15bef86174d0ede3acfbc9812a0bff20848d058cbe97d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp312-cp312-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: zid-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 293.9 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.7

File hashes

Hashes for zid-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc20a2d1f547a3da482fad63169aa109853709ce7752fff38a3e4bdaf94aef32
MD5 b1ed085ec4c7dea86985c2c0720229a4
BLAKE2b-256 9026163aaa9ae9f53553ddb85e4ccec114701a5ea8175dbbe40f662ea5df3b20

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22ee956225f7779225d9af7f9e1fb26d730aa45073e083ccdeb0c2160ee957aa
MD5 8a251ab4958738599aa83353793cbaca
BLAKE2b-256 c2327175bf6a3246355409715f6a86b6d488357a7eaeae066a69834f364ceb17

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3acb1533925d1317062a0d704e1fabb296b76daa17083133750f63192fc26092
MD5 0e1178481cc8c494d36a947ab3019c9d
BLAKE2b-256 29a5328d5e7d576f09e9b45878addb2be4a5e12b5bc34fd598f4db6385c92996

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 74c62e20f802e6f668fb122d5e54b644f673094a65cb4c2f54f776694b5247d8
MD5 4156c99690e76b99dfa01560618f5951
BLAKE2b-256 dceea1d1ac94b93155098d001c7358326f425f87eaebd645ed4e677e9f0f1eb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

  • Download URL: zid-1.5.0-cp312-cp312-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 201.8 kB
  • Tags: CPython 3.12, macOS 11.0+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 10fca22235c056881c2dd41b5bc10165b5fdb74a8d595aefb9ac9631dc4a1e06
MD5 664f35298470458ad77aca3685c494dc
BLAKE2b-256 0e558b086681f037924460837c8580031cbe81c15f253dbfc21f5190326b2c8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp312-cp312-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zid-1.5.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 192.8 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da9b8d29fa27b82b80b4222e348bb95fd7ba093b22d85c9159c0130d04c9dcaa
MD5 467b619fdc80b91e20d1f823ab7f4f48
BLAKE2b-256 c931e92df5c5b6ea0c878096474c5ab89808c20c15c64fc7c6634afe3e429e0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: zid-1.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 106.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6361752a2d8e99cf4912099b294ac877cc8a4c1e6134dad9909811b15f32c4a8
MD5 ac31c9db65fbe8e9c5502bc6777eecca
BLAKE2b-256 85123300c893040a3c1536155703d513f33b25393591d95beaaf983244e54954

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp311-cp311-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: zid-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 296.2 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.7

File hashes

Hashes for zid-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08e3001b305b0d306f9ae2473b563785dba4d11f295ff8d29bd8bdd6d2b74c11
MD5 8f1156ec33c55e4d3b648f7c122fd78e
BLAKE2b-256 a00e444fd7ff4ddafd763ed65f3dfa5ea4880caef306cc50a97810f5282b41a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9f4967ec9bdd20691ef2609afbe06b13bd3a7829d6e380db29e5ab4b363a281
MD5 cd5b030d3cbfaed9f31f182c852226d0
BLAKE2b-256 98ffa1446401e453a4c7f2f1bf45d2219a5d8e4efd09efcd99f86e6de6ec95d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81e88fe355f855a24922577e888c0a1a3a7355db9971a6e8a9cd7d77b5dac48d
MD5 3ea9e08dc3915083eee92c40cdbe956f
BLAKE2b-256 e315e098b043c4a5422dabac479438e9857259ce5115b3d4ace9bed0c3b5221e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 00cfdfe7635a8649047825a2a7fc8ca26886e15215901378534b173512517d60
MD5 f0d63e221e4821e7c0aaa3d8359f322f
BLAKE2b-256 3a3c62984107855f46a3d949b2cbd87939efd74bb70742d8e527a400ca3e8821

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

  • Download URL: zid-1.5.0-cp311-cp311-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 202.6 kB
  • Tags: CPython 3.11, macOS 11.0+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 444fc6a9ea97ade93777b9d7b5fe1bba2b5f15f92ab6b354d043f0691ea462f5
MD5 cd1f25b2485fd98730ac4f1a5db78a35
BLAKE2b-256 203e0fd1832c5cb0e6d7375e29e367e3b597fe4d3a14f27b71740a4720ac50ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp311-cp311-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zid-1.5.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 193.4 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c594820441c01942246bb1575627734ccf62696d91bcb894fe7c2d21b245e1c2
MD5 d7b2361e87ef58f341bde783e15bef0d
BLAKE2b-256 a754e09140789c348d8679633fafd6337851673cbbac006b4bbf69994bc8e4a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: zid-1.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 106.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b11fe3b6418a789da922c9ea1cb43cfc7e6fb5381ad3aac9505d8c82f115faf8
MD5 770608f67c78e43bbf305aa2e0222481
BLAKE2b-256 b68fc25f8f995162b98156b6c15531728fda50e78c0b621c05c7d5829e178be0

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp310-cp310-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: zid-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 296.5 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.7

File hashes

Hashes for zid-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c103401ab4fc67fe03e20abe27fe27033a6eee1ce522f080053efd3f0797f420
MD5 bbd895f510e34e1dc7544f667d981cb1
BLAKE2b-256 dc70969b52adbc4e5be27de52d7745882de0fc14d612fd39c05979e3b3c65b1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3149ea4480553d519760f8298467fb86c182b2c68853f67f931b83e540b9213c
MD5 6612553a20bfc2367beb473353477e43
BLAKE2b-256 366d103575f1e58dcf819606024f442cd48d0106bbe30e309cac88306d4bbd41

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33e8c6fa3718df349a9b0ca23292d67e22e30d7b7b693414044743d65b43d714
MD5 ca0cd837a118d47dd5c2f1dc021f37a4
BLAKE2b-256 dabcf3236b38a42eda94922194d0556a4dc18d3fd4ba74315b0ae9845da307a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zid-1.5.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28250c3ba046ef4b39a2ff48bcb2302200994fef58f1d62155553e273bbca2fd
MD5 ce397a317ca18489d02ffc319fe8c540
BLAKE2b-256 751f9d5a435ba5c5c5aca61543c3958a8ddba61982e2b4a1c76a65ce50ab7b62

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

  • Download URL: zid-1.5.0-cp310-cp310-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 202.8 kB
  • Tags: CPython 3.10, macOS 11.0+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 51a9edbdbda13f01ece3709e84b8c98f9a309864f2870215f9f794b3dbf398d1
MD5 bf71c10b6e550dce29e3acddb9b7e589
BLAKE2b-256 769b52a36e0535b3165a5b15509ef54cec2c07a3ba06503651848519c6776192

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp310-cp310-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zid-1.5.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 193.7 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc7b90bde333b7b986a6957e500ec4d2c52e4ce85907f6fbbbed7fc1814b1e37
MD5 77536bec63e644e7ac179e2dbb3c0634
BLAKE2b-256 08d09c38109ae4ab54b21fa63b31586c00c0d793708deb6a0829e2152a9fb464

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: zid-1.5.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 106.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e25d137afe69d6f44702f64f05fbd46d5ddbd1758546fe51c944404e92c2f092
MD5 e246f844f887892d3ae6c35b9455e0c1
BLAKE2b-256 a0b441e1108b711097d2acb3e3d2cee29b3262abb234fb4e15e48588ccc8b60c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp39-cp39-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: zid-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 296.5 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.7

File hashes

Hashes for zid-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e42ba58ebf1b35d75706767f7df9ed205ee6f75c38484bfc72b2197a640b2d16
MD5 7231cd0772e9b83b96e2fc46418e1978
BLAKE2b-256 91557a82c475ab71156b87e32fbfe58427280e80b549e3186964a9d9f51c70ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: zid-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 279.3 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0868232c73749543b49a098ef1dbf83bfe0481fe58c7f94131b528661e360b82
MD5 e93ea6450e44c3393c375e1d1ee84e55
BLAKE2b-256 2f2e56e5fcf0fe0f9141863bd4964921dcc12b731b9ad9096c550d0b98e081f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: zid-1.5.0-cp39-cp39-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 216.4 kB
  • Tags: CPython 3.9, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df7ee75f80853e56916f79821411c9d57ad6354f74939de5dfdb5264469d9d90
MD5 96e138efb5872efddd507feb25546671
BLAKE2b-256 ece11039da103ed925e9158910e5e72d0c361f67b7b474b6918b9e3e31e1b7ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: zid-1.5.0-cp39-cp39-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 214.0 kB
  • Tags: CPython 3.9, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 14148ac8612ba655381ac032fa1a9d093ada4d04237d7997749750d94199b5c3
MD5 a675c0aa03856f9a15857b3a6e096293
BLAKE2b-256 eb25b2647ac353bfcc2688a7c47fe9345ff585f07f8b05fe6f01e47b7ac2cbc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

  • Download URL: zid-1.5.0-cp39-cp39-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 202.8 kB
  • Tags: CPython 3.9, macOS 11.0+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 24a05b3de2b0fddf6d24cda5c37f28fbedec898a72212b8ea0cdb085328c1a13
MD5 f9de719b4720a677ebfe9719e49016f9
BLAKE2b-256 7295d0280daae231c5e3095b14d44c05fb2c7958fc67abcce5b1dcc57acab018

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp39-cp39-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file zid-1.5.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zid-1.5.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 193.7 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zid-1.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df63e72681a46d3c081f0f2931786a2239f1db3c541f2ef48572256f781e4487
MD5 55e2f5fa5508711070d51f7902314e06
BLAKE2b-256 d11a674ac0e693c14741058c5a1ea8a6b726fdfc5320554f41aefa22a1da4806

See more details on using hashes here.

Provenance

The following attestation bundles were made for zid-1.5.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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