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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

ulid_transform-2.2.9-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.9-cp314-cp314t-musllinux_1_2_armv7l.whl (877.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

ulid_transform-2.2.9-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (26.4 kB view details)

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

ulid_transform-2.2.9-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.9-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (27.5 kB view details)

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

ulid_transform-2.2.9-cp314-cp314t-macosx_11_0_arm64.whl (25.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

ulid_transform-2.2.9-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.9-cp314-cp314-musllinux_1_2_armv7l.whl (877.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

ulid_transform-2.2.9-cp314-cp314-manylinux_2_41_x86_64.whl (16.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

ulid_transform-2.2.9-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (26.4 kB view details)

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

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

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

ulid_transform-2.2.9-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (27.5 kB view details)

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

ulid_transform-2.2.9-cp314-cp314-macosx_11_0_arm64.whl (25.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ulid_transform-2.2.9-cp313-cp313-win_amd64.whl (25.5 kB view details)

Uploaded CPython 3.13Windows x86-64

ulid_transform-2.2.9-cp313-cp313-win32.whl (25.4 kB view details)

Uploaded CPython 3.13Windows x86

ulid_transform-2.2.9-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.9-cp313-cp313-musllinux_1_2_armv7l.whl (877.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ulid_transform-2.2.9-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (26.4 kB view details)

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

ulid_transform-2.2.9-cp313-cp313-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (27.8 kB view details)

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

ulid_transform-2.2.9-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (27.5 kB view details)

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

ulid_transform-2.2.9-cp313-cp313-macosx_11_0_arm64.whl (25.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ulid_transform-2.2.9-cp312-cp312-win_amd64.whl (25.5 kB view details)

Uploaded CPython 3.12Windows x86-64

ulid_transform-2.2.9-cp312-cp312-win32.whl (25.4 kB view details)

Uploaded CPython 3.12Windows x86

ulid_transform-2.2.9-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.9-cp312-cp312-musllinux_1_2_armv7l.whl (877.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ulid_transform-2.2.9-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (26.4 kB view details)

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

ulid_transform-2.2.9-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl (27.8 kB view details)

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

ulid_transform-2.2.9-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (27.5 kB view details)

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

ulid_transform-2.2.9-cp312-cp312-macosx_11_0_arm64.whl (25.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ulid_transform-2.2.9-cp311-cp311-win_amd64.whl (25.5 kB view details)

Uploaded CPython 3.11Windows x86-64

ulid_transform-2.2.9-cp311-cp311-win32.whl (25.3 kB view details)

Uploaded CPython 3.11Windows x86

ulid_transform-2.2.9-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.9-cp311-cp311-musllinux_1_2_armv7l.whl (877.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ulid_transform-2.2.9-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (26.5 kB view details)

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

ulid_transform-2.2.9-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.9-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (27.5 kB view details)

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

ulid_transform-2.2.9-cp311-cp311-macosx_11_0_arm64.whl (25.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: ulid_transform-2.2.9.tar.gz
  • Upload date:
  • Size: 17.9 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.9.tar.gz
Algorithm Hash digest
SHA256 6a8b573de0158ab4bd0424f26ed4d1cef42f15afaa718c924a8427fe24a3838f
MD5 47c038892a703f459576c27595fe8e1e
BLAKE2b-256 d46980e64aff3bbfd719ef3519774cf489cd972aac89cf8f85cd52009757be71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fed352965a8682a156000d29e0efff8b85e7c2b8cb74f2e953a1e6d0157648b9
MD5 fba7b8565f2761804896e3e3613989a3
BLAKE2b-256 0bc8cbb9374e8a0e26d18e94ffb3e1f861beab5312b3e0be4fbad1bf60cdb47c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 ccf6b173ae1e90a589935fd99176dc9d71d461c9f413b1a754d542ba2d399860
MD5 b0603912dc7e5c9e912915ca7442a68f
BLAKE2b-256 39f8ab3af64aa6ced7c65b09aa4b1c33d2cd4bf48646c9957a17659cea69e1c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 35084b9ade29b462472485966789e5edc66dcbc376ffaf89759e7ada0c7d1f6c
MD5 bfd32918e9412b9686d1ee3b64d5e358
BLAKE2b-256 a97e4beaa80ac820b3243e376f79fde4a8bca2b477d8b6529ff5afcfd83f5f74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5c19d10c7ad9a24c456aba5cbd74aeeca84a4b33cd35077b4bec61d2cf92e30c
MD5 ceaeac05aaea133c20ae724f92453931
BLAKE2b-256 7f24228a44957e37a3c7541989d47c481c9f51ae045ad07fdacc0deb49d4e120

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8cf746c642569dfe3efd94fe45672954f6257ff910f993bca80ab6dcb5a34f92
MD5 f968e5b7fbf2df5e225b14b9e17d958c
BLAKE2b-256 006b200c79dc081b4c9673923dd9d9bc9dc0e47ccdc90eeae8e85acbb1914751

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 12639c5dda80d6d90437e9427dd87c6bb71bb291dcfe8d6063703394c2e15e3a
MD5 af4fb48850dcb67725051e9e489786b9
BLAKE2b-256 65361f3f2e6c1243cafd75d9c2736b6b73e5530d96b49f955493e8917b2fe716

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp314-cp314t-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c9456b9bd8a572448cbddd9f3c5266d7354c68a3c0dc25209108ea904846fac3
MD5 3ac35383a5d23c8075608ae06eb96ac7
BLAKE2b-256 57172eabe1ba6e1ed341d372c996380a812a5278217582349fc609d61fb57342

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 65711af19211c89c115954aab2965abad5287596d24f5754fcd142e80dd7656c
MD5 7247f893f85427d224bdc2c09010f805
BLAKE2b-256 51c6293ba411f0e32e17086baed7c955e4287e368275f31f59ef7a005d401eac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a873a51c8ec7f3d51c6d3d6ecdf3720d29637d5619e7c7df16dbd451f19ceb82
MD5 3b7ec2bbc09e1b37207ac0d2efafcd7d
BLAKE2b-256 5ac659879019153dbbd34eff5f3c633f329b5d75519c1a95f3271948ea51715f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f586c25a2457b88511e1acceae9aeb90f002aee06a4d37e68280ba0ff6af4b9d
MD5 675bd63d64684fca74f83105bedb262e
BLAKE2b-256 a38eff96df79000ed277a9fc73e8825f27c81fba2446acb7fe33f53a1489ba70

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ulid_transform-2.2.9-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.9-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6daaaadfe2d7e465f0850c05dfcd5a785426571361433e84fc3f5a8ed78321ae
MD5 8ac62eda1b18dcc546c2d1f0ecabf163
BLAKE2b-256 c7d6e48135a3992562630043f57a85ba36109787b91d27da842ae8e7136fd24f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 364651ca7bf17e56b7570855d185e10ae461d5bfe15943936ee6f79fde71bb02
MD5 eba368d49b7d36186de9f1fd8974f13d
BLAKE2b-256 afb12bd4509651123caa37b447e0d4e5bb321067fd79a1bcaefa2dfc7fe41206

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a978e55081259c95a14bd7d48db6540645ca228c2d07da6c176c291cd955e85b
MD5 6cfb3a4e621f4f80646358f337531a46
BLAKE2b-256 bc17c1ab2d3901899962afcbddce47dc796f7eaa6694f96c3f4977ab43883712

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae8473948da794f27ecf800511ff7e9bc340e1e5d07f28f1f640a860240d1d39
MD5 e7a509cb70dc5f6d5c9b4c1a7442df15
BLAKE2b-256 5f43b246e2c3e4936789f9797c5e61ebde1d1c6fecbc9a1d6cdf6c427518006e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 f62d23bf7ed08e086e27dc5f5c89f9aec4d79316174529070073505bc367d8fa
MD5 0330080f7ecc41eaf21d585ca22337dd
BLAKE2b-256 9a3327c3f9ed60426b514b1501c8acd47ab05a305fbb1e294dce6a13c52a88be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6db97794ce8638ee2bd11ace5ddc9e23e450e971b264556c2c42ab43fc3d580
MD5 2bf43b3a2776c730e858ff7c1994e553
BLAKE2b-256 78f5520fc50bfd97a616e5c367cd820eee65ffc3537acc68fdacb09f31fef149

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp314-cp314-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 73fef8bdfae646ec4c54f5cc96dc27510fdb55c1aaed3c20d6661e8b51d01bd9
MD5 9ac651b34712dae8e6030c50af8fd652
BLAKE2b-256 71aa8a2b3b3b6fd638f88117e6852f5b1aaaf5f73de25e2d7a8bb483a9adaa58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fcbef4c1c537da14fa098529167f64f7d351e7aebeeeafd6779ed2ffe10f4649
MD5 8a18b97342ff46500696e45039f68494
BLAKE2b-256 7e2cdb41412391950083c387c8185641db32e6f67862b52391c992cdd1824b5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b64afbdb9143210e7f9f240a91fa8fd54a559c6627e8f4cdb9f40771f8b8a498
MD5 190938bcfe707c577489a7a7e2822863
BLAKE2b-256 bb2e6351361aefb2bfe44036519bb60ef9689511c7351c42e2edb7f86e28cb0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 88ac570180c147a42a99429fc089245bc948063e165d12c8645eb24b041fea89
MD5 f97df37ab95ace4eec3f6cb82fc3bb3d
BLAKE2b-256 15e1575d0d28f0c93db62c4ba610f74f435ee1452bfd80058c792d6d69d26c7a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ulid_transform-2.2.9-cp313-cp313-win32.whl
  • Upload date:
  • Size: 25.4 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.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f1e5825a28231ea7e5a7a1cd2eddc9beb4a5b8471c82c78e4e4947e60cf7aed6
MD5 83d549bd9c57255bc71a59bce310287f
BLAKE2b-256 a9b684db4fc991f1604ba45546d31bc4fa04e88cef1e40e6028eaa3b7fe1420b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 873e619db2bbda1a87eecf932e85e6016c73c185f7f08e1335f6a37bc30c8a98
MD5 15604cb1eb943b9e4c9641176834f26f
BLAKE2b-256 4b4181b05efffa5bdaa348711ba05228873a07098cb2b3be3d35ed92072ebca2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3227a50aa76f018966a43b5182627466baf19cd6d0649d235a7029ec8277c1bd
MD5 ed45b5d23de381a357373844f95c18ec
BLAKE2b-256 810f5bab249a5d3244ce574289a70e380dcec71cf80931aaf1e7fa4e6be60c57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5d490330924dd9d9267d22025077c1d47c8f28383bd315675164a7a918692cd
MD5 bbd2bfeacdae3bb4f650812a6b31ea0d
BLAKE2b-256 31e8037f9a8f500e73118f32f8d60c9bf7f677ce5d28d1d2e1870539bf29344b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 423785ae163602c441e9d1eeeb237005d704cbfb593d596052c5ad2f901301b2
MD5 499469f6a0de8ac0ee30173937b4cfd0
BLAKE2b-256 02253eb0267d181dcb54eb36572d8c725b53ca8677eebc380d4e565b26535179

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp313-cp313-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6a618bce08233ef693d1fcbc7169943a52a7cc729a71e75f6e6bc260e4e8702f
MD5 dac28decc81da00e4fb4a79d059bdcaf
BLAKE2b-256 21a6629cea7f0e1238410d33eb2ad1d633d328cb20b74af2b76adb622b54574d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 46c4cd1a46912fda1c6b885cfb315b798c4ca43d56763a8989f1ea878b76cecc
MD5 8c196de16ebab574e952cd65c1d1b829
BLAKE2b-256 74c7c675d5525269e9b24f11bc51b170f7f6fdd6187fe27f338fa2616b89e91c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 354cf2bf18eee23092bbda870ad12361964f5f4eb0fdab3e77521f4a05940c6d
MD5 71b12d22e532eef7465687b9f46003e1
BLAKE2b-256 0d53b8cc9aee8f9a58779fb40a33ecf250c4c6088496946e6206df1ab143957c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ea5fc3f68cb8c200b3b076f9289d226682caa862a1d777b15ad5e87fc4fd94d7
MD5 c78a0414ba5c9665ec399d0ce496f94a
BLAKE2b-256 7d6a4415a1b3676d90c7130e839ac540b79eb8e658b43ae78d72dc66c2bde9f0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ulid_transform-2.2.9-cp312-cp312-win32.whl
  • Upload date:
  • Size: 25.4 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.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d0afa91c91be1aef67821969cb0b4281523c11ea7a1d70b29f23e4856d84db76
MD5 4082df4f1a0db2ae008c7bc6f6d14bf7
BLAKE2b-256 536859b62bb09afab8f4de5965f59cb27570e7699c029edd7854b0b6f11030fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4ba1481445317b9646459f4e824b2593eb401013fc1e726b19451a6557240fd
MD5 d86dd6f678ca8f99cbbd2ff62c38184c
BLAKE2b-256 f3f2533e4dbc8dab5643b0d8f56393271b2ba4c7e0f8f659f1a1ef23344f21b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7233049801567679eb03061ca22f774440021efbde361153e3cee7a700b6e373
MD5 b963fb9fc30a0713f6a0de360c809c6a
BLAKE2b-256 9183ff0d5e154315ae9fbfe59b3c6f15886b42f8fd02ca5f08dce28f7da45a78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ff04ab5278d07d3a2354979a7b41c9d6062aef3cbf227a8e3dae05065831f9f
MD5 90a53e1fb9a26273f3bc890d3a6c4b11
BLAKE2b-256 5a3f6fbf0f44de4330cbd879d9dc93675a343e6fe8c8b0ccef24b39c6fdfaa5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5203cd64a82293bf39b5f91eefd4b25f5b2b7be72fac81085ab9b78b5aa1bcd5
MD5 05ff13044f03f4715ed2f16e21515360
BLAKE2b-256 61b5908e33fc18e474f23a1ba2a7364b48cab6f6aa038aebbe66d5e16f9d456a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp312-cp312-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5a5096a219156413e64783a7ed95bea41aa1312147e35dae2de2303fd05699a5
MD5 eddaecf08d4263d36b9fd220e70b57dc
BLAKE2b-256 607aa5f737dc9fe0af2207a8829d0d6ce4e2b782a17eeceb4f3287d467e2b1ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1898d70422647bdfea5f0c400748399b5ddefcd20f0fec030b2bae37ce0fd48c
MD5 de560fa415a8e55b5c2dd0af85161c15
BLAKE2b-256 fc5194e5bcf4ec078fafe7b7f85b839f73162d87edb3bbc1f31846c656a02792

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8ad10720a3616e33f0758e6f276fdb48e53500eca3e310823458331b941e304
MD5 a8a04b651151936ae4388d6ab092f1a3
BLAKE2b-256 201c575519cd2a4dcd58741669d233375ba103a2d4787eb37a35a910962d6557

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5da134de8b0a4d72b1c40da3262504afbb3252284885a56d3a1d8d24b522d553
MD5 dc98158cad372f63f3c36f2cf47a8b87
BLAKE2b-256 b8f2a798a1a5b4eaaeeadad6accc0b16da67a68f440694abff6009a88081d6cb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ulid_transform-2.2.9-cp311-cp311-win32.whl
  • Upload date:
  • Size: 25.3 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.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0f4bd804b0a0620b24e500a22d8267cc9eda5d6425744b574b59ac76b2c57121
MD5 f16540c9f6f1361a63bdb39120b56a08
BLAKE2b-256 efa201a3316ea4558eac4362f82c0f8621bb5533d22d096c61d38affdccf9e4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b00e8cab3f4bdcab43c96698e914f7cc71e75b226fcd97806a23009f3d1ce394
MD5 07305bf3c6c9fe545482ff76d637f2c1
BLAKE2b-256 fe48db523fa6a1f1e46be18e5ee86928c5dad505a9d2929e5f227595bd9a6777

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 14d5939c2d2e93ad093eabcb373fcdb123f06c20564eadd8eea103954f88fdd6
MD5 5a29d5e41b7ad39e0ada3ffa322f5897
BLAKE2b-256 3dc132a5968fde95768380f8c6291492822cefef53a35dea25f019dd0c25b22b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d0f65a183e3dc7a262f1fd190c0ca69501e152b5d28ab5c997767e6973e121f6
MD5 bf5493b53a1532245ceb693c1da52ec6
BLAKE2b-256 18fd4862512722f8cf6890cc178394d880c64fe94914530d75ce3d3ce20ca65c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 675bcdaddfb230c57a76f9617fe8aac0c5290e084972c3ae31e0f08172191226
MD5 e5f728c8cf7a6a50bb153410706fa15b
BLAKE2b-256 f025122b96f7e789ff6ec4c3e3f026317cf49cae92e35309804855eaf295c1fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 804ecd424f3b125189a32934f48ab79dbe6fce1264bf24949cd0090834217331
MD5 62499ed2051dc4756b711db995b50271
BLAKE2b-256 c169b345abaea82237abff5e27000531be0e0538377361037190b3c1f43d131f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 296e53eb53b20526ce5b2277a4ff23d8ce2c7a5290fc2911e88fbff96b307406
MD5 a31d969e1521e0fcd5472c28354acdda
BLAKE2b-256 7b501ce852d98b845aa863511f320e6c2657a6d798732110ca2aa466674fe5b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ulid_transform-2.2.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be85feff3888350e509d5da7daeb43ebd8d17e4504a0cddb2d3bc24464f3b542
MD5 d7d4f56e6cd8bf7da93d87e51df49674
BLAKE2b-256 2ba561ac95c5448add25d83de7bb028a191cf36b70e8c2f542302193cc426e56

See more details on using hashes here.

Provenance

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