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.4.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.4.1-pp311-pypy311_pp73-win_amd64.whl (116.7 kB view details)

Uploaded PyPyWindows x86-64

ulid_rs_py-0.4.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (208.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

ulid_rs_py-0.4.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (216.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

ulid_rs_py-0.4.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (193.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

ulid_rs_py-0.4.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (203.4 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

ulid_rs_py-0.4.1-cp314-cp314-win_amd64.whl (117.8 kB view details)

Uploaded CPython 3.14Windows x86-64

ulid_rs_py-0.4.1-cp314-cp314-manylinux_2_28_aarch64.whl (208.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

ulid_rs_py-0.4.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (217.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

ulid_rs_py-0.4.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (220.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

ulid_rs_py-0.4.1-cp314-cp314-macosx_11_0_arm64.whl (193.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ulid_rs_py-0.4.1-cp314-cp314-macosx_10_12_x86_64.whl (203.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

ulid_rs_py-0.4.1-cp313-cp313-win_amd64.whl (118.2 kB view details)

Uploaded CPython 3.13Windows x86-64

ulid_rs_py-0.4.1-cp313-cp313-manylinux_2_28_aarch64.whl (208.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

ulid_rs_py-0.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (217.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

ulid_rs_py-0.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (220.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

ulid_rs_py-0.4.1-cp313-cp313-macosx_11_0_arm64.whl (193.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ulid_rs_py-0.4.1-cp313-cp313-macosx_10_12_x86_64.whl (203.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

ulid_rs_py-0.4.1-cp312-cp312-win_amd64.whl (118.2 kB view details)

Uploaded CPython 3.12Windows x86-64

ulid_rs_py-0.4.1-cp312-cp312-manylinux_2_28_aarch64.whl (208.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

ulid_rs_py-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (217.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ulid_rs_py-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (219.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

ulid_rs_py-0.4.1-cp312-cp312-macosx_11_0_arm64.whl (193.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ulid_rs_py-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl (203.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

ulid_rs_py-0.4.1-cp311-cp311-win_amd64.whl (116.8 kB view details)

Uploaded CPython 3.11Windows x86-64

ulid_rs_py-0.4.1-cp311-cp311-manylinux_2_28_aarch64.whl (208.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

ulid_rs_py-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (216.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ulid_rs_py-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (219.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

ulid_rs_py-0.4.1-cp311-cp311-macosx_11_0_arm64.whl (193.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ulid_rs_py-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl (203.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

ulid_rs_py-0.4.1-cp310-cp310-win_amd64.whl (116.9 kB view details)

Uploaded CPython 3.10Windows x86-64

ulid_rs_py-0.4.1-cp310-cp310-manylinux_2_28_aarch64.whl (209.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

ulid_rs_py-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (216.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ulid_rs_py-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (219.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

ulid_rs_py-0.4.1-cp310-cp310-macosx_11_0_arm64.whl (193.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ulid_rs_py-0.4.1-cp310-cp310-macosx_10_12_x86_64.whl (203.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

ulid_rs_py-0.4.1-cp39-cp39-win_amd64.whl (117.5 kB view details)

Uploaded CPython 3.9Windows x86-64

ulid_rs_py-0.4.1-cp39-cp39-manylinux_2_28_aarch64.whl (209.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

ulid_rs_py-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (217.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ulid_rs_py-0.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (220.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

ulid_rs_py-0.4.1-cp39-cp39-macosx_11_0_arm64.whl (194.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ulid_rs_py-0.4.1-cp39-cp39-macosx_10_12_x86_64.whl (204.0 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for ulid_rs_py-0.4.1.tar.gz
Algorithm Hash digest
SHA256 65d0dc9716053973c7b0eeaf4f57d762e6cf87b5b863bb61d02ee34b0316fc21
MD5 09179cb2af908dcb7c8975758e7577f5
BLAKE2b-256 145021ad6edd2bc4a1dd6072bfe982a875b4c61f8782bdf46ef5f0824fc6ad8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a02689a2f3033eb24b3d996b1ab7b44e208741754f43d1e69eeeaf6c5a274b33
MD5 b6a97a2dae598fc53918298103db6401
BLAKE2b-256 c9abf2610a0dd790daca200a041f1abe0f1f169fc37700ceb9f7c76ac1d2b4e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94eb2b90bc8541ee5cc2f8aa3bd4373b61576338a6b86d5fbbb1142526fe8e19
MD5 4b9508d31b5d32b7255a687e368dcbf9
BLAKE2b-256 9e17bcdebe8a2a0fa70eec92497dd2457884e13a01ac94fb24a7aebcf3198054

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d62770f05dba85e7f29abc41e9b13849f4a651aee69cb9dd416179fb40486f25
MD5 f524e5b7838e8e8e4473eca82c2716ce
BLAKE2b-256 41d5f9b2f166a37cb21cb9153cbd8dfeff8d0820802b675491ff6e7b7dd64ecb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a94caff14fb8ee87e3fcbca4e09190727d720ae5ed8c1c8f3f190d5f30a12bf7
MD5 6f5f9a415fb81219292d885e94f5374e
BLAKE2b-256 13f401462364dfc4e6568da14b565ab9f1b46b7c84a2e69a9c786d597ad4bd7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c7eba93e519dccbabf16afaac9927fe425fa2911029a448b980168451f38f812
MD5 d43f7b449ab3df36fab78c7a1c3c6b92
BLAKE2b-256 7c4b31320e7e5e0d9603e7816c10c4f3c6ad42f6b7180cedf69bb326e4b772da

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: ulid_rs_py-0.4.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 117.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ulid_rs_py-0.4.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 28da287a9b3475a4d0c4137576b255ef3d78f9d01b67960819708ece4ad2f46b
MD5 0472d94ae52561bcd90e8975a6405efd
BLAKE2b-256 aeec6110c560b61c9ed978814ebd63af637368f119012ce2a49ebddee14a9f66

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.1-cp314-cp314-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.4.1-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dc863f6d1d523e0b9a1dc2bb4d760c59e98a3f9c6f449c4e52063fa22368f1e9
MD5 ab52e51b71e230bdb0bf95ae2b99325a
BLAKE2b-256 8ac7716c9fe3d7f749842e18d75af37a4bf245581d7cc3c7d97585e32a6bbf6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.1-cp314-cp314-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.4.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8541dab3fceaabafceebbe16c28f089cf5198e4119038b995eea44ced61787a
MD5 8500e71fe12a1bd407f4b61f62c72745
BLAKE2b-256 f19f986df6c7bb68c9456b62090455c5d6b95f97cd13998815eb9a3a9c28b449

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.1-cp314-cp314-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.4.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 59838597b8e338949fda9ab09fe31927e2b8bd7360478eee19130dd33fd00b56
MD5 7f8f059570c49efeafb3fb720f7b2b7c
BLAKE2b-256 aa6150f1d6ad476597a1b89eb799a4e08be5b0daeb59bc3d1b2c6f1f82d7df6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.1-cp314-cp314-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.4.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33d61351f48a743ab89e9b17d1e7ca7c8dc808600d86a0f4575f5fed61c4da9c
MD5 b966df0ad163c25d5b1d3695c9a3f362
BLAKE2b-256 5e9df469e10d1c3ea9bec31097721f790a5c8f0ffbbade3ce363a674afd7fbc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.1-cp314-cp314-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.4.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5013379a2a51edfa376f8c909f7b3cf5eacecad43b91fd9109f2833efba92e5a
MD5 98d8b1d7491b50bdab4282218cfe887b
BLAKE2b-256 7a71e7e11488b034e10ddd181a36735909b85ec75c43d8e959edfe2b8b0ca735

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.1-cp314-cp314-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.4.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ulid_rs_py-0.4.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 118.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 ulid_rs_py-0.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5bc846882f87a4c005a256aa55b048834d8175529f05680a557e8de079e03dc9
MD5 850ee35ce3e95296b72f0f345cf306d6
BLAKE2b-256 c5558d517bb9fae63f5b40d9493e9050e730e18eb9064da269d874dce7a6b808

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f455f2b364520fc9f0e108be5a421e977c0ca8fd145201665237e656dabf602a
MD5 778cb05d3cb503ebbc123859ccd73cc2
BLAKE2b-256 e04823cf34fdd6956cf67b6700c6d54804b89c88954ef625ff522c9dbeacbd2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c21850cfbbbaecc0479f5ba4e44c3dcb4761cfe8244f2b158b34f775223b5f14
MD5 a9710146ee24a9a85d677d997cc324b8
BLAKE2b-256 a462a6547788b7a4b4074ffa468e26ec699c14ff173751af9144f008c50e6da8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 da8c411a6fda5926680ad50df52f79feb7d705e7fcd53a20471ebfb6ea1f547d
MD5 e253aee3405baaa6c7be25a1bd085772
BLAKE2b-256 0ed9869c31bdea88661bffbf68e196e29cc0bda15540589f57181c54099b505c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cea35ab89dab11e9488fba7361ccd9d5156633d0c7cb331e97511be0bda6338
MD5 bb162b4a5cf61d3d00b301fc47eddeec
BLAKE2b-256 5a7f9c7600bbe30ab66ff062e5c716c8f55430b3d07da3ce1a52352ca953495f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4b5dde85ff2e35c00b36a879dcbec9f2228a029d95074315afbfbb531b57d219
MD5 fb628d17cbc8a49ca864c3de19d43a3a
BLAKE2b-256 b3c80bb19855ed3e50ad0f578cf0c18729966ef7e4a6ab8b5b44b010510e259b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ulid_rs_py-0.4.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 118.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 ulid_rs_py-0.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dfce6aed5c423a914b60216ada9fa1a07c7dcf395980a48913709ff8c76bc8d1
MD5 16dd82ca836d5640deee780b6f2db064
BLAKE2b-256 7742cd03096914e88bf6ed0651442e9b83f1beee25a7d5500ea66948588e9bda

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5d3af17b9623ea80a78ab5629fae2b8020963147c4fd3f6bd1e2b110fddf7d8f
MD5 e88087210e60a6ab5206d7f710307afc
BLAKE2b-256 50820b307facf47194310cc11e2856d5599dffbf66c7ade818e905aba6734cf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 379d85cf5ada6f39b490db051c3b603df06d16325eb2878aad2faa625770abd4
MD5 1f80a68f4f3d578eb76864166d56d120
BLAKE2b-256 051184ec46c64785cdd4f9ae7f20243d7b31d552f7bdfa85a7c6c68cf8861c48

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c24998f964a8a2a46f00ede04e2b893b6619bfae00772fe76544160e793045b7
MD5 25d427cb58fad2ab53c73fed3d228f58
BLAKE2b-256 1486a564b0979df81a3c945762b3f40cb05038e1796abd0dcf900160edfe265d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7dba141a17237bb0322ff59bcb8b07c1e62881236719790b880ce16eb67258df
MD5 812123dc5f4a809529b94dd1ea0aed78
BLAKE2b-256 5c275dfabd7f735e4107b6c873594716194c6e1a7fa2fdce1ff90226474c3b9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 90fae444925cafdc6dc3afaa38493e74d5e78aef4b2018bc273163c8fbe16d23
MD5 639d923294708e463bcfedfa55eb3b4b
BLAKE2b-256 2bbb826a0aacaa635e36e152f2dba241777bb63929e8b7839321c09ee3a3db01

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ulid_rs_py-0.4.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 116.8 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 ulid_rs_py-0.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dcb22ee4881c7ce2f705a0aa82541fb5e9b6042fc2eafc9f880b5bbca6d5e4a8
MD5 26b85ab59d5e09b87da8d343cfe117fd
BLAKE2b-256 b9661ea8a3f8584fd0f6051c62fa4e79b1fbc89887edd6e98ec950f712493abd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5f45bd17b11d807f38c9db0f81fffbdf36ef867f6f014fd01f6bc7c1ed287eb3
MD5 1e30d78529e002316c629bea7fc1dc07
BLAKE2b-256 0d24d04a0c84f26932299c541ddca2c0a8c3292cba0c091215a907981ae3bb65

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f39e24262a668ec5f8256dcd4a1bb835743af29720bee5594f585e61bfc976ca
MD5 f13c5da59a6cf987590548f43f86b393
BLAKE2b-256 2db084f145d6e7bea9a848dc09b9b9f3f2195d7ca97fbad73b2377c68cb86766

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6f7f7b603c881c1f56b1f7c4d2e78cc96700a4165baf6c9a64b9cc19828880b3
MD5 57ea0ef75c06f0273de797c86a86b895
BLAKE2b-256 4000f00b94e3aad91dcbe3c699620ed10fb48125c30b4de262a7bb144c398385

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7613bd4556cc424f3125240890d8afc062f00243b0679aa54da5756df694d948
MD5 d6f5fa3a4a5869b1d83a484d4aeaaf27
BLAKE2b-256 76dd3a0a822a4ec8e6a13b0a2e45be506fe5e827699ac432c28e6436d9bb1d77

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c734a62252449080d4896b5157cc1f601e51731545bd4830e2c8d2bd5c502d9e
MD5 85d19ef40f72a038e387060d71901efa
BLAKE2b-256 2e26ad46230020cc17ab9bd58d52f15e0dc6eb13cf9a4a7ba1e1a0464a05ea93

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ulid_rs_py-0.4.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 116.9 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 ulid_rs_py-0.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1c7d99bed7a9a770d0b2f41e6c1ee0722c985d671be722533b1f7a2f33b6e950
MD5 22a72f5ded77f7aec7a90317937a3b32
BLAKE2b-256 cebeee7d75f4d90d34f96cdce31f0e4cccb5659d365a958cf1f856884f05616a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e51fc890055f996cba6b63402303cef9fbc8ab6c8d78ff20286b508d05f4d168
MD5 b2bccf33f452eb740a25dad9b52b0964
BLAKE2b-256 a6657c8934ea406c9472f519d8515604619327e72928f768fdb6e45cc7e1872f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8365abeb6fd84394b62f8e0139808559ec3538aefd28b31c8471132c260102ab
MD5 05a0282882c49bb060f61409d6b8a834
BLAKE2b-256 658032aed7f8c5297989c2440ba41f6758520a125fd365c2506be756f232e3a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 80ab674e18567e11a25605144aadf36334f7ff4b2348573515f0a279a4731e82
MD5 ce535f4b067ad0a5ac2932fcecab49a7
BLAKE2b-256 9df1bba8002aee6886a17af5d956d6267fa58bc913114d619f119aff1658fe81

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1361133abf031ca3ecf7057550256a896ef7386c37d0528514effa9059a3349d
MD5 f035d9df5e1c2e6d30f7af8218cd54d6
BLAKE2b-256 f119113651916ae0d62c3403c9320a5c1cd605450032a10ab7cfd3d7aaec8cc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fa92e1fffbb1903e7da08fa8212e53b465291c42b9aa627a4fc90cbdb1bd78b7
MD5 52fe971afa0c7c0efde0c95a23dd6b3f
BLAKE2b-256 cddd071678990c1fee14053daf27fc21dc6ed28a7ac91d4c739c8368dd839b50

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: ulid_rs_py-0.4.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 117.5 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 ulid_rs_py-0.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8ee4d36c2ef48a8c598bdfe49919767cbec08b5fddf6c8d6b96f922d8ce8c16f
MD5 622f92f52d360c0c69bc3f0849e26312
BLAKE2b-256 85c11d543a9b8c1d3559e5bd0092bd49d9fbe52ce63e621c895b5e4fd34af222

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a434a0f9686881c80c8415a19c7733f391ceae5c5f9c527a49cd26c61081c20a
MD5 813e4a9305bdeb061b4ccf4824d3f122
BLAKE2b-256 9b6cde47d8751d9e38e09403c69393fc9fbb732c063cc54eb4af5d43715a58ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4dc5415c50f1b9a881dec4657431ef3a004ddc4675258f12015b811553521dc7
MD5 a6b003d5ed52ba9af4ecd547f4c27d75
BLAKE2b-256 e24389c398d77a9661b82dd23e22b9ea313b7be930e97597821f0e1bc2b2d701

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a7cb20be36d1b3b9449f4fadc458b5da300696343d898050aec6ac2750bc456
MD5 59c264984d12a53b4908e7f19070b145
BLAKE2b-256 79434f4d8ca74be73e44be157fbb7bc395a506fef2e319d3436df0cc8c9b5128

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f35b77b373846b66aecf58df7c5b1dadd4430df474e216ffaf9fd6f6ddced836
MD5 092f395c37727bab8ac3b82bb105207c
BLAKE2b-256 b90fe452cfdd7f26b3e6ff0654b02bf75ab5485c031079eafa2ed1e051d9a261

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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.4.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.4.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 254c39d277811ec81e9f5c2263c1c57476eac81a7d5c30658831c554e17b65fd
MD5 5188e5326448843fcec7e0481ef30008
BLAKE2b-256 960996e8b6f240f73f3333fbe87f5c0c87b35e7596662faa392c6da41a25ae87

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.4.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