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.7.tar.gz (17.6 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.7-cp314-cp314t-win_amd64.whl (25.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

ulid_transform-2.2.7-cp314-cp314t-win32.whl (25.4 kB view details)

Uploaded CPython 3.14tWindows x86

ulid_transform-2.2.7-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.7-cp314-cp314t-musllinux_1_2_armv7l.whl (877.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

ulid_transform-2.2.7-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (26.1 kB view details)

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

ulid_transform-2.2.7-cp314-cp314t-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (27.5 kB view details)

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

ulid_transform-2.2.7-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (27.2 kB view details)

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

ulid_transform-2.2.7-cp314-cp314t-macosx_11_0_arm64.whl (24.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

ulid_transform-2.2.7-cp314-cp314-win_amd64.whl (25.5 kB view details)

Uploaded CPython 3.14Windows x86-64

ulid_transform-2.2.7-cp314-cp314-win32.whl (25.4 kB view details)

Uploaded CPython 3.14Windows x86

ulid_transform-2.2.7-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.7-cp314-cp314-musllinux_1_2_armv7l.whl (877.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

ulid_transform-2.2.7-cp314-cp314-manylinux_2_41_x86_64.whl (16.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

ulid_transform-2.2.7-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (26.1 kB view details)

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

ulid_transform-2.2.7-cp314-cp314-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (27.5 kB view details)

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

ulid_transform-2.2.7-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (27.1 kB view details)

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

ulid_transform-2.2.7-cp314-cp314-macosx_11_0_arm64.whl (24.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ulid_transform-2.2.7-cp313-cp313-win_amd64.whl (25.1 kB view details)

Uploaded CPython 3.13Windows x86-64

ulid_transform-2.2.7-cp313-cp313-win32.whl (25.1 kB view details)

Uploaded CPython 3.13Windows x86

ulid_transform-2.2.7-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.7-cp313-cp313-musllinux_1_2_armv7l.whl (877.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ulid_transform-2.2.7-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (26.1 kB view details)

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

ulid_transform-2.2.7-cp313-cp313-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (27.5 kB view details)

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

ulid_transform-2.2.7-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (27.1 kB view details)

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

ulid_transform-2.2.7-cp313-cp313-macosx_11_0_arm64.whl (24.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ulid_transform-2.2.7-cp312-cp312-win_amd64.whl (25.1 kB view details)

Uploaded CPython 3.12Windows x86-64

ulid_transform-2.2.7-cp312-cp312-win32.whl (25.1 kB view details)

Uploaded CPython 3.12Windows x86

ulid_transform-2.2.7-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.7-cp312-cp312-musllinux_1_2_armv7l.whl (877.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ulid_transform-2.2.7-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (26.1 kB view details)

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

ulid_transform-2.2.7-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (27.5 kB view details)

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

ulid_transform-2.2.7-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (27.1 kB view details)

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

ulid_transform-2.2.7-cp312-cp312-macosx_11_0_arm64.whl (24.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ulid_transform-2.2.7-cp311-cp311-win_amd64.whl (25.1 kB view details)

Uploaded CPython 3.11Windows x86-64

ulid_transform-2.2.7-cp311-cp311-win32.whl (25.0 kB view details)

Uploaded CPython 3.11Windows x86

ulid_transform-2.2.7-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.7-cp311-cp311-musllinux_1_2_armv7l.whl (877.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ulid_transform-2.2.7-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (26.2 kB view details)

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

ulid_transform-2.2.7-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (27.6 kB view details)

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

ulid_transform-2.2.7-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (27.1 kB view details)

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

ulid_transform-2.2.7-cp311-cp311-macosx_11_0_arm64.whl (24.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: ulid_transform-2.2.7.tar.gz
  • Upload date:
  • Size: 17.6 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.7.tar.gz
Algorithm Hash digest
SHA256 40ea96294700ba39d1cb2986b7554eab8de92628c7e9ddd722a39667e8df3b77
MD5 127289ac517345e7b8038f1e6e9c83e2
BLAKE2b-256 42ca9dc60558a3216fd3c6425c55c7405d61f518fffa950e7b3ce67c02e51c47

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7.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.7-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5fbe0d4babb7143f64a2381532ce840b59edf052873eb4bba1e3effab2657ec2
MD5 3bd44043bb75361279f654586fc8e069
BLAKE2b-256 53ecc8fcc0abfaa40e0e8ea6ae4aa9462dff17424a17562365cb7eeaa88cdc57

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2c3de79a2e9cf19ea3197769a2bdf3c5a9e27586d194f0b6bc61f1f5b7d25b93
MD5 635e6ab7ebfb940e69dfee615da79632
BLAKE2b-256 1eef7b48059725306b2df23e8871e12b40f323d43e82e8de433f048e8e5dd1d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9975d298fc041cc545ad52612ca2819b9dc8351cd462204654eb35e91c74091e
MD5 4d0489ac2e5a8feaccaa746588322790
BLAKE2b-256 9e09cd56972b58f0ea90df02c263c35286219dff649c70112bc37e7ddfb62948

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ae19e8e8540ea0970f73880d761f549817ac0c3d937bdc45ff905aa92b69ff64
MD5 d3ce241abd0742df87b37b3b2cee781a
BLAKE2b-256 9fbb9f91ceb1e3912bd784fbaa8fc1eea318fe12236df78c09bb3d382c278595

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a57e3673b4657bdd48e960d95e55af490cb32c64fcb213e26053d57066c40d6e
MD5 8746c7946dd7f26aa8766256492c448a
BLAKE2b-256 aea16cccbfdd36c182b5007e4a32d0ffcf6daf11b6963b546418cb66bb9a282b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8588562351d0eaacde9657e5a42c2a109a7ddfda690f0e8468a61edfe901a6be
MD5 2d80b4c62f2f0786ca9e86bbefa2b897
BLAKE2b-256 d45f3e1d30b2b31e4930afef42ca4cba9a72c02ec61a3fbbb47d4aef17128fb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp314-cp314t-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp314-cp314t-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9c8e08c038e0d7b28e5178b2b543ecd836a8ceb4c9c1d5308d78a6359743bc22
MD5 403155cd94ecb45348eecbcdf84ca230
BLAKE2b-256 dff8fa6ae2c9caa060594f60da759e43b106fd3322ccda3012806a76ce542661

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4324549b8948273a2f1afa5b810a11b284046d85a9bf4fc85024bd3de96a6cff
MD5 a5ba2f42741512eb7904575a1fae7f92
BLAKE2b-256 381084b72c8f99f1b8ffa8a30f2039826398120990414c2ec0ec2f13771877ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b00525d021f9dbd9747c658084f2ce459dd656875c210b428c6e4a7742ef40d
MD5 63e8c26cdd2b2d2461b118ccd476d453
BLAKE2b-256 7b9ddfbb3634399b9bc69592828695c7349e01ef8493f0c96e9590ce12f33554

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 03f4e4e92d9feffb92d6d4613d44277f4113a207577542ffcf44eee0394d5584
MD5 cb117225728ed0008af3ac66246c211c
BLAKE2b-256 7fac6a5ead508646643422363e66c1c94f1fa865cd03f1755c4c34476c364f97

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp314-cp314-win32.whl.

File metadata

  • Download URL: ulid_transform-2.2.7-cp314-cp314-win32.whl
  • Upload date:
  • Size: 25.4 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.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 09e1612404583a7d29799b9c796cd0aacf6f22362598527bb063cbb18513c1e9
MD5 87c5b482c9468b81dcff668a31c79c6e
BLAKE2b-256 36b79306459b7c80e40098b3e65a5b12551b43026e1ed55b8a0c7d1103f626fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54b35406a1436bac3d0e456f6fed096caa17a84823d2137fef5341684a8935e2
MD5 79ad2871d1513dc67a9a9fe80ea3dab8
BLAKE2b-256 ddf562a9597889a3fd7bbf7cf340f7591195c44201168b7737df1592a8455b6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0a006609e624c0bbc207f9be136ae77deaa7441421870bf0bc8b69395e70f3a1
MD5 76b46c70240965941716df6e858f8bbc
BLAKE2b-256 0f6c05ec3411c2c3ba88344c20752a505ad96b62f4315f075853650dcb4dfba4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b39d8478a2ecba52d820974840b0c1c80e6e6788635fe845862a7a07a2ee6bb
MD5 7f2546a3bb30ac185c1cf843248d9f67
BLAKE2b-256 7cf20571f9d2afabd051ffd492cab5cd7b761281f7c86705ed10ce8dbbf1bfb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp314-cp314-manylinux_2_41_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 2b32a0318a4df6095c9bab1f6f5b0bb32fd3837714fd8cda2c9b06c226346628
MD5 e42e18c03a896d1824cfc0caa882bdb2
BLAKE2b-256 012bf67490899d614f0ca3aae28ce8830c9e6c814b4c929d7298028ebbbe7a3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd0981fd65343865df60ccbddc2323175b52e0587e81e612ce00718878f8d224
MD5 7703564cd8d6cc21331748f5c8bc50ab
BLAKE2b-256 3f444596de851e8b14da490f6e8b0d342f408dbdb55d062b7a59c1c0bfa706cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp314-cp314-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp314-cp314-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 253dc6667af5f9b85aa13389cea4fe576d1360752c50f17c7d6d56673c854d7c
MD5 06be2f3e03cc833bae6108f53727c345
BLAKE2b-256 4d32d2cf712a4f1785366fb10187e066d501440efac999f0a2db48b8f0cfdc57

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5d03ebe0c902e089c5b14ed65128e023fc86391d58d639691c75682536eb3efe
MD5 50ab7f9e608feae6b07a0761437e1262
BLAKE2b-256 52ed7c1436aa60038326bcc8d01f6e4fa4a6da9844a136643a57709e56882eb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2324c2694a80f8e129a55bcf4724c3ee33e1cfbf4f9e51e4348908b9aaec76d
MD5 43a17afd67eefd60486402f96bead58d
BLAKE2b-256 e458c74144eb37212babd3547e13747b385049e186026e0374527d4dce0a1160

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b17156d56753f7b79b5604b1a91da772abcb256a58b6c47ae694dd168ad7d6b0
MD5 c32ac6def1e47593c7030f866620d959
BLAKE2b-256 8476734daa3f0db489ac0ac27e50c7bf952b316c4121345272b7a29188060498

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp313-cp313-win32.whl.

File metadata

  • Download URL: ulid_transform-2.2.7-cp313-cp313-win32.whl
  • Upload date:
  • Size: 25.1 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.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3ee6557c5a2fb18c94b525027eb3ab33f8e8387039400cb96e72e17ebf036cec
MD5 b77845d61730f8d03eec352ea8c7683b
BLAKE2b-256 9c12f9598cb73297bb1faf1cf8b590758dbbcda5c160868e95791d7b175d396c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbf2e9e73598be007eb0097b81579f9fa672be65394d74c49fd059b6097d26cf
MD5 08e9dc57199e647b6d7a64102f1000f0
BLAKE2b-256 63f148136047c8e77f8bb4b156d7acb716bf8d9a63125f3bb877e7953946f1df

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8b6cfbbddc67e1be7b6f0478cb92906315cf476f3ee7b4874b5c8cca749a214a
MD5 67d16577c62e808d7ae1387f68d93487
BLAKE2b-256 f9e00e1ff1190870b5e02890e07d9774f39c47c6059a3af3bd1b733e4ed1d9e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a3d2e681bc9e8c39743f017c856109b59b369e3400d27f069e9c252d34c4bb66
MD5 5be74737952ed65d74ab078d8a1bedf5
BLAKE2b-256 bf1705493da8c6c3c0cd1f0f382b12673b12a5903be2eca8558cc4859747271b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2962f9ef02bbb985d0c7f70318885d84963b0f69daac521ced1e1c904a5a2215
MD5 6d91b3af8330412608adb580d386fcb4
BLAKE2b-256 f845ee65562002d3ff31c8f64dc094cf7eb85d07a0f38b12fe39bcd4169a85bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp313-cp313-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp313-cp313-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c4a4a600aac5ddf27104b98453c93d9197fd2009bff300aa5f34007ff2c1f9d9
MD5 c9a7e89a32b86901418debc85af9d6ef
BLAKE2b-256 c17b4c35e91a4f198aa7124c49a02f1969cda1f25cec5956bd205fd2a7dd99c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f5a942e8f56bb30fa248d69d83c8cfe0154cd0cc406a65ee49776b41f42f1de0
MD5 b0396c845275350005fefa1e20514ab4
BLAKE2b-256 a102f3a651bf4bc752db9e19e2f99ee770ca4910e28b8eccc0ccfd09caf115bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d66ab3f8b7651757f62c9e29aba418e2705354cb464c650c0201cbfd7b6cb69b
MD5 7ca8e8f5019a06cd093842caabed8773
BLAKE2b-256 939e6bb084c29b810d262a4a4a8dcee4c1aec9152ffe36a20e3f38cd9668c566

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e7b80971b3b33b394dc826efd2afa7cd9e7f6ee9a2573a1572cb33000f98d27f
MD5 f9534a390e18bf9b6737e8a9c87e3445
BLAKE2b-256 c939290c1324ad511becb5f1964275b5fb4b20452d5fde1b80746e5395be8957

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp312-cp312-win32.whl.

File metadata

  • Download URL: ulid_transform-2.2.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 25.1 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.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 12159d49262529db0a960c5a47d1ae19ab405dab3da505f09b1a50ff5a4ebbfd
MD5 15854628e6ebbd933cdd586fd6669fd3
BLAKE2b-256 f24edc4303419fd65cdb0124ed1663bf294bbd3c6470f152a2dee04c283f0588

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6cec369ff293eb94b2f0f8691993f697157de385696e3c00082ad461bf6102ef
MD5 969c15d607fd2e395b7250b741fcc73f
BLAKE2b-256 5268c18cf598ef615c7bb76b3d8338c3f32e2bc51aab5dca693e171ce3543599

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8d5f914058bdb2dbdcbceccd9116b7d2fb552cce09a0c8c73470e979084c4551
MD5 615ce605906279632ed7999ce18ca3a1
BLAKE2b-256 13f0e80ac3eb4caccf83d051686f1121db7f4ed361819404b14397b729f5add2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b855082c6d60bf49bddb8713b6c133d02ccfe1b4f9b5c315ed361ac87728aa97
MD5 d8a44bc1013dd0896cc921db228ed0f3
BLAKE2b-256 2484e01a36716747be1eda92c427d6bbc0658ef05881e9b6e9e3f501ddb6275c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 151eb32634c275fcb5b03e975354271546b078460ab6428536ff988d8304df5c
MD5 b232180ba9eae9a7007ead803f12b9a2
BLAKE2b-256 acd2b1d81cf4dad79b719a4957551a3666a53a3e41c222e6349bc79919a827a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 323d2f0960300a962d3f802ee59545812fd4a9f2b6f55c76c7b48eae1a90aea6
MD5 e07840e063c4e8015162ef13088d2be0
BLAKE2b-256 845dac62a7bcd71533ace38246be8c5bc7e7164bfba4914cbcdfa1ea822cb447

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d8d4517afb1ee30bdd40cde3fe361becc7d8f208e6bf5a17bf2c62a813865700
MD5 fa29374f69e6417c1d4237e3b3280a53
BLAKE2b-256 e31396cc09dba9625ddc80b4f841ae3eecb8647e3f6a554513f74c39c4ce9efa

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a0f97da2d5aebd8ca7633297b28215a69cbb598f7aee5dd1fd3faa8d7b500a4
MD5 a78e8ace617676c5b3ab6f4032d3af71
BLAKE2b-256 d1b12f67376504ce9cccb8a582b0adb8e5de25e716aa479ebe64cbd2b9962ea4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f2acf3712059e3167852ad247b9e5e2426bd99d4d7a1e0dcba71909a9a885d0e
MD5 5af9c0bb92dba171b515eb6a9f4bfa3f
BLAKE2b-256 1ae48fbcb8d996c793ccd0506e37e44c27f065259f4d5fd8bad0431b23fbeada

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp311-cp311-win32.whl.

File metadata

  • Download URL: ulid_transform-2.2.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 25.0 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.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c9ef84e7661630d45bd6258aa9252d3c1484084b1a1115690ecbc752390d5b7b
MD5 d96e08726b57a5f5f902e2b2d9d6655a
BLAKE2b-256 ea4c0cdd538cdc835ea315be4af4dacb683002e255963c96472ce94d8678e265

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f53f2c6c0b357c291e3f78434fac936aae99da0ad4e9aa43451336ae8a63af20
MD5 20edd1ec26b1d74c436158b03b673fa9
BLAKE2b-256 ee6a44a2549ab29d5a1aa1aee083782d5b17bb85d6b547dde6144e687f1d8bca

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b505ad703ef1ef0121d4ace1e8c6c298e11ee522407776bbe3aab79a10cedbde
MD5 52780a873e733e3611ab2ea1a8f98ca7
BLAKE2b-256 3344db575174b215a284439130beac73e537103a7f949e1b39a92cdc0e0d8b6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44b0f9afe813e7cb06468485bf32c88919449f1e8ed9c9fa750ef17b9bd7e838
MD5 fc6c72e9e58a3eed3f95c4ac0762307a
BLAKE2b-256 27bd1d567a6a1b095b070e7ebf6dc4ec6085f8631a6c66fc992d7fefe9745fef

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6f0e2ec604df7b91d224343b168a6ff0fe86dd75cbd0873fbc5bb48f051741a
MD5 ca3214788c61c4e5cb95770ba6b5553e
BLAKE2b-256 dcdb8b5a332918535e32ea6d11bf9973dc9687097ef5717adc35c4a7e9ae9ec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 72255a36546a183c5a71e7836164f3b2ddd23091ef5e4d2eb443271a24a5e718
MD5 d2740e851eb8c68496074e663541b42a
BLAKE2b-256 1cde4671c7e3213ff982bfa2d439c2bfdc04a18688e8adf13f60305754eda2a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7fbdcfb123683dc7ce87282a6659ae2fa00a1f9ddf1ebef2138fd7c3760fe27f
MD5 87971062e1b8226056746eedf0e39ab8
BLAKE2b-256 626e9a2b7984c1153cf09a452e89b4e65b581e9450872e21097c3f105361784a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ulid_transform-2.2.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c90adf146f1d591a0e84b9ece1558b4eb1e9044270d709928a3be865f04f8d8
MD5 f60434f17c65c29387c472f5ad04f4da
BLAKE2b-256 a88438b2b956e2772173a7a48d90fd7dbf66a2318158689060774ed3970ec8dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ulid_transform-2.2.7-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