Skip to main content

Use rust ulid crate to rewrite python ulid library

Project description

ulid-rs-py

Package version Supported Python versions

Python wrapper for Rust ulid crate


Installation

pip install ulid-rs-py

Quickstart

import uuid
from datetime import datetime, timezone
from ulid import new, from_uuid, from_parts, from_timestamp, from_datetime, from_string, PyUlid

# Generate ulid
py_ulid: PyUlid = new()
print(py_ulid)
print(py_ulid.str())
print(py_ulid.bytes())
print(py_ulid.increment())
print(py_ulid.randomness())
print(py_ulid.timestamp())

# From string
str_value = "01H6D6M1HWY1KNND0FKB8PRR87"
py_ulid = from_string(str_value)
print(py_ulid.str())
assert py_ulid.str() == str_value
assert py_ulid.randomness() + 1 == py_ulid.increment().randomness()

# From uuid
uuid_value = "771a3bce-02e9-4428-a68e-b1e7e82b7f9f"
ulid_value = "3Q38XWW0Q98GMAD3NHWZM2PZWZ"
py_ulid = from_uuid(uuid.UUID(uuid_value))
print(py_ulid.str())
assert py_ulid.str() == ulid_value

# From timestamp
timestamp_value = datetime(2023, 7, 28).timestamp()
py_ulid = from_timestamp(timestamp_value)
print(py_ulid.str())
print(py_ulid.timestamp())
assert py_ulid.timestamp() == timestamp_value
print(py_ulid.randomness())

# From datetime
datetime_value = datetime(2023, 7, 28, hour=1, minute=20, tzinfo=timezone.utc)
py_ulid = from_datetime(datetime_value)
assert py_ulid.str()
assert py_ulid.datetime() == datetime(2023, 7, 28, hour=1, minute=20)
assert py_ulid.timestamp() == datetime_value.timestamp()

# From parts
datetime_value = datetime(2023, 7, 28)
py_ulid_tt = from_timestamp(datetime_value.timestamp())
py_ulid = from_parts(py_ulid_tt.timestamp(), py_ulid_tt.randomness())
assert py_ulid.str() == py_ulid_tt.str()

Benchmarks

For details, see benchmark.

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

ulid_rs_py-0.3.1.tar.gz (9.2 kB view details)

Uploaded Source

Built Distributions

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

ulid_rs_py-0.3.1-pp311-pypy311_pp73-win_amd64.whl (119.6 kB view details)

Uploaded PyPyWindows x86-64

ulid_rs_py-0.3.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (211.7 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

ulid_rs_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (220.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

ulid_rs_py-0.3.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (192.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

ulid_rs_py-0.3.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (204.4 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

ulid_rs_py-0.3.1-pp310-pypy310_pp73-win_amd64.whl (119.9 kB view details)

Uploaded PyPyWindows x86-64

ulid_rs_py-0.3.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (211.9 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

ulid_rs_py-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (220.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

ulid_rs_py-0.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (192.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

ulid_rs_py-0.3.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (204.6 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

ulid_rs_py-0.3.1-pp39-pypy39_pp73-win_amd64.whl (119.9 kB view details)

Uploaded PyPyWindows x86-64

ulid_rs_py-0.3.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl (211.9 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

ulid_rs_py-0.3.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (220.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

ulid_rs_py-0.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (192.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

ulid_rs_py-0.3.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (204.6 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

ulid_rs_py-0.3.1-cp313-cp313-win_amd64.whl (118.6 kB view details)

Uploaded CPython 3.13Windows x86-64

ulid_rs_py-0.3.1-cp313-cp313-manylinux_2_28_aarch64.whl (211.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

ulid_rs_py-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (219.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

ulid_rs_py-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (219.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

ulid_rs_py-0.3.1-cp313-cp313-macosx_11_0_arm64.whl (189.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ulid_rs_py-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl (201.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

ulid_rs_py-0.3.1-cp312-cp312-win_amd64.whl (118.5 kB view details)

Uploaded CPython 3.12Windows x86-64

ulid_rs_py-0.3.1-cp312-cp312-manylinux_2_28_aarch64.whl (211.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

ulid_rs_py-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (219.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ulid_rs_py-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (219.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

ulid_rs_py-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (189.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ulid_rs_py-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl (201.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

ulid_rs_py-0.3.1-cp311-cp311-win_amd64.whl (119.4 kB view details)

Uploaded CPython 3.11Windows x86-64

ulid_rs_py-0.3.1-cp311-cp311-manylinux_2_28_aarch64.whl (211.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

ulid_rs_py-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (220.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ulid_rs_py-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (219.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

ulid_rs_py-0.3.1-cp311-cp311-macosx_11_0_arm64.whl (191.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ulid_rs_py-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl (203.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

ulid_rs_py-0.3.1-cp310-cp310-win_amd64.whl (119.6 kB view details)

Uploaded CPython 3.10Windows x86-64

ulid_rs_py-0.3.1-cp310-cp310-manylinux_2_28_aarch64.whl (211.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

ulid_rs_py-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (220.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ulid_rs_py-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (220.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

ulid_rs_py-0.3.1-cp310-cp310-macosx_11_0_arm64.whl (191.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ulid_rs_py-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl (204.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

ulid_rs_py-0.3.1-cp39-cp39-win_amd64.whl (119.8 kB view details)

Uploaded CPython 3.9Windows x86-64

ulid_rs_py-0.3.1-cp39-cp39-manylinux_2_28_aarch64.whl (212.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

ulid_rs_py-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (220.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ulid_rs_py-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (220.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

ulid_rs_py-0.3.1-cp39-cp39-macosx_11_0_arm64.whl (192.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ulid_rs_py-0.3.1-cp39-cp39-macosx_10_12_x86_64.whl (204.5 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file ulid_rs_py-0.3.1.tar.gz.

File metadata

  • Download URL: ulid_rs_py-0.3.1.tar.gz
  • Upload date:
  • Size: 9.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ulid_rs_py-0.3.1.tar.gz
Algorithm Hash digest
SHA256 c7a9dafcbd929e7e527c23c35090a3e9201f3cf807d9dd0a30c2f95047b31190
MD5 1b47163f9019f1580e2268e3452790a6
BLAKE2b-256 d4f755a5866b7cc34a37e5c6d4c7c4ab6b08b8beb942bd99ca005adf5d875cf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1.tar.gz:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8bb6291f5dc496571911f48aa4ddcf7c55dd3eadc1f5b0f76fc7a96f7f991f1a
MD5 df547ea94ab44fff91bb18c298c2f1a0
BLAKE2b-256 ce7b0b4ee540229f00efb668be37f1b2c4d6bbd87004af20534175f711f77a3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-pp311-pypy311_pp73-win_amd64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bb8ea4e7f2c1b5f1099001c598d0ffaab856cc8bc85c4101c05ea563bdf72446
MD5 475bb851797b84db85a0e252cbb95536
BLAKE2b-256 9767c92f99babb707c2a972d9195805b26d8ea59aad9d475761f3fde333ef308

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d50202588a8d23d4b2dd87c9055f088672a3b4c5688d41850674e85177bc99c
MD5 9eeef24e6c14ccad9e263bb59da9e52b
BLAKE2b-256 9f3f36b117c2951459904635357299bb9dcae0ecd7eaf7f4fb9578c3ee02029b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2f0d9c9c8239c3c1ff408984c05b7a3dfb2dff4eec204f54a21d3835e435576
MD5 88916849937c7b88b2fe994d8f4baffc
BLAKE2b-256 1484bf8aeb5e609cec3cbe8fecea6f41d34fdddb007af3f21a1b54551ff20baf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9ef0c710300d9f05414e21e2bea0527f13ec5622a752350fdc72f8a654b34fc1
MD5 b408953293286edc6c8ccd7d29b3ad81
BLAKE2b-256 09bcb7d496272fcb5f2701a9509124329dcd071e0614160d58c89bcdd4367674

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8c5b90af2b322880b92a8f48096e4cce0c41c434f746d0ac79c27a3191782313
MD5 ea685a4e3d2b26e2acc423112c782a59
BLAKE2b-256 dad118a36d8242d8af2bd8d9e388215787afc6a33460fcfc0ea9a7202312d1cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-pp310-pypy310_pp73-win_amd64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 403bb38e4db04af43ef39a33bcdc10faa5cb6605db094d9f770d9df6d2b5b452
MD5 362f131da5dcce17a8ffc5d8035b6573
BLAKE2b-256 5a9363f2380ffe01cd44a051442a85d9c08607d2b486c2899a90d521c3b522ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39bf90708e8b787204c105f51f7f34ddbbbcfc5d1a829aaff1a69087c15e6f2d
MD5 72bf60d7cf64811afa12770847843ed5
BLAKE2b-256 025f464dbf118bba2ef0c8e1f2a295c5d9bcd921c6243b8179d0bea0075d9b1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97c108a330775f74a6d24b8ce37036359f3bf5365058d66f15af576d20d4d180
MD5 24b51a85519feec3183a6d54f4106d45
BLAKE2b-256 f6f63de1af327e6b72e159d00cf0c445dfb2b5e897fc2b98471c0fbe17ca1f98

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f56d699946828540a3f583a6a30ef70ea837c329d36697eff91b9482f5021f24
MD5 5bf6effb09b858104178e4267d0f035d
BLAKE2b-256 365b38f69b31c97bc3cbe1b10707a8ae8824fefed6f5f42d211d491134d09ba9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0238eed88c8bae0837c30bd9f227c74c4d9643ee876eac6fc1197f5e3176d8a3
MD5 d3518e85e230d8b91a9a708f67b0c052
BLAKE2b-256 0bba936080f82818e79eabf940accbade99c4e76f7bf8507df25486ac6572058

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-pp39-pypy39_pp73-win_amd64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9ec7af22b5107fb538cd137540c6df91632c8a3acd081f3a802da15e7eaf59ed
MD5 9cb4175c9391a92326435d39999bc2b2
BLAKE2b-256 d19903a65242757ab53920b23ee40356863e175248089f516c4f6d4a2f8e2011

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3344b8b6979cf433196da9d2fdc3ac472c0ebc3eabd0836cff037784df9d8d7a
MD5 18e5cbe82e2b815d229c61d191dd7f49
BLAKE2b-256 6e624d2a7e062fb79d88767961d45c1abc367b240008deb7ca31e7655d371f42

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbe5f5b650459d71b320d0976c223cd4a9266b24b07334f122b0ed114a9522f8
MD5 9be0b9d32e218b6169d90ff7ae509e6c
BLAKE2b-256 84d7dd0d758159f416fd90010f1c28dbc93e27298a9ec0e853fff8215c3b58b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4bd5f8f5831b0f76db1c3fe21457150860b6150f8fda384c95bc84199d1fd8d1
MD5 d38f181e1da7f6b88587f2d85d7f88d9
BLAKE2b-256 981e37ecba6d89dc91d125234a623b518ab16de368f82dd4dbde91002014aa2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ulid_rs_py-0.3.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 118.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ulid_rs_py-0.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 46b1babee9c208080589623dfa8e5e7cd0e84f550e0475bc7860e36de8c03b12
MD5 afa6240784e1db854a94dfe0049e805b
BLAKE2b-256 91d797821417fe7ba314f2588259e97a0a5e19ae0f66f6f97608da90cc7a5fa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9fed96fb542da797dab329073e017f63d82b63a0eb7de8429cc12804a6ce3988
MD5 6c2a909e65d2ac7151355881bf213c67
BLAKE2b-256 00665c1b6ebe78eff20618e36469e4fa00770989a4acf90c3f990b663ce131ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 461d98f952ac7ff05f06b36e44f8964313d5b50a1fa643c178ef7ba00e5bfb12
MD5 8cc89f007344dc3f9a19a70d8acd4b4f
BLAKE2b-256 d4c6feb7deb6094c10d3e695d92703ae92cb7cfc071ff500b4891299f6e48450

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e7df41b6bfb4c5e841739d06511368183fb32633ec7c3535aeff5c32fa28600d
MD5 623b78fbcd515164418e2fe021f6f0f3
BLAKE2b-256 4dc602213880b8f908629a005057275325965e32f43aba715dea191f279e9f24

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d165c917fe53d1020a3aa461e33b196976e150b253ef249e4d6ab2bfbf99666
MD5 088bb831236991255a1a9a16bf64e0fb
BLAKE2b-256 981c7d2dc66659a35bd6e718aaa7d7df9aed2d1a78dd1af60e4e5f3a4f286924

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5083fdd3c960c07ecc0a65158aaabc976a40436800e037110b68c2992f0c6283
MD5 a394935aa195ad4d6f0583b07bae86b0
BLAKE2b-256 0e98f75e40c9398de74245070efd72c4e7ccbdbd334e95a74d8f2ad347358725

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ulid_rs_py-0.3.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 118.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ulid_rs_py-0.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 08f1275a9fb6a96be257252f76f9e50a66eed57fec30c9e67d9ecdc3439c70a6
MD5 22f5f91fc5587d54fd5ddc83c3e7bc95
BLAKE2b-256 e451f017310e444eb25ac544ddcccdc06f2ce4015f4a6388be14aea7d4f1c780

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ae2acd1b092fcbcfb570d927a9492af1cefb6cbaaffbc321fefefc131d767f6c
MD5 c53689b2c5ff6917d7a634909c749f78
BLAKE2b-256 cbf9854c18ebbf648e6a97a9dd24827df0cc576702f09106715574bc49abbe26

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b679e1c09d304e4686e0ef7497630cc75fa8d710f9caa58a2aebf19e5f0327ed
MD5 97510783dc37a68846e7c571a63c93da
BLAKE2b-256 1d20cffe6a6a663be909f59858e1d8f07a5d515921b1f2dd715745ef5767ec5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ffd8ea71204eef3a52b80c8b1955d903c009c51aa73c512e741f922bf223e49d
MD5 4dec75b67d803654742ba5631e777ec8
BLAKE2b-256 0b7f978ced80eaf22433cba9ce40d091d5440e79784f7aa44341158e3c813982

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c84de19560470313f9113e4ee561f0d9f14cfb3cdd7fd60b7ddfa4a208590c52
MD5 b006495b94ce7fb56da83358131b7a79
BLAKE2b-256 4a7e42832b6dd5e5894a46f07d8817e4f9fb4771e430153c0e3ed8c5f3e5793a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 34145946d6f9e168334a4c5f13c054bfe44842c3d723f828c704d81721e05016
MD5 bb98dccd57e7e7ea465da7efecb1a230
BLAKE2b-256 79a9096205a806de7b65a63b84cde2bd339112cb19f2c8565d7bb6b5bb1356eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ulid_rs_py-0.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 119.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ulid_rs_py-0.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 80cca789041c222d5c74c03653ec90a37df8f50b5d3716a20220a69eaab8ee19
MD5 d5fa9ef44c958eadb9270a2962625898
BLAKE2b-256 605d84164e70fc191b82a8d2f1a1c5dbec3318127e34e9ab8ab7e650a2ed670e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64bda8eb8719a00747522cccfe31e4e5d9eac1979b848f23bde9aca6d291502f
MD5 f4b3b1197676f56723896e9f8c0d3443
BLAKE2b-256 67fe2f48cd35be137da9c09009ba3be7e2da5ed49ab10f725e00e30f71bf508f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 089c1b7718e9d8b9b0fa2a45f42aa5e7827a12c61236fd7b547bcbc8e89c8db6
MD5 dd002442e5449e7f296ce61232082661
BLAKE2b-256 cebba88439e535da1bf7ac8261ffc87a9fdeef797f66c8838c2d642488814d8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a8fc78ae9012afa09164ced7d267ac64d14aaf38bc9a6441b7264d1ca168b62
MD5 03779283ff4c761a0f9be8d086ec6019
BLAKE2b-256 8893c0308490bb7975bbaaf45c53c6b00230aa40277312c603edf317df6d9d0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d23f976597e42dfbe8f5f6f099236f850c2f3fb929c9a75815b6fc1a93fa002c
MD5 9ee1fe4e9a7b3977dd3fa3fa007b32a3
BLAKE2b-256 39907afdbe2d4d5e92ce9d0642cc35b0a1dc78cd5aba32037feb0c5e14304f66

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 12ca368aebf011f1768eaed79f1ad159094a64a5579119a10461a88b1b7c0adc
MD5 f0523f2e5191215799b6fd6d0f426366
BLAKE2b-256 5416835028885f32f1613dd48b9772bb73420b12546d34c444b9082c0e4dc226

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ulid_rs_py-0.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 119.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ulid_rs_py-0.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5c38ac3603bdd9ca3927d02b3d4176b7f7652443a07a19f7d432284c58d3064b
MD5 8429b569c7a83d32062e82e14fba4b66
BLAKE2b-256 7c237321148ab42b200c33165e11db0ccfee459e95db844081c59cc81b2671aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d11279bb53c086626c8c282d614bef92cb01338c1aa23841b99fe95a16546051
MD5 e170f45fa6a4928d517be8c8b68571b7
BLAKE2b-256 9934182915e9ddabbc253a589a31973bf7f2c6adc9d91f8e4bf1f6adc21601cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9701e58effba2d0b865707e12d216cacaf813fd73feed77aa8b76ed9999e32e1
MD5 356d7fb8dc9b445f2cf93700fe84cfd7
BLAKE2b-256 16a1c91b11607469ab6980a9f42df4239286c4681264aeac75b9c8e99f8e8626

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2252610feb1761d138e4e3dc0a280468490e3f12295f58fc7d2b6bfc936c191b
MD5 a6cb9481ab3dc819918770f35d8d1e2c
BLAKE2b-256 b3dbef79161437fb1433199f667f82090197311c73db9c0878c52da882939fe1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 277b9db0992b7fe80019b3319749f8facb3b898fc76a670cc20bc6a582660bf4
MD5 f1007111d80c991d3af3b9a3b2a43548
BLAKE2b-256 457ed0dc782fdf77aceaf93a3ae2e56c3f028a0e5d86e1caee6dc2e2ac7937d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 95065fa30d9f5088680b09847103721f635e349a8d0134f1b2ad99971fbdb8a6
MD5 ecbe1a37021d96761e163a141a49c33c
BLAKE2b-256 576ca12042e4959dc0afe90dabf6471a3f1063d5b853cc3c73a6391875901a8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: ulid_rs_py-0.3.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 119.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ulid_rs_py-0.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7497f1ef837e5da17396930dc77243fbbaea1bc6955088b3e9d36f2e6a485c31
MD5 a37c7578bdcec7c2ee9e8322f95b7356
BLAKE2b-256 282e52b877d0f5db865fff762b9a3a6aebad283b059edaac00238ac564f15292

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp39-cp39-win_amd64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fbd08afa9874c5677da4d7fe0597417b45d69faa8b31e1c28b3a5aae88b714a4
MD5 e80aea792f1575afe1472599781066b2
BLAKE2b-256 39215db6ec93aa14dc03a259ca54882c22dea46fc0bc0aaa2ed2d99c020d3c96

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 113f06db6077fc58fb051bbed6d6e0b186efae502f033f1457584e321d94a5fb
MD5 a518b4d1a332d98695ac91d3aeb0b485
BLAKE2b-256 4ec1cc91614acd7a7a0c4348297112d44608df28f3de52ae7eba691b454c9463

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 43e383f5d0452e0a92ea78fd53de0fddca82ed007c5e0138218b6d635922ce16
MD5 a4804af49fc72e24a8d90ae495a46657
BLAKE2b-256 480b915b48cb33c87bc6612107b1385e0f397375056c814779da4dd3ca86cc55

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 833a128f249cb729632a5d4bd58b5cfa8081b8c5e6a60bf3e280e3371902548c
MD5 b8453cde072bde0223a7307ad423429b
BLAKE2b-256 2a9cc90b2ec50d310ea90621eee37c427a3a802b668577e94a1850f790a52604

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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

File details

Details for the file ulid_rs_py-0.3.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7f63cd1663f7499c16eff6b36ad556586ec7c9edef43313a050286471425646e
MD5 69e372d03c4625f97f777c499634c9ea
BLAKE2b-256 cb13d30f7ce023c30060a84cb89160b256c9a56d711de57ec63755a3c8f2d823

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.1-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: release.yml on rp-libs/ulid-rs-py

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