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.0.tar.gz (9.1 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.0-pp311-pypy311_pp73-win_amd64.whl (119.6 kB view details)

Uploaded PyPyWindows x86-64

ulid_rs_py-0.3.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (391.5 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

ulid_rs_py-0.3.0-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.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (192.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

ulid_rs_py-0.3.0-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.0-pp310-pypy310_pp73-win_amd64.whl (119.9 kB view details)

Uploaded PyPyWindows x86-64

ulid_rs_py-0.3.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (391.7 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

ulid_rs_py-0.3.0-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.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (192.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

ulid_rs_py-0.3.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (204.7 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

ulid_rs_py-0.3.0-pp39-pypy39_pp73-win_amd64.whl (119.8 kB view details)

Uploaded PyPyWindows x86-64

ulid_rs_py-0.3.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (391.7 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

ulid_rs_py-0.3.0-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.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (192.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

ulid_rs_py-0.3.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (204.7 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

ulid_rs_py-0.3.0-cp313-cp313-musllinux_1_1_aarch64.whl (391.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

ulid_rs_py-0.3.0-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.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (189.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ulid_rs_py-0.3.0-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.0-cp312-cp312-win_amd64.whl (118.5 kB view details)

Uploaded CPython 3.12Windows x86-64

ulid_rs_py-0.3.0-cp312-cp312-musllinux_1_1_aarch64.whl (390.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

ulid_rs_py-0.3.0-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.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (189.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ulid_rs_py-0.3.0-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.0-cp311-cp311-win_amd64.whl (119.4 kB view details)

Uploaded CPython 3.11Windows x86-64

ulid_rs_py-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl (391.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

ulid_rs_py-0.3.0-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.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (191.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ulid_rs_py-0.3.0-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.0-cp310-cp310-win_amd64.whl (119.6 kB view details)

Uploaded CPython 3.10Windows x86-64

ulid_rs_py-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl (391.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

ulid_rs_py-0.3.0-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.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (220.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ulid_rs_py-0.3.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (191.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ulid_rs_py-0.3.0-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.0-cp39-cp39-win_amd64.whl (119.9 kB view details)

Uploaded CPython 3.9Windows x86-64

ulid_rs_py-0.3.0-cp39-cp39-musllinux_1_1_aarch64.whl (391.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

ulid_rs_py-0.3.0-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.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (220.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ulid_rs_py-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (220.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9macOS 11.0+ ARM64

ulid_rs_py-0.3.0-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.0.tar.gz.

File metadata

  • Download URL: ulid_rs_py-0.3.0.tar.gz
  • Upload date:
  • Size: 9.1 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.0.tar.gz
Algorithm Hash digest
SHA256 b669f3a0b6dd4ae23dfe230f13df721e37ed7825fdb90b89d77d9eef9628fb23
MD5 6036f0eccb3ebe7834e4f15ac44921f7
BLAKE2b-256 540e9581a57a20224c096d050e1e7a20970eab980ad1b1e7970dd884fcbed19f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1039af2d014442b794bfd6c9d6fbfe134ef5116a6227bbc1283c3b6447d6770b
MD5 07a362f635870fdb29c00f93d9778ca4
BLAKE2b-256 0859eb48ff6b78e8def6a873a82d40e274e2820e7206a73ccea5849d43f6dc4d

See more details on using hashes here.

File details

Details for the file ulid_rs_py-0.3.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d80b82d065ec1b40b74fbfc0269cabc6ec4f6ae053c5ab04b309e284751df688
MD5 4445b48504a2c664f5890cac57b421bf
BLAKE2b-256 47bc07bad67ef02370dd703ba665c2c88389f64eca34fcf72310125a8ae8d1fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 595a81d3fa350f1c85ad76397216da2e6529636c53af9b7cc4ee82157d2dbbbb
MD5 02db2396905ddf7fe56f7896710e73e9
BLAKE2b-256 133f65ce1cc6479e44436774d17a0f5acb2035c97052d3b3cac15be4094fd606

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 556a528883b9943298ed057c3a4a949acb38cbfc7278d30677f94d5e6a2e15a4
MD5 690396c9ad7b50354b18c9d8088a5143
BLAKE2b-256 40218e8c25bc2a4724d093850fc7048fcff7d074f067be873a6da0d8ccc21bf4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f9b25a76aa9522dd5524c94baf6efe4a1873e90a15b111da450024f490cc2e9
MD5 e91be250bdc933e59c03c1c36818d2b4
BLAKE2b-256 f33dd4c487f2eb28421156e93fdf4d91bb8add335831b149c9e13ca6a89580b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a2823177b23912c69242feeadde4182244816f7e3a406c72c4fd1dd22d1849d3
MD5 b9eb2794e31a914ee0482d011e787a8c
BLAKE2b-256 28b9b2bad4fe3b3fddbc0e30bd157da09b8709c70366b92c92e52931ba8d4dfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.0-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.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a4414bf65f4bcbe249ce00a25fa3b4e0eeae0312e9ba7e2cae74f3508424822a
MD5 9da40f80e2b8782e8abb08105304b090
BLAKE2b-256 ea143c6d31ae9611a6231a57e666b26d1c0589329728b590384d8db85738499e

See more details on using hashes here.

File details

Details for the file ulid_rs_py-0.3.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 30f780b4a4abe424272f099ac95975e8806070b12ef8f6372eb04b28eb6fafcf
MD5 178f523d9a80cbb04af1713a853c0436
BLAKE2b-256 f8f7cd77fb2a4e251d44936135f11d94b873e2f19e09fc30138d6004757d7420

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 705a68e263473621680e57b2f733c6d77a2d8f21e050e02056db321891c0ecae
MD5 13a88601ed418f14abf73a2b34b45fe3
BLAKE2b-256 e76096451cd893450ba5270b8f73b038bd8380a6e1c293e73530708e41b99212

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.0-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.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a203099de2e0397a09b2cb9910b79da6ce96a56dbd909c4231ef6bf1245b9d71
MD5 448a18e8757f167f391f46848509701f
BLAKE2b-256 7b71e9b93c11027d0cf1c31ea7d646a1a2a226eb0f0e7294d019162bec05e493

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.0-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.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddc6d45eca7186d16a8add64a99c8cb613dc861116001b0bdcb211f87c8e8189
MD5 594575b59287ad02266f699996d3b37f
BLAKE2b-256 2040ad2915a00e1d9e9046cfd98a5eafc760e0eff759c1f24221df25ee9a34a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.0-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.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6dcbee7328ebe8f988e590fe4dc70d648004cdb580903e6c955fb04fb8996d09
MD5 1e3494c33113c44e2f7622a8158a722b
BLAKE2b-256 87d6d00c841ed8bc7b8b1c35da8e00832051f07249ca6704aeb9dc00043d8638

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.0-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.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b50d32c83246a0e5704e8b383d5d67fd8ae1509a316217d02e7f108c730bd1ef
MD5 16776fd91480dc99c7d6d5a02a31dd93
BLAKE2b-256 de4ad1b0b5f203ae2c8d0fc13c166fdba9c86d0e139fa87658720b4598e957be

See more details on using hashes here.

File details

Details for the file ulid_rs_py-0.3.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 95e874ab4d6a7074dbb494bfdb8861ae428da870d3674886127e28a83921b1e0
MD5 fe00a07c67aea91101bc99990de94ecd
BLAKE2b-256 64a5f39e7a092f3f323a92d28132b3f9e26b2b67a25aadcd86553704e39fe761

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 85ae6353fc68eb58dc0ac3bb5c6617cbe8aed451490c834c4cce08404565930c
MD5 6c077f4725642d29e3b9c7062c8dae2b
BLAKE2b-256 36303553f8522d67355a1ac99f768ff6c4af2f8d6f56d83e96ac5b26cef03aec

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.0-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.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99ad8d99385178477af405267e80da0f960d9bbddd94545001b5105fe26bb538
MD5 9f81e6de2f318c3927a00366d572a2fa
BLAKE2b-256 cafd38b0081c788a1fc1fc6286d4127f60da3021d7b19b215fd1dd688869be6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.0-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.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86e9e15f577dc35cf7ae7f2e585eacda805109b405fca527b6e0879748d58977
MD5 65b5c0332c9e5dd2c4949f2d431d52d5
BLAKE2b-256 de490402d8709995f89b42997ddd538a35e8e04b8505853961078b469915b5f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_rs_py-0.3.0-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.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e60dbfb98b406d669e40e0f3f8a407dc6c568949750892d03de5d8ac52be5f6
MD5 96286da614a8a284f0021c59abebc791
BLAKE2b-256 b139d35020c50364d414b045141131f128790f360c97e38a7903114ab987e64a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ulid_rs_py-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 26a383a4dc907029b91622cf94cf4a87ffe59d9d099bd46c738637fa1d093849
MD5 00d00bbd74207ada7e757d00720ffce9
BLAKE2b-256 d616b48d832a2fc236042367b023c27a20c0e47f96b6c746169bf72f6945db96

See more details on using hashes here.

File details

Details for the file ulid_rs_py-0.3.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ffc5d5c59695a1458e23b56622ac145d6d3251f1c60864c3997c44a283d59949
MD5 2f72383c022eaa4a6e7b7b9773b8f305
BLAKE2b-256 c343dc246d13b4ef755131d773d15471dcffb8d8599de8e9e4d3b13ef506bc33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ab32c230c62f3f3cb46006faedcf10aa802138905c84aa0b2ce52572d66a402
MD5 10a37d3b4eaace04f6e0c057374a73a0
BLAKE2b-256 6c8aa9f2819801a75642adc051ced3ea2ca8a906fa850ade4ab0ed35bea18866

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbb389da7b57cee5e252b82f913b69838589a3a88c62de6ff55d8b35aaf64309
MD5 4631e2daed617d237cf7aa246dc34407
BLAKE2b-256 6c5421f192317921b993e0bef5b3adafaff2dbfc92e4f30a430adaa378d09d04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1b23de0cf95efbe3603a613efd467cece19e6c30f78c3c9ba6425b220d5093dc
MD5 e3675838f46ad3143637d3e15c0b000c
BLAKE2b-256 91e68bc6151ca40a34d15bab08620418372e2241eb04be490f2970d366359925

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 762cd8d5f1dec5c96545394dfd7be73157edc4ad32400174b4fb95fa96d4f2bf
MD5 23d6754b6ca08aa017a4d2f802e03b59
BLAKE2b-256 ed4671e7cec9ac4c4b0925132ea5afd9ea0bc5760c0818586b4fe0c26bbc4e69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 abe3904f27395d4b7c32d4f79888620a98d93cf37c390098a81b031cbec2b4d7
MD5 47a46f13a8dcc745089c09ee4ad46534
BLAKE2b-256 16a2200253ddd332d0b90ea6907d231aecb88847ebe07e2d9190eadcb1482024

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ulid_rs_py-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 281b2b7197763811abe7a76feb0b2eed0a18e18f8b3449e8af1e02d915191087
MD5 86e56eaef193f3a87e81bae3e1b2ae5a
BLAKE2b-256 eaaa74b071678f0e3dd95e5d2be50750c1f8cd7c2220e9044192affb335dd097

See more details on using hashes here.

File details

Details for the file ulid_rs_py-0.3.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cb3633b527bec029631b325c5fde1d28ffe0d4f48a5d9a2d9bf42bb2c9c8709e
MD5 d8435214ff8f669f67292bf508df71eb
BLAKE2b-256 e7eeac887b02e721065e9e06ca720f188f467a05cf85b2d01a54690485c30676

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4b5bdefd207f655a4967855efada9c791e4837a6919025dc40113ded6096c5c
MD5 51135601db68376606a31561f96c3ff6
BLAKE2b-256 7ea4761b96d75891bf041fb619109bf582e6fd6ce669dd59c895171b6637a4c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37fc311b9643f75c04b4ad9298351a9f5c24ddaa69e58ce68eeb318654673bfa
MD5 c7b3bc4c4c5502aea7c92d3c67f76018
BLAKE2b-256 30fb24c205927cf254e9c2cb3a2fb6c99839d2dbfa2533eca278875807c11310

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1444408faa331bb4e9b62a113ccb21b147d2310be5fe6f0593f21c0e3fe636fb
MD5 dd5ae260cb2636eab2430f58064fe521
BLAKE2b-256 6d4ce3d6cff26ae17089f35d049517b36ea248a749c9da89ac162c05b9d92300

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e60a5671a1c5bc3bf9ce8f0caa098bcb78e8df8f6c8e73f88166f1b149547cf
MD5 819529685dab85ebb5bcd7bf2102d594
BLAKE2b-256 acdf84896511279126a402fe05c1068ddcc75bebe6d8c4a6ddda268edfe87ca2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0fd5e77363a3e1a5c565a61bcd2e060f91ddbe9e4b2a398a651f96292c4eb8b5
MD5 4d558ccc15ba8ad8bad1f9c93530d9f8
BLAKE2b-256 8f489468c8648ead7fd9d97e85d6e4cf76647abc0ca43e5cec28a0e85869616a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ulid_rs_py-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 47e6f32337be06c9f7c07130116d1079d447fde6074b0070bb0977603a0ea514
MD5 523fb764b153d709c10bf0dd6072c6e7
BLAKE2b-256 83aaf58875796cf48cc06ddbe18b14bf215b3012b1913d866e2e1f7f181c6d77

See more details on using hashes here.

File details

Details for the file ulid_rs_py-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 088fbd58278e2a9769a0f0035a701ee6471457ef0dc1221a5c023c431fe36d89
MD5 7e60c3800ab8688e42551baf7c588d61
BLAKE2b-256 784373f5581d39d3eb81461cb9444c0b3bf55282fd27a3a2e049318b22962897

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dcab9f3690cb6c9a04e1cf554b3d30e29d9c0d9d54de8216f2aba2d56d50a5bd
MD5 4f850f00b42fba8452c31f1902186738
BLAKE2b-256 41bb739e7e33370c1aa8a608d7edabe0bdd89744588f6d5d9d3a52a8b1ee949d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ce8cee0995d23718bdd8ba919343eae3787d52a7cd2da2c896dd272ce4c586c
MD5 fe60e23fc623d1ec2e6fd85babc23a1b
BLAKE2b-256 47163698214e056c83d034cd23a8150353596077617f061004ecee20b3aaa9aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fd88f825562bcf56d05ca741871913b7adf9ca7a8b4b5f5cfb73fd5ccc54ae10
MD5 a70193e9ebba578e6ba0dfd95cbf875a
BLAKE2b-256 2a4900cfa8f3c57e482885d94d9b685dc51e9cffbcaa89e00b7974c65ab7e508

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86b609da3012438fc6575b5399f54ee42c3183f1da82afe03693d59413f8f205
MD5 fa3887f11f3eae9f0061a3f5d7255b58
BLAKE2b-256 9ba3cf3a1365a87d9ace62ad63e555cc430503a503f4b4375cbf4f83d124b587

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6a7ad303a989525e09106cd54c0500ab740c226eb573e10ff81750b853681117
MD5 d619ddb0cd3ffa04d58218a45fb5ddbf
BLAKE2b-256 20118bf5f961f33ca659d473770de32befe7af03ec33044ecc543569db6836ce

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ulid_rs_py-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 617070e7dce3febdb6ebe0a416236e3346d874a7f6aa1bf337caec2128980edb
MD5 56bc93cb9749ec7957e879919594e29a
BLAKE2b-256 f6107bef79ce7bb28c91bf765a311b1c56738893fded863d3f6a28169ca6f365

See more details on using hashes here.

File details

Details for the file ulid_rs_py-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5e89218b35984385553048115246e98622f5754fd7d42e4667be16922218b89c
MD5 34394d5d461941af1ebcacdd6be66ad5
BLAKE2b-256 fe4c0af919359b11a5772eab9941ac5387a14eb89955b6b72fda4c37329383ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7f450a07e82a76895a6e0291956a829927df08caff9bc404cd3f4051c0da81da
MD5 f16a81858f9c59c3da6134f7ea259ed0
BLAKE2b-256 77b7438dd01962d65573eb0d7d4276cf33a7090ff107db9b8e53ac080e5cfcb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15ffa3dab38d1baa74a27c085862a812202715ccd690244d14808e0bb413bc97
MD5 9ca563ea6b6a2bd4a9ad86ad0940913e
BLAKE2b-256 63c8b47aebcbedb2aa4c7a3ccd99a3a38e249187b968fa1f44bd3fa0524acc9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 96d991895a92d850f97f2a046a42f04235a46bf76d97ab3fe68f7f8e4ae4750c
MD5 cbc2f1fa203001ee3f3fc3b516117a93
BLAKE2b-256 f9cdf25da6c5b80bf3c94860e001c1aec36befa14330e29ac77d0e995a122056

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b009781f3ae46767445bb0c3ec5bb20a008b3f557ad5dadde2864af8504b3a6
MD5 107e9be061b45fd5346c9be056611f60
BLAKE2b-256 46083023a1abb85a7afda7906c3221ad86f9ed2eeeb54ec4ea64859cedd36572

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c2c153aea95733c2c1e0d9d68f5143baf899f9d2adcbf8619b0997b5330c2642
MD5 d43ab19c622afe903aaf11ffdec51416
BLAKE2b-256 2c51e776de00b91e75f8daa8c6e68c3aeb2bfd2048d8b49f6f6db8cc0d1008c9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ulid_rs_py-0.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 119.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.16

File hashes

Hashes for ulid_rs_py-0.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 645a5dbed0f2bae5e0bce47487dd1a059e0975289b000279f37ecbb55b2003ab
MD5 034eb6280446f5775744c86c3ad9fb6a
BLAKE2b-256 a972803aa2641786d18d702ef2d5b024f016d69a34ec2453a89c32a8c21a6259

See more details on using hashes here.

File details

Details for the file ulid_rs_py-0.3.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 acd12a125f4230664fc2ed52262f217be9e9d683891ce0c7fc8d99f6848f8ef2
MD5 d03a235a162046bcbb2d797b5e9e4c40
BLAKE2b-256 55cce7f4a9d24aa6953b949a7f71e2d4d5b8d9fa3f658657cde56e8be8ea4b76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 67b7f793384e3956b3cdbfba26d27b455cbfdf76667f46ad352aab30142ea810
MD5 5197dac0cffda90611e985dc0865f58f
BLAKE2b-256 5773e09695e1963e807ccc8175720b9bbf050f1ca32d73a8e191ae52c4c828f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 106cfa3e1e0444596bbba07044e466c5b6a31131a034e23e0f936f19d03e68b6
MD5 a09fb12c03970819ac5473d706eaa0f9
BLAKE2b-256 00108385bbf998e2ea82b23fd657123b6c3c813794a0a2739e8473b71b03406e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 257c87b0f62be5e8f12a7bb43cb0507a73e5665ae0783738bfcf2e0fdab89baa
MD5 a82fc25b177e0795982b7f16a0a52c9c
BLAKE2b-256 46fee5ac35b06573e2d6675b6a5c2e78baed28ee1c89a4a000afbcfe348069b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60afc4d0fd5db53d60724ac60d26ead394c67455dfb9eb377daffe29dbd99b2f
MD5 1a045f3a28df85696f9041fdb65ff5d2
BLAKE2b-256 08ac6bb8fe8e2ff40f994afdaca2c5fbf86c2d890c210e91900858feb1f9a2af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_rs_py-0.3.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5a51f85a5ad4f2eb7227812d787d746fa8b596d71643a32e3727a39b4545b30c
MD5 8e17dbc6fe6459b31ec5cbeec2dba647
BLAKE2b-256 c2e8031b6979c48422081d829547491b6a726ffeb0548e0bef6ba2aeac5cc35a

See more details on using hashes here.

Provenance

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