Skip to main content

Compiled CPython extension for the Caeneus cache engine

Project description

Caeneus CPython extension

This binding is a compiled CPython extension that links the C ABI directly.

On supported platforms, install the self-contained wheel from PyPI:

uv add caeneus-native
# or
python -m pip install caeneus-native

The wheel contains the statically linked native library. It does not require a Caeneus checkout, Zig, or a C compiler.

For contributor source builds, build the native archive from the repository root, then use uv to build and test the extension:

zig build -Doptimize=ReleaseFast
uv sync --project ext/python
uv run --project ext/python python ext/python/test_caeneus.py

The static archive is selected from ../../zig-out/lib/libcaeneus.a by default for a checkout build. Release wheel builds set CAENEUS_NATIVE_STAGE to a staged header and archive. Set CAENEUS_ROOT, CAENEUS_INCLUDE_DIR, CAENEUS_LIBRARY_DIR, or CAENEUS_LIBRARY to use another native artifact.

Published wheels currently cover Linux x86_64/aarch64, macOS arm64, and Windows x86_64. Other platforms can use the source-build path with a suitable native archive.

Cache.get() returns a new Python bytes object. Native calls run outside the GIL, and repeated reads reuse the learned value capacity.

Cache.get_into() writes into a caller-owned bytearray and avoids allocating bytes on the read path:

scratch = bytearray(128)
length = cache.get_into("key", scratch)
value = None if length is None else bytes(scratch[:length])

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

caeneus_native-0.1.1-cp314-cp314-win_amd64.whl (163.8 kB view details)

Uploaded CPython 3.14Windows x86-64

caeneus_native-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

caeneus_native-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

caeneus_native-0.1.1-cp314-cp314-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

caeneus_native-0.1.1-cp314-cp314-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

caeneus_native-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (252.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

caeneus_native-0.1.1-cp313-cp313-win_amd64.whl (159.8 kB view details)

Uploaded CPython 3.13Windows x86-64

caeneus_native-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

caeneus_native-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

caeneus_native-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

caeneus_native-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

caeneus_native-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (252.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

caeneus_native-0.1.1-cp312-cp312-win_amd64.whl (159.8 kB view details)

Uploaded CPython 3.12Windows x86-64

caeneus_native-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

caeneus_native-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

caeneus_native-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

caeneus_native-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

caeneus_native-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (252.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

caeneus_native-0.1.1-cp311-cp311-win_amd64.whl (159.7 kB view details)

Uploaded CPython 3.11Windows x86-64

caeneus_native-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

caeneus_native-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

caeneus_native-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

caeneus_native-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

caeneus_native-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (252.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

caeneus_native-0.1.1-cp310-cp310-win_amd64.whl (159.7 kB view details)

Uploaded CPython 3.10Windows x86-64

caeneus_native-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

caeneus_native-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

caeneus_native-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

caeneus_native-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

caeneus_native-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (252.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

caeneus_native-0.1.1-cp39-cp39-win_amd64.whl (159.8 kB view details)

Uploaded CPython 3.9Windows x86-64

caeneus_native-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

caeneus_native-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

caeneus_native-0.1.1-cp39-cp39-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

caeneus_native-0.1.1-cp39-cp39-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

caeneus_native-0.1.1-cp39-cp39-macosx_11_0_arm64.whl (252.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file caeneus_native-0.1.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 46342269cb989188f0109ce96bff6b2784e9ea6b7668ddbf159284fef2ef1476
MD5 2558132e4119206b146816856bd53889
BLAKE2b-256 486560e8449c4d9eb3d48df553c96c379c6b4c83cf0b7c32d5aea033e6b78572

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp314-cp314-win_amd64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1240e934f031509b2640a733528c74df719fb6a3ecd0e960bcaf9269b8026a21
MD5 ec8a72b8764a659a71f9ee18116661ef
BLAKE2b-256 bb9fdfe1ed9ca3e5419d77147cadabb8365e62d586e9188de08f384d49033462

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93a85244a1b493ac909c3b1a4ae2da663db2944d9a32967dead5f56740925814
MD5 0b9940c8807e11ca5f2c3250fae6af31
BLAKE2b-256 3c75fd5763711e49d02ec9dc3caf8ef41de12ac03bd53740f078796312297ba8

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 117c99df4fb105ccab5d7ad90b458e64ec985244bac31e8b0730bc062b2702f6
MD5 1916434e5ad58f362c9fd159af63a556
BLAKE2b-256 78385e7fdbedf70a72d5b474412f62d6b085d83d31475a3129d88629a54d9d0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c87b5d288a3aebe1762329b5f4ccfd90423476f8271b6a15b3893479076e336
MD5 0678c05be4132054e62e723419ca3018
BLAKE2b-256 c2693a25484429df5086f56bab23b4c0027c15a147fd4f460b23ff834bc157d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cee905d35c2d42a20c9e8129bc16ce87068e2c0dbc5558306132da93033e44fd
MD5 43d48125c0bc31795ffa610dfcd48f93
BLAKE2b-256 b46108c789a99e0fc74e87410f227de31caea3900c18a5e93b331939389cc2ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1741e917966f59d59212fb647ef4b1b120caa4ff94fc4d566424a75fe0e66d71
MD5 eb1ff1bc76a4a86f2bae96f07ee428e5
BLAKE2b-256 59a4665e13473fafecaf5637acdfb86a4d66ea64d2c69761754a42a58eddffcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp313-cp313-win_amd64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61266c8c401df5956a06e0c1785aa24dd8caa1eac8fb89112bd43e26e0b5fe38
MD5 033ea023bb7e6e6fc9e0c04b388a266d
BLAKE2b-256 87120d77dc60f0019ea1d3fb28c55f0b4640a7a8cf0c3cf1fdf1a1a4c404bcfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b48eb18015b07aed97f65cda89e01e1df022f44dfb1a7a6176f69519619c031e
MD5 588a629be6f3d5237d03e9bd3cf05d5b
BLAKE2b-256 473396860cef72561df9a064898806a440f30940c8935e0df2ec4d7af6e9867a

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 21856390b5e90d1736e0247095713748400184e166c523276944a07871e500eb
MD5 bbe3e547caee6ac0c2920a94f530d535
BLAKE2b-256 718b35b86b78b33b7404449ffaac01edc4c16163385d47d5d3a8bdbe6bf6463d

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d836a97ae83b91d69be563af7f5119dca044badc06277156de08e9aa4482a9db
MD5 7c40c9c1da72149b2208a40ca1caf63c
BLAKE2b-256 ac09952a3b701be5d3c8dd333906dd2a8f9c6a1b60eb0dea14845f1e603f809b

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d2450b7587f71ccfa143da57bc5ec0cc6163ace75470f5ae68ab8efdfd11863
MD5 0ec0c6666808dfa8115f9c7b53d48d66
BLAKE2b-256 b82ad96acaf258afda71fb140213980bd36840e5e23db3cffef3465233112435

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3b8c0a89c5844cf1a75555d6659ccad2b042dec7b8c6507cdf8ae2e84a20bef0
MD5 30a2b5ebf646a303020b59fe555d98a4
BLAKE2b-256 ca07f7c7fdcf832d5ccad022eb3638850804c588c3d3cd29c63965b4135b9b2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp312-cp312-win_amd64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1662d771927b32678001e9c560ff895c8a275ce1e5ff056d1f26b25a4fec25d8
MD5 243941114f77f86b5f7690d0a72a1fa6
BLAKE2b-256 96529b2739411df72c48ecae6272b6bb7ad7eb5adf61b7300d463ca01437347e

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3293f8a781d0d511785659ab9bbe4cca1774a3d742639f7d295bae0f26145518
MD5 6953c8976d874c4e4187715f228b36f5
BLAKE2b-256 7e67567e4ac98c5d4e65fd1bdb91d2257645b57d012b980653e5229d0aa1d5d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1e18a163468260ef523078cee379ea567a38d78d1147a7c59355f01fcbf46a00
MD5 64527d32c5bd8810ea07ecd74d3172be
BLAKE2b-256 8a73a8bdde15e323eb0ca193a3db77241e6cb53287f91170a0fdd89c7f82db22

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d726a65c357a176aa180a0b8f949bbea56a5b71e683454273709a0eeb9c32f50
MD5 07b54b7c984e1c7b6f2826c7da37e89c
BLAKE2b-256 bf003a1c8ac7d80c5390f91798963fbc2c72b98547411a1278f74a79b979371c

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df31c2176e8b6a70784621316ceae270d41079bafbde05c523b65e953259076b
MD5 239732e161ffcb5c64dbf67b6c9631fe
BLAKE2b-256 90be3fb98f4a3ad0f9dd7c640d8c9a432ac20c9e98c8edd93821e710f7d31bbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fe448d16f2d3298fc38d4477f8419fa429b216ba3bd1afb062b63180299f4114
MD5 ca8018484644603e5954e5985a36d049
BLAKE2b-256 2707f3414d35d1b31dde6f38b209c4b2e313058d96b29132fb64e67de30b7179

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp311-cp311-win_amd64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c41397e0ecced79644f8ba353aeebd40ecff72b8a298d3be21fdc6f432c04af5
MD5 827cab90a485898f3030687e4a094bf8
BLAKE2b-256 413132c86ab5a82d74f38cf3dad38831afccf82f4c76701458b68d78e1174013

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2727c728b5b0e72f346a39fcba6641b34f3b27f5071c691ce487eeac9c8f6107
MD5 06f07d5b0238b308c8b3082029d5e4c2
BLAKE2b-256 87c3fa34d9e4495d7fdca300fc0a0609a2a96ff6e1a2610796342b2bebf09bd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 555428b34fc65d3f40e7d1396f9fb4c5d3b644b1395d1eae6b7c9533c102fbfa
MD5 72f233db953430f4110d4b5e6b8e032a
BLAKE2b-256 5df6d49575d60716daba51c745e1f53eaa7d9a3010e73e588ebcbbc111462716

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9cb8b604a12ac15f2dc875f68a10aef9cd6ec07b229454cf2b7b83f64129c812
MD5 a659ac2c4097fb7a5f31ae48af447282
BLAKE2b-256 3700592dccbfc024dfdca6c5096134575fc7b6b9693e6d91aced251e5c2fe749

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f8cb07ee13910f56182050f33f96a07bce828ac7352466ff88c6151c459ce57
MD5 e93c0bfc876efb46d9be11538d1aefb5
BLAKE2b-256 c639fde840d7182857f9f098df52f72badd1716fb4b9ff81733bfaf7a1c5f197

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1d9d897a358c0933bfdce194e6d65aaccc6c0304d37f01e8eabc12f768d0b7c2
MD5 5322bf801c2a6b581b75a74cabff0937
BLAKE2b-256 1f670a4cac810a0ccb2219d14a1c56df73573a12245a850a6112dabb9801207b

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp310-cp310-win_amd64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 151ee28cda46a615d684d3a28bc1c7d9eef3ce907436580c511b484c849d67e4
MD5 3708405517d2610fbe7deb6aca0a40a7
BLAKE2b-256 19e09ca669aa83996447ca7d3f7b78c983e22261c7b0535ceb11cf3a948d52e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd5b58b56cd24d91e62887e3ab52eff22dc7447b7977cb55f529b0c5c817a190
MD5 21b8ba10e7bca75a5d3945baa1ee47b8
BLAKE2b-256 deaa5aaae6243f630cd642ee8eb5a514a18df1a488020b283b57b47ddd17bbc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b2ae31b9e8a3f638fecb10dc5d71618db071c855c93a4e225597f59bcc8749c
MD5 f7e9dd5be0bd7b69abff0b7e6873e6a1
BLAKE2b-256 b30a4d71bd5e5b00f946ce5f2bd52809aa3e6239bebfd1639126461a49338e8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 45539c4ace1cbfefbcaf55a553a05642b769e2d83e340c36747a57ba64d04e43
MD5 715740ab7d2a126c1b4174617c40fd8d
BLAKE2b-256 70aa17c93dc320397bbb1bd0158680efdbc16db0c8dd1490d2483496eb870159

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0973de4525624c0a3f8e0a277a373d43abf66968008111b621f5c8a775f183b5
MD5 b2b8a370acc9169761a350b5abe3083f
BLAKE2b-256 bed00da8afb200ae623a4db41542f140c6aa807607816261ce9090409b07295b

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0db1ed1682954a66514ce5def022c2ba43ee61649903863c9f21a8571bce3c3b
MD5 4b713f893734a0de9119933cfcde324c
BLAKE2b-256 7c995c2fd05aaa84c35a0b58fe0e544e49288eab63d0265fca61bef2c28decb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp39-cp39-win_amd64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 645e71e08249c90da86d7b40ef095cf0205d84c170ce8bbac89d675dc828b7c0
MD5 b3433f6b0ea0c437ecdfa8e2a460c946
BLAKE2b-256 d46b64394c167d50376dbf50bb731f8556f4d8dfb75bcd00cf2a027b6415b13b

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f280a6f5a4478ae3a6e5ffdcae6d4bedcab134e021daf8bd2ffc4fbd76c2568f
MD5 57fb2454a22f35774aa635c0e6d13d0d
BLAKE2b-256 5899f5681869bf722dbf8666dc7ad8c28e02c06058bf0022360f4c74267c0783

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c62c19a4bd6297f14175147c23782d142a944f17ef1b244c2d8115db0580eba7
MD5 4cf5d08d0a69e396bc28d7c895bb8318
BLAKE2b-256 89e5c4bc41b230d6828a13250c8470420ccbc4fe0ae37a3dfdeead7234933e92

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0674500a9ade05fbaebff549bb5b00d853b44132c211853d4042446d94c61db4
MD5 c8292d0946761d80e681d1cdbbd29aa1
BLAKE2b-256 48bcec3fca11962e264e10544257c001a3e33367caf4df0487d71db97fe0d2db

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file caeneus_native-0.1.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d9fbccbe65e82ce36ef834a1b6b468b9d36bdd99a3cb093dda275dd855bbe69
MD5 272e254697da87da3055ae2ef2633df2
BLAKE2b-256 a8b8ab47433fb246d4e38ae3585bc382660aa76023334f221f2057d32576b79c

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: native-release.yml on servusdei2018/caeneus

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