Skip to main content

Create and transform ULIDs

Project description

Fast ULID transformations

CI Status Test coverage percentage

Poetry black pre-commit CodSpeed Badge

PyPI Version Supported Python versions License

Create and transform ULIDs

This library will use the C++ implementation from https://github.com/suyash/ulid when the C extension is available, and will fallback to pure python if it is not.

Example

>>> import ulid_transform
>>> ulid_transform.ulid_hex()
'01869a2ea5fb0b43aa056293e47c0a35'
>>> ulid_transform.ulid_now()
'0001HZX0NW00GW0X476W5TVBFE'
>>> ulid_transform.ulid_now_bytes()
b'\x01\x9eS\x9d\x1bhl~\x1e\xf7\x959\xe1\xf2\xbe\xea'
>>> ulid_transform.ulid_at_time(1234)
'000000016JC62D620DGYNG2R8H'
>>> ulid_transform.ulid_at_time_bytes(1234)
b'\x00\x00\x00\x12\xd4Pq+\x1eG?\x91\xe9+|\xbd'
>>> ulid_transform.ulid_to_bytes('0001HZX0NW00GW0X476W5TVBFE')
b'\x00\x00c\xfe\x82\xbc\x00!\xc0t\x877\x0b\xad\xad\xee'
>>> ulid_transform.bytes_to_ulid(b"\x01\x86\x99?\xe8\xf3\x11\xbc\xed\xef\x86U.9\x03z")
'01GTCKZT7K26YEVVW6AMQ3J0VT'
>>> ulid_transform.ulid_to_timestamp('0001HZX0NW00GW0X476W5TVBFE')  # milliseconds since the epoch
1677623996
>>> ulid_transform.ulid_to_timestamp(b'\x00\x00c\xfe\x82\xbc\x00!\xc0t\x877\x0b\xad\xad\xee')  # also accepts bytes
1677623996
>>> ulid_transform.ulid_to_bytes_or_none('0001HZX0NW00GW0X476W5TVBFE')
b'\x00\x00c\xfe\x82\xbc\x00!\xc0t\x877\x0b\xad\xad\xee'
>>> ulid_transform.ulid_to_bytes_or_none(None)
>>> ulid_transform.bytes_to_ulid_or_none(b'\x00\x00c\xfe\x82\xbc\x00!\xc0t\x877\x0b\xad\xad\xee')
'0001HZX0NW00GW0X476W5TVBFE'
>>> ulid_transform.bytes_to_ulid_or_none(None)

Installation

Install this via pip (or your favourite package manager):

pip install ulid-transform

Contributors ✨

Thanks to https://github.com/suyash/ulid which provides the C++ implementation guts.

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!

Credits

This package was created with Copier and the browniebroke/pypackage-template project template.

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_transform-2.2.8.tar.gz (17.8 kB view details)

Uploaded Source

Built Distributions

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

ulid_transform-2.2.8-cp314-cp314t-win_amd64.whl (25.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

ulid_transform-2.2.8-cp314-cp314t-win32.whl (25.7 kB view details)

Uploaded CPython 3.14tWindows x86

ulid_transform-2.2.8-cp314-cp314t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

ulid_transform-2.2.8-cp314-cp314t-musllinux_1_2_armv7l.whl (877.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

ulid_transform-2.2.8-cp314-cp314t-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

ulid_transform-2.2.8-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (26.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ulid_transform-2.2.8-cp314-cp314t-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (27.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

ulid_transform-2.2.8-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (27.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ulid_transform-2.2.8-cp314-cp314t-macosx_11_0_arm64.whl (25.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

ulid_transform-2.2.8-cp314-cp314-win_amd64.whl (25.8 kB view details)

Uploaded CPython 3.14Windows x86-64

ulid_transform-2.2.8-cp314-cp314-win32.whl (25.7 kB view details)

Uploaded CPython 3.14Windows x86

ulid_transform-2.2.8-cp314-cp314-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

ulid_transform-2.2.8-cp314-cp314-musllinux_1_2_armv7l.whl (877.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

ulid_transform-2.2.8-cp314-cp314-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

ulid_transform-2.2.8-cp314-cp314-manylinux_2_41_x86_64.whl (16.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

ulid_transform-2.2.8-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (26.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ulid_transform-2.2.8-cp314-cp314-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (27.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

ulid_transform-2.2.8-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (27.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ulid_transform-2.2.8-cp314-cp314-macosx_11_0_arm64.whl (25.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ulid_transform-2.2.8-cp313-cp313-win_amd64.whl (25.4 kB view details)

Uploaded CPython 3.13Windows x86-64

ulid_transform-2.2.8-cp313-cp313-win32.whl (25.3 kB view details)

Uploaded CPython 3.13Windows x86

ulid_transform-2.2.8-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

ulid_transform-2.2.8-cp313-cp313-musllinux_1_2_armv7l.whl (877.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

ulid_transform-2.2.8-cp313-cp313-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ulid_transform-2.2.8-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (26.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ulid_transform-2.2.8-cp313-cp313-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (27.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

ulid_transform-2.2.8-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (27.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ulid_transform-2.2.8-cp313-cp313-macosx_11_0_arm64.whl (25.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ulid_transform-2.2.8-cp312-cp312-win_amd64.whl (25.4 kB view details)

Uploaded CPython 3.12Windows x86-64

ulid_transform-2.2.8-cp312-cp312-win32.whl (25.3 kB view details)

Uploaded CPython 3.12Windows x86

ulid_transform-2.2.8-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

ulid_transform-2.2.8-cp312-cp312-musllinux_1_2_armv7l.whl (877.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

ulid_transform-2.2.8-cp312-cp312-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ulid_transform-2.2.8-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (26.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ulid_transform-2.2.8-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (27.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

ulid_transform-2.2.8-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (27.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ulid_transform-2.2.8-cp312-cp312-macosx_11_0_arm64.whl (25.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ulid_transform-2.2.8-cp311-cp311-win_amd64.whl (25.4 kB view details)

Uploaded CPython 3.11Windows x86-64

ulid_transform-2.2.8-cp311-cp311-win32.whl (25.2 kB view details)

Uploaded CPython 3.11Windows x86

ulid_transform-2.2.8-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

ulid_transform-2.2.8-cp311-cp311-musllinux_1_2_armv7l.whl (877.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

ulid_transform-2.2.8-cp311-cp311-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ulid_transform-2.2.8-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (26.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ulid_transform-2.2.8-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (27.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

ulid_transform-2.2.8-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (27.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ulid_transform-2.2.8-cp311-cp311-macosx_11_0_arm64.whl (25.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file ulid_transform-2.2.8.tar.gz.

File metadata

  • Download URL: ulid_transform-2.2.8.tar.gz
  • Upload date:
  • Size: 17.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ulid_transform-2.2.8.tar.gz
Algorithm Hash digest
SHA256 a75d5852484386209d28764b3a5a55a3ac94c0d28cd7c32c6c56ae2105b07058
MD5 6e9a861ff75b984e4b01a73efa76e3f2
BLAKE2b-256 f81d236e94bb518b140264fe6f95a4ffc9ca0139316569632d545340c7d1ac7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8.tar.gz:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7b213e96a281b709fddc630e8555b69257e58957a9df32af31754f448f4d4fab
MD5 3d539d741d5d33f4d82fb02394cb30cd
BLAKE2b-256 f8977d966809c80f3e9152a263093a894207c2b08e24916a1776adcaee50696c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp314-cp314t-win_amd64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 23dd238fc653bd538cbc18c3c6fe69af2eb64da23e9d5e1d7e6ac30cfc2ae839
MD5 230ef138947f85462d37cd75277de7d0
BLAKE2b-256 76a7bc03b729909fe99e64801c963ac01ead551fde93092ce79b4485ea2f5b2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp314-cp314t-win32.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4803f27f1fc1d227296734b061f3aa96726f467ddd9d1c263604b685a0dedcd4
MD5 26a300d9bb69288c7f944bd27ac54ede
BLAKE2b-256 c793dd7c21aa064a1d5efdb09a89ab84bf3ba1bf7d96f1d9729c9bd565cf70e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 11ba786d7c0b52dd6a7b4e4870735049c023df7a028aa3f1e1fcfd06fb03e51e
MD5 ce76aebcc0be836d8d81269a75944de2
BLAKE2b-256 852be654b0bebcda38104864c22df613f5fe69e378b0e4dd6606c6c9d5366b33

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06d7d984837268c157a398e27680c21b8cdbcf7678748997e145d6dff2ba3cff
MD5 ad77b9163cba58074dd2bc963449c6a6
BLAKE2b-256 dc5818a1706009f4e9ca9a5a4aaab6eaac3e9827c5f62a581b41bd51c8e10d20

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1316b1431e330767980991dafe825eba32868e20e80d349ac28bc8ad31eb35e6
MD5 a7822d7a69e869ddf81772a8391adfc9
BLAKE2b-256 25e97f968072c3d708b6b90a98f9758c8bb11a8df72c3c56c0393621ce6f6092

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp314-cp314t-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp314-cp314t-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 45d3e099c8ce4d52a641669b4415385280255adde53800f2fe1be8a89eb2d38d
MD5 a910f68e7fd8172d3d415fc603241181
BLAKE2b-256 edc9353a884d4ef8c6af1bf7ff294e656dbcb0fd392de07ef5b9683be0a5684b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp314-cp314t-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 09a2af96bf6bcc33e4fb8f0e83a21ecbdc02fbab91533bc322309d29e99017b0
MD5 626b5c8ba364c97f036753fbbdd7d9e0
BLAKE2b-256 725f3a364818d0ff480292ea8d61962068ee63869f7345e9afb640b7630c1778

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccc86af3859ae23eee3b07ea880f23da51ba022f6f3b5d4b274b51fa944bee16
MD5 e8b01877f8c7933f1d5d116f6eab1fb3
BLAKE2b-256 6c937a484b0a5b4edff93205f2577cde66bf6cd786039c4c26a0e85c1d019702

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f7d465fd8f7fe08a5e60ef1bc19e439b1838b0b4db955fd2438d1f83701b24ea
MD5 484491fc895f54181ed2705deed52982
BLAKE2b-256 7f9eccfc656488f434d6f441fb4a97a3537d3b46b405f41e6ae55f601e7304a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp314-cp314-win_amd64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp314-cp314-win32.whl.

File metadata

  • Download URL: ulid_transform-2.2.8-cp314-cp314-win32.whl
  • Upload date:
  • Size: 25.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ulid_transform-2.2.8-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8c10a00ff60818c4d9422ad0fce19b5d42ba662551bdb3234b7fe2fe90252121
MD5 be4f8678072a353a8ce183e44ef95cf4
BLAKE2b-256 8391e2be71bee553cace63eacb549ab7e888f50df42a80b6680b2fd063e4c316

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp314-cp314-win32.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7ed7b9b1b1b970391b1f9883da336c9f0407fb58c2c6c7a3894bac9f436e19e
MD5 5672c71f31340d73c1ed1e3de9b869bb
BLAKE2b-256 a12dafde4002cdde01bf07dd7d16e34d049f4b55e518cf67becf377ba34179c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1416bd427d3e804412bcc2476b3901988bc93ede15e434811b1b91ad83a5b2c9
MD5 4f6e53e463dd4d588c7f96cf896970e6
BLAKE2b-256 edb147bd1572e86a0e96a9d34b31510b06737e25549c13c64cc90f5154c089d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77e54f50f0a3d5ee02612f49ffcfcca4d6850e2410dcba126895bd5519669ce6
MD5 d2eef6e000bb2a12ba349fd7a8b22316
BLAKE2b-256 0e05639684a527cfae5a9b5fcc5c2903a0e600be87ce6a8bc3907080faf9d167

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp314-cp314-manylinux_2_41_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 7cba64c0753dcb0cfb8836e45f2dd1cfd424f0942909695b82170e7deb883813
MD5 c602cbed8ecddf2b71987720afcc53e3
BLAKE2b-256 2e25eff9270325504319df715edc1a8444b04018dfd441a305f9d2a581e3fb0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp314-cp314-manylinux_2_41_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92a79ab74c8abe0c12e8f93063e2b600254bae4bc8545c51381692d908986572
MD5 9e0663a019fb7b017eb7c9ccaef09e97
BLAKE2b-256 b5789e8d0e119a5fcaf5d607e12cbbc490d87fafab99a07b1e711ce11fdae985

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp314-cp314-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp314-cp314-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0a782014af555f6605ee75d6bdfcc724ac328e41ba99831d02930d2abbf7cfd2
MD5 0689c2d06476b6dc0714e6f0d342df85
BLAKE2b-256 ad48f01206ef4a8fcee511799cc693975231902bf46533e3e2c0c4a00c9eb703

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp314-cp314-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3b9a2e76a7197e49af97c94d0a4fe354eddab8a2a9f1857ef30a2871567f5d45
MD5 8a09d57f74f8a170b37222c4e7587e29
BLAKE2b-256 9e1ed20be0dcb770a3b51a1c6313046485af9afb1027c715d6a5fd4b1a8a30f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 174831cab858847610bb324cfc46ec7825c0b33a6218ed340690c4bd4281bbd0
MD5 3576aa289f65edd54b47a8915895bfcc
BLAKE2b-256 aa3d6bda3a5640609756b470d170cf64493b4ce203a5140430eac23806f30ee1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 beb11707849bf16914887c5e5b95c9419903c5631f8a726db2878ac647d5903f
MD5 ba695b84b38591232c73f9b2843bf27b
BLAKE2b-256 35ae8099f02c9bebc22d6a1f762a9b03058a66fa63c7853bec5769b0b1c69554

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp313-cp313-win32.whl.

File metadata

  • Download URL: ulid_transform-2.2.8-cp313-cp313-win32.whl
  • Upload date:
  • Size: 25.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ulid_transform-2.2.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d86e08b8f8ba78465d134c851303d7774f92ab5a3c924657afec124ec89d81ef
MD5 286afe693975ca1608f09765a606615d
BLAKE2b-256 241e586d30d1600a8879f45d0cbcb08061788a1313ed7adbb3897ffabbcb502b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp313-cp313-win32.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e21284db875efee43f10255cc6d8c06dff8ea8e8aff921bb53e5d64f898d52d4
MD5 469d84ed23ea006ce4b089e6233759d1
BLAKE2b-256 acf1b346e717fb2b43fb78439f3268c77f6316656855f41227853b526c012983

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6b7992c527b7a65421227c4203f1130d0e5e3e21188d4789bc7dec83abead4f
MD5 9f5a0561392208fa49eeb942ba1c7b6c
BLAKE2b-256 d3bbdfb40d2f8046e08707bdc4fc17da735e80fdb35cbe55e99609310524de8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1fc8f3282b85f82a58b7648e42f22a65d4b811ec206c96c36d98f1960e00b8a2
MD5 7b00fa3984d649f4817e6066c33657a4
BLAKE2b-256 5f9e80cc0fdebd99d6461cebdaa2dabf48fa346a3b806e0364590a59b5cdcb9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a4800b662ca43223542bf06516cd4492c2a22cbb5eda4076819c431cdb906ad4
MD5 192075729bbe90dd74953f77562f5a26
BLAKE2b-256 507e1613d566d7666a9252958d05a9ba2b197b2a2b047c6461e9a060591423d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp313-cp313-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp313-cp313-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 698b7cd8e51dd2756503de2258695ad08ac1951310357ed030e09e18808b810b
MD5 efaa4accbfebbb97c1b40e2a69b006c7
BLAKE2b-256 528d3519914115262357691a44bd3878565fdc5b6a508bd6a666b2436e653ae2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp313-cp313-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 13e293de473f949c92b93e4e4b156238f9bee643699dad15acc487d3ca575650
MD5 818c825a2dfbf60a5c56596e79690363
BLAKE2b-256 60e7ece6f85d529885a34ffcaeec605409e4400d8bae55443de3e2508b20c9dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bcce1482b9648d091c0a687d9e54bbe92c89c03e46d4e6cbfec0a82c657b25a
MD5 03b5f50f53357b4e7cff10bde34ec95e
BLAKE2b-256 b0efe7045c89ce90ae20af1706d4d4150018afe7cb23ee9bfd192abb2145f6a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7b20f7f16189ac13a60b22fea83876c2eca5cce5b797fa8b5384c53becee80c7
MD5 624f69c96d19a4dc8c9f565e5b0f6595
BLAKE2b-256 829f8d7899d95c246392739f055663a028ab283faf0164c398ed8639227d5c22

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp312-cp312-win32.whl.

File metadata

  • Download URL: ulid_transform-2.2.8-cp312-cp312-win32.whl
  • Upload date:
  • Size: 25.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ulid_transform-2.2.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 79e2dfb9a5b0bd5d159fa24df5193efb740553c372bcab3a354918f58aee38e5
MD5 5b9baa798238095d24b905b3577ef5ee
BLAKE2b-256 d12b13bb6203f46593d9d716aaf6db39a5083d90e202537a736a69a9612d2e7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp312-cp312-win32.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ecdafb4b5ba7262a71da34107c6fb1a225ba46469baf910eaa6aea25f77e272e
MD5 f49c9bf6d2281a6822c5edd886533820
BLAKE2b-256 16f7747071262397fb98a3750c054bab2e84d1065a384f79317ad8a406949645

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4c20fe2644cdd65698917fea5af235c31a3923ffa04482d047134c969891094a
MD5 d9feccfeb45d0b7fbdbe9b9c804eee8d
BLAKE2b-256 b8d0d886408dae0e035e9b1f9d84cc572d7f31121831c64c573723e156bda4f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92e7e2ba2e4246af26a6f7ad89920b92e1547fc5a03ea4a896be2df9eecb2248
MD5 0fa88c391bd7056d9f77ff7d8d1f56ea
BLAKE2b-256 eac0f42d14052d0b1ff7d956055a70d715ee7f459b2b269558fab623c22f5b0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 223b33f69acfb68954b42ab20e750a2e8319c69751fbe792529284be1b296f7b
MD5 687a3bb7cf3a91937bc008e92a6d8f77
BLAKE2b-256 be46dad02c16b3ca7583ea510ab250f4c4f187c07d39d8f05b8ba7dd90f6794c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4891bc563d9dd2e4d20fb181dda32308280e565ddef555ca74f21c8b6213c233
MD5 c224532ff96f031e99ab5ce6c0bb83f3
BLAKE2b-256 fa5fbcffd284bb24ee75b6dcadb6eacc0902b6551f4a8008e183209a94367644

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c3561e9f8816754ce3c377ba738ff04ff1a862b4daa2612218bfa835aa9c9303
MD5 aeef38bf8bce1f9b0480bd345cc0be47
BLAKE2b-256 65ea8922a694bab6f73dbf94445413fbff284730ba07bb5c25afb5278011c733

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0943f397cfb84f6ec0520dd4a42a7703579293f17af2e44766c1f9f425bdfd37
MD5 4b4b0c1891ec986ad6500de7a41b52ed
BLAKE2b-256 75f2e53e14febe8716893708542ff91601b71addaf2b0f6e297d3f870a32d556

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 47f8168cb3bc68c9ccd64930b8e3ee6287fc0404706b64a9444e8820959689a9
MD5 5de9adffb4a80304f64ae583e53393a0
BLAKE2b-256 e82ef1eb0cc847f0e486df78655175aec490b70d261380329d0a29feafe394e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp311-cp311-win32.whl.

File metadata

  • Download URL: ulid_transform-2.2.8-cp311-cp311-win32.whl
  • Upload date:
  • Size: 25.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for ulid_transform-2.2.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 848b64b2bc788a65d9fe0245c170c193533b94bcce996bd59f21157d4f0058fa
MD5 9d9a2c5f3db345e277306b80d08581c1
BLAKE2b-256 9817eaef2f3ea8f738951cd7b27b39ff86fae8eaba2223c79c6da9e04a287c61

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp311-cp311-win32.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 210bdf9989249b42085635d40ac97f3f86e3267415aa09df56f9fa60566be4ee
MD5 cf447221a23d2ec48d8974259a339997
BLAKE2b-256 17df38b1d77811f383fcff4c383b8231c0bff4c333b69bcd3cd6523b76c5ac32

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ab59ad6484180866e869daf3ec6046f74e00c673fce7a1ca70eac58a2a019b83
MD5 60b3847d7b47b64a047c4ddc1d1bff21
BLAKE2b-256 228f25e4a2db38bc412dc628921473076930becbfae205f367b81cd2e38450dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec3d75d13499ba03f0a4d4574497f0fec4e7455a741a4c0e9b3babc08f778e14
MD5 9e929a7151f0f0913be22cd37ce6828c
BLAKE2b-256 e852863dd72049fd9b057dc2bedc55f704be10c257bf4ca5339296809c1062e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7fa0019c74b1200a6e046e5fd0e99a522d23754564dbd3e5d92333ed3c56f087
MD5 07906e99c33d7cafc049571775863f39
BLAKE2b-256 16de7468775756dc8f71ae7c7321ea14cc0c42825763cf2786473371cf4bcc9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1ea953ac0c5249be1dabb26dc232f2593e08b6f7a39517327aecc1888e08fe07
MD5 6792eb47a8e973b19a7550b37373acdd
BLAKE2b-256 c986b1876d56687d0c65235e3283e8a69a87af94ffe9404ebf7d2265b34f526b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e41d5bd5750e018c0789ab1513b4e545666c6f3ff7bc1a0954f6a1bd07d55934
MD5 35c9c97790a7e2753fe16dc4d76391d1
BLAKE2b-256 26d588366f526dd8a7ffa1299644e161724994978cef7aa9b941d97313e61cfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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_transform-2.2.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca0f8b535e636453488f1e3b0e2ca67fd0500e3427e72af48169e20efbf11315
MD5 2eaf3a880123414db18d4c3426b3ff44
BLAKE2b-256 910a7a4bab038fd50c3c51ebdd80f789a6f30a5b8b2452074e2ed45b9d5adc5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.8-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on Bluetooth-Devices/ulid-transform

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