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 Python bytes object. By default it seeds a 128-byte read buffer so typical values write in one copy; pass initial_value_capacity=0 to force a size probe. Contended and large native operations run outside the GIL; once the cache observes concurrent callers, small gets also release the GIL. A per-cache freelist reuses the prior bytes object when callers do not retain it.

Prefer Cache.get_into() for read-heavy concurrent workloads: it writes into a caller-owned bytearray and avoids allocating bytes on the read path. Published multi-thread charts use --api get_into.

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.2-cp314-cp314-win_amd64.whl (166.6 kB view details)

Uploaded CPython 3.14Windows x86-64

caeneus_native-0.1.2-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.2-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

caeneus_native-0.1.2-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.2-cp314-cp314-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

caeneus_native-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (255.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

caeneus_native-0.1.2-cp313-cp313-win_amd64.whl (162.4 kB view details)

Uploaded CPython 3.13Windows x86-64

caeneus_native-0.1.2-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.2-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

caeneus_native-0.1.2-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.2-cp313-cp313-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

caeneus_native-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (255.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

caeneus_native-0.1.2-cp312-cp312-win_amd64.whl (162.4 kB view details)

Uploaded CPython 3.12Windows x86-64

caeneus_native-0.1.2-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.2-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

caeneus_native-0.1.2-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.2-cp312-cp312-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

caeneus_native-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (255.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

caeneus_native-0.1.2-cp311-cp311-win_amd64.whl (162.3 kB view details)

Uploaded CPython 3.11Windows x86-64

caeneus_native-0.1.2-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.2-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

caeneus_native-0.1.2-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.2-cp311-cp311-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

caeneus_native-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (255.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

caeneus_native-0.1.2-cp310-cp310-win_amd64.whl (162.3 kB view details)

Uploaded CPython 3.10Windows x86-64

caeneus_native-0.1.2-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.2-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

caeneus_native-0.1.2-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.2-cp310-cp310-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

caeneus_native-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (255.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

caeneus_native-0.1.2-cp39-cp39-win_amd64.whl (162.3 kB view details)

Uploaded CPython 3.9Windows x86-64

caeneus_native-0.1.2-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.2-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

caeneus_native-0.1.2-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.2-cp39-cp39-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

caeneus_native-0.1.2-cp39-cp39-macosx_11_0_arm64.whl (255.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c86c257b477d447f2cd89a39ac764aee08cf58c780155646ca7ff715641a2699
MD5 0e063d8139f0367da35dead7e40dd31d
BLAKE2b-256 6452cd8073ed7e26d9107a247864830fea4d26ea988f78187dff1955887e898e

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2eedc76d9ecb306fd92da1c19faeb628a5464de91583585db17d993df4e0dfdd
MD5 5af980cdb78f9e3a190e7e74fef4f972
BLAKE2b-256 fe6562a5b9877812926052afebae24c6cb4a9de9d9c6ea193b148f526533d54e

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e26965d9f1f1553815ea1e74c1ae75490992f7153aae82b767625dc4f3c2ce5
MD5 bcb8a888982c2488fbfdfe1ad1622b40
BLAKE2b-256 fbb47128d9a53a08f1df4abb62b73acb33999f06d5bc7e431e9bec56bbc98f23

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7fd3aa7e4cb07c11d5f16f313acfb5ea5c017301b285976a5d9c0dabc834e979
MD5 0f5be057675bb96039354bde4878fd5d
BLAKE2b-256 abf50c17b63bbde4c0290362d515aeb4144de0c3f07c1828ef49e454621e5ca2

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bfb021f06feb65a52ebefdf8f6a37884fa913e1d0e3336659736f23d82344a8b
MD5 1874a8a3669d5a105fc4c8ab7921046e
BLAKE2b-256 28c3b847700f8c8ad5db47fc0a42e98faeaac60d6bd3a3bb76ef5bf131f223f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b03e9bad28201b4d4be02c52a7c58da6153fd601da993322252804de4d315dd
MD5 3f6cf71d8e5511991eef8fe11571d2c7
BLAKE2b-256 72d85f1d49dd84760e4ed19d7e82620c0ecfcd9054e5998f5cc93f7f6273a684

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bc7985d9a75ca75d2f95d5321ef3295394d66d18f2cb767d72b10c6e7f44e62c
MD5 bfddc69916806410edddcb50c4b0aa9a
BLAKE2b-256 1a84fc249b828dbe2a766c38a220f727e784c1e8a27df1a836c1c32eead6cd16

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1e83217d1716b03705277b996ffda613870e203b018f0a2b132f81f3236598f
MD5 d1d7a05c0a567446da189ec2119b91b6
BLAKE2b-256 c9d14d3533291a6600e08c8e0b0d948a1fe6e16f06a4dbd0edb87339c8c98a76

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 323946d99836c6a17b534acf3b95999713231cf719d118ffcfa3479d142b961f
MD5 bfd20aa4a052d72b23205c6ea1922b42
BLAKE2b-256 dcf0513c2d2e3d85f47466d1e6aeabc91dfb6e2c1d151f78a877a410f28b1be3

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8d93ce0ce3e70ddbbea083e89596984bdbaad28393b0d9180bdb64604b8899e
MD5 8333057fb48c5d1e6a7e6561f5d3a5ed
BLAKE2b-256 1f1cccc9e2304183d55173ccbfd9344fd9c726d63eeb9f816748f36bd0b77187

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a8bf1a3e8a31c85a4bf7458f835dcde9b9829e43c380563bc97ed0d062150603
MD5 29772297a9fea3e8f8fd86bd1d28320e
BLAKE2b-256 d01a0b56975e960933a2fbbd2c310af2bf34b545b5a9a582e759db28923dd66d

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0548f031b46adc69ffbf418b40a33e80bbc05f2f55f8139eb8a9d1976874311f
MD5 60f72e304d250f07372b24ef7d5ce89b
BLAKE2b-256 c33d0adf7fca8c9475aa519c1b7214cfe17bbf1518acab99095a66833f2c016e

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e416a2c4266c553eb4d8dd2a404f427e6326ca5ef9803922cd659f9a3469394a
MD5 e97a28469e1ceb0272d1a82a67d0caf9
BLAKE2b-256 8c1c9f8fedd80ce14aa86613cc0f0b2d7ce20288a1b7e99b56e7d9b11790153b

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b28bcbb65daa5b9b743aef7792430661d473bb63194efbb219fb4240f1fb401d
MD5 1d26eba59ab70288372cceaed6e5f0d5
BLAKE2b-256 f84b5c95a547e8196b48c5a4a7fe9f1e24ee772a8490ba773e6291f0dc60c22a

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c380dee4944946eda4055447751832c593b9c60c3633142f4fb7ca60c56d3388
MD5 4ae920490c3270bdf35f3dd493a0fd7a
BLAKE2b-256 14df43d21332033bc293b8de06f24337b1c04512f02e9961bf47b42d51f786e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 277a429eef49b12321acb246dcf6c687ed3f3da753a896064c2150645a6c6b7b
MD5 5106fbce1e18619e3d85e006e80a5913
BLAKE2b-256 ce6ddcba27d96dbd8e29c7e6c49c13918012a9fe65faf568938eaa85b1c4f8a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d0b8e9fe81de68f52717573f079601b3ce46df2b96bc20935f16531edeb7f535
MD5 6e60d9e6aa7c2eb7299dd38436330119
BLAKE2b-256 dcc938c7c64b00b9a81a49ef49343a428387dcd378d26763470a1be4ae7f18ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0e40cadb5d0405d345f9f157e0d7b800bf73cac5a071d31160fe90502ccb760
MD5 f405839146d7432e242786f9d71cf80b
BLAKE2b-256 00d37a33a19b30a4edd92527a0216cf6960edd0e41669fe167df889195f7aa22

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 927a73f88ae13a237c3adf46efb7153bddf8136a4b8693234c1368a197942529
MD5 377ea51a43ae1c48acac336fe24bd9b4
BLAKE2b-256 a56c338940ccfeaa5fa05a22bd1dc806a9a75eddaadc6128165bedd8414426e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b9071d53ef77c53b20e3020de591b6c3a8fc2205a7e999b74b099446f14ef11
MD5 ab2ff9e5c2f94b9d147928ae94ca62a7
BLAKE2b-256 01dbc7b7098c73c01be7f8b8baf236e5c21df50df792b185458e24943fff0a27

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 197cc70a991fe662089f245ff6f3934fc542d449d53945a0ee391283be9520f2
MD5 ac96dd6717d742a70730ad66e8d9880f
BLAKE2b-256 bdd8bdc27ece182e224a0806ddbb67067f199b0c8c365ad5ca5f762d18f06953

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 84dc7ed89f84513fc452084faed73cad84463ab2fbf62cb8e67e5be6040cef19
MD5 734585efcaa892bb7b01cbd6d854e766
BLAKE2b-256 e9baebdd87b0c17e990744db2d7f4a44830a94cb7823930bdf9e6bd0ef1dd8a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e67d55512eed3eb78d072386e140f14fad4c9641162c5310f826a36f2deaa82
MD5 bb9dd24dda1683930dddf99569219d4d
BLAKE2b-256 b0153c7227dd66686d442292f9e2875c88c4bb9b85295f0131cb483fd095bd7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62f3152f40773364fc4bc73d0498b691fee2a355d36557c2d73d0642694bf8dc
MD5 1cc13a5780e804f4bc9ec23bf3e941c3
BLAKE2b-256 59d2f26b9a46d8db416c71d0d68c8cf4cc9939404702a14a8adcfc08feed69be

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 69a150a17933c72febd9c32df5e5c99b4990d6de62ebab64bebe5ade2ce70536
MD5 2588ca779102451e7b436dd7e3abbc7e
BLAKE2b-256 f6c497a1c23823831aa65710db11bb8206ad64ea142e817be2a59fdd3f824f9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59987e74c21785064e0486298788d984fbfd4f72fc3ef90b50e83b669e75233e
MD5 376b5cee7c8e52a476bcbe8545fc56de
BLAKE2b-256 5b382b45ec4714d0a13df35ff6a5c9cd3790aac445dde78ba319092ef3b9a763

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a05580007db05e4de4c38c02c2deaf374aeae25673d8b1a05702cd6a52a2504
MD5 ad5b2a2343922efa9bbe2d17f68d98f6
BLAKE2b-256 a91aef3305c7fb9670c4d4d8779d5096752188038856c9c9ef56907810d6fe57

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b733f967bf0f1b04bc3572001de57ee0876814626a959f54f4de82488bd1c6b2
MD5 6b3be0b347f9ebc7496a3aa44d11291d
BLAKE2b-256 f38beaa89851bb8f9f98939ee5923796b36f36ea6ef40eb48a372bb8a275bdd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 630bfbd82a407daa5082cf6545f88b50e1f5a48cc35fd13624f541ea7735a2fa
MD5 9a0f4e8202ba3f5f085320a75b45250d
BLAKE2b-256 c40be6961b673ba9e00c423de1411a6a3c11262c5dcb6bf43220bca4113a3346

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36ac0d17b8dbb5f7e33d3a9d46994f4a695b5780cd54cefa5b5f19128b186db8
MD5 f7ddbdca2b123de1007d98a76eed8f11
BLAKE2b-256 76066cd96ecd6ab1b98e5e92a640ea1270b5087b5ff966d82ae8faabc17c3f6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0a8739137f00a735fb414d3090eff5e85025fd919e8d759f7e234c61cd9adeef
MD5 0c2eddd59d6e92ca23b9f60cbaac4aa0
BLAKE2b-256 f67cb392199510c21cb9770447d7beed92e9d1b8141dbd94eb95246143971719

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6503553b236cbd52531fd660b326e66cecb392cdae25183d4bcc715e1625173c
MD5 2b8b976cb036bea28eeacf89ade030a7
BLAKE2b-256 ae1c94b0d068cbea306b44db9e88e588e5c7819c9aa60b13e11be190c59241eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f038e14142ab0a210fd3a3ac6ac37bd03d5759d32f63a4f0bb50629b813cef7
MD5 544fc83ff67856b6cd3b87f628ef5f93
BLAKE2b-256 d13eaf05949d84c639e26328c54a12bccf57adfb014a3b44fc9a49f22c9dface

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d0588e4efd2aa1fd7213917de8f2c9504272482c335c6fb7b2e61244073faff
MD5 6d5f8bfb20ef55a4c0f41376049152af
BLAKE2b-256 f7fbd27bb519b747692846bb1d672e82b733b855aa2659b6d01a9d074a298a11

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 289071c3c11b74c3d4211c0b6ffc2f2616e8a5294b3c0b033e7a353dd3ef3867
MD5 3950ba5e21c491a623ed37cb21506e58
BLAKE2b-256 8f19effe1b63d1ce66db3c819032ae892af59e5a0d8b37a5c2c1edadc012ad6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for caeneus_native-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0041d50d93b75f17a7aa2053d4ffed2b343ecea0df68cecac94829bf6b7968a3
MD5 a9e2b4126000236d4e2ebfb6bd2d4681
BLAKE2b-256 15502cd947b46f32866021b7a6388988c78a0bbf436319510ce1957e53a4dfeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for caeneus_native-0.1.2-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