Skip to main content

High-performance Aerospike Python client with sync and async APIs, built with PyO3 and Rust

Project description

aerospike-py

PyPI Downloads CI Python Rust PyO3 License

High-performance Aerospike Python Client built with PyO3 + Rust, powered by the Aerospike Rust Client v2.

Features

  • Sync and Async (AsyncClient) API
  • CRUD, Batch, Query, UDF, Admin, Index, Truncate
  • CDT List/Map Operations, Expression Filters
  • Full type stubs (.pyi) for IDE autocompletion

Documentation — API reference, usage guides, integration examples

Quickstart

pip install aerospike-py

Sync Client

import aerospike_py as aerospike

with aerospike.client({
    "hosts": [("127.0.0.1", 3000)],
    "cluster_name": "docker",
}).connect() as client:

    key = ("test", "demo", "user1")
    client.put(key, {"name": "Alice", "age": 30})

    record = client.get(key)
    print(record.bins)      # {'name': 'Alice', 'age': 30}
    print(record.meta.gen)  # 1

    client.increment(key, "age", 1)
    client.remove(key)

Async Client

import asyncio
from aerospike_py import AsyncClient

async def main():
    async with AsyncClient({
        "hosts": [("127.0.0.1", 3000)],
        "cluster_name": "docker",
    }) as client:
        await client.connect()

        key = ("test", "demo", "user1")
        await client.put(key, {"name": "Bob", "age": 25})
        record = await client.get(key)
        print(record.bins)  # {'name': 'Bob', 'age': 25}

        # Concurrent operations
        tasks = [client.put(("test", "demo", f"item_{i}"), {"idx": i}) for i in range(10)]
        await asyncio.gather(*tasks)

asyncio.run(main())

Performance

Benchmark: 5,000 ops x 100 rounds, Aerospike CE (Docker), Apple M4 Pro

Operation aerospike-py sync official C client aerospike-py async Async vs C
put (ms) 0.140 0.139 0.058 2.4x faster
get (ms) 0.141 0.141 0.063 2.2x faster

Sync is on par with the official C client. Async is 2.2-2.4x faster via native Tokio async/await.

Claude Code Skills & Agents

This project has Claude Code automation configured.

Ecosystem Plugin Installation

Install aerospike-ce-ecosystem-plugins to access the full ecosystem skill set, including the aerospike-py API reference and deployment guides.

From GitHub (recommended)

Add the repository as a marketplace, then install:

# Step 1: Add as marketplace
claude plugin marketplace add aerospike-ce-ecosystem/aerospike-ce-ecosystem-plugins

# Step 2: Install the plugin
claude plugin install aerospike-ce-ecosystem

Project-scoped install

To install only for the current project:

claude plugin marketplace add aerospike-ce-ecosystem/aerospike-ce-ecosystem-plugins
claude plugin install aerospike-ce-ecosystem -s project

Verify installation

claude plugin list
# Should show: aerospike-ce-ecosystem@aerospike-ce-ecosystem ✔ enabled

Contributing

See CONTRIBUTING.md for development setup, running tests, and making changes.

License

Apache License 2.0 — see LICENSE for details.

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

aerospike_py-0.5.10.tar.gz (141.8 kB view details)

Uploaded Source

Built Distributions

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

aerospike_py-0.5.10-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

aerospike_py-0.5.10-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

aerospike_py-0.5.10-cp314-cp314t-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

aerospike_py-0.5.10-cp314-cp314t-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aerospike_py-0.5.10-cp314-cp314t-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

aerospike_py-0.5.10-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

aerospike_py-0.5.10-cp314-cp314-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

aerospike_py-0.5.10-cp314-cp314-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

aerospike_py-0.5.10-cp313-cp313t-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

aerospike_py-0.5.10-cp313-cp313-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

aerospike_py-0.5.10-cp313-cp313-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

aerospike_py-0.5.10-cp313-cp313-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aerospike_py-0.5.10-cp313-cp313-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

aerospike_py-0.5.10-cp312-cp312-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

aerospike_py-0.5.10-cp312-cp312-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

aerospike_py-0.5.10-cp312-cp312-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aerospike_py-0.5.10-cp312-cp312-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

aerospike_py-0.5.10-cp311-cp311-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

aerospike_py-0.5.10-cp311-cp311-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

aerospike_py-0.5.10-cp311-cp311-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aerospike_py-0.5.10-cp311-cp311-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

aerospike_py-0.5.10-cp310-cp310-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

aerospike_py-0.5.10-cp310-cp310-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

aerospike_py-0.5.10-cp310-cp310-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.5.10-cp310-cp310-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file aerospike_py-0.5.10.tar.gz.

File metadata

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

File hashes

Hashes for aerospike_py-0.5.10.tar.gz
Algorithm Hash digest
SHA256 06d8d6827f66ddf9c08ad7036d2decc2cee89b1c560cb0e3739d4fe173a7098c
MD5 61e9a0757b72e153ce3fd73491a81014
BLAKE2b-256 a8cbe863e2d713e71c05f162b42644579faf66d6c0dbbcd110009489932007b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10.tar.gz:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 38a0cc3623ef9d33d64b5e3e9592444a7269a790207b7c3a82b22ff5e17deecf
MD5 3e370f0f5ca7591a9c3b5d677431e90a
BLAKE2b-256 c1f204e22f824d61449208031319722d39d207e896225037e7a235031068ecf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 469f0c97f24c6a058d8fbe54c2ecb28543be1b666308c55e5299c7ab5b8f4cda
MD5 71d946de436cd2baa65fafe76d3fd736
BLAKE2b-256 bcf394b1dc1fddfeb405ed119f1bec29227a86aa7fbce05837fbc2a1fce1328e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 741c133e027c9a561b2599d33f7fca108a7a197a5b27169112270ad86182d6bb
MD5 65fd318957919e0298c1c8cac483d68f
BLAKE2b-256 1363d7edf80d86173d36a3268dc5dbf859df29b75571f57474cf2c6628857129

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aefa8dc371ad5d9ecf450223a0e9616e236f05f45c8523a3e779b97c1db0b236
MD5 e37e4abe8fdc610ffbee3c9ca73a001f
BLAKE2b-256 8c7640f3691208a96db33d3f2e6fce856b0c11a9daa07a1905ce3d0ed730a848

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f11f412acded5aee04c75ec9d9064b0c400c587caf529e6d18f7aad56caabe2
MD5 e7af46a68b6c142ff5c3dd4693c56f2f
BLAKE2b-256 16408fa184d7a49a27212873133c2ab1a2b3d8cea67c5e6a8f9a68e7f1f9961b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp314-cp314t-macosx_10_12_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b292841e8ea9773e7170c861d2f5f564d4b2855dccda8704488fb8f4e56b758b
MD5 f2bd28377d1c28651fe248df1f298946
BLAKE2b-256 072fb46b7161ab28b20e27a519a93dd28fd33aad5a595e1524dd2662de2aeeea

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp314-cp314-win_amd64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7afa43bbc7742b435890885db9d2d74937e83b1ab7b209f0d92c58ffc44c8a18
MD5 7bdfc2f7903b8186650522f2c65a9c5a
BLAKE2b-256 81fb8f97cf97fc263769e6538657f514c51175634c91db17f5710de0f38b7444

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe088a322c28c387bfd2d97b9d31bb128799ed22da522825638b4926918f63db
MD5 b9b0dcf59ba8f0e3d67634f37fefc8ab
BLAKE2b-256 cd201bb5e121540bef9b3b9a5de41cf9ce751eec82991f7b246bbd416ac2a91a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c69897b4334be1e57621a91be9f57b070d458d48d4cb510e0f0afccca19d01f5
MD5 d807c9ab2a6b5c94029562d113478428
BLAKE2b-256 2940b46f2ff567fe3d2b06e2408e176add8708ad31014426a1cb43faff567893

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp313-cp313t-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 85bab74a14a99f1a2df97379ebdeede91ce3bf2c51b4b599bdc8268f349d0528
MD5 807c015e17e89bc76a24a95331155557
BLAKE2b-256 7536db3f845b7e0146bdff1f80a25c7f2fbb3cbe9b11362ba4ccaa83da764d41

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8bed63849fa322834ced42a32ed698b7c2e2738a767a3c6a455ee04a25c1d2ab
MD5 a589907862fbe8ca10277bd0f3b5705f
BLAKE2b-256 f942195627564e91d4f78969f144cf859c9244ac526bc86567c7d99c34720643

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b11c81349ad408cfe68feca5558e4e41038795b9665fd5f96d028980f3b05a0
MD5 b254deaa4bd368b92c9094cc0a28811a
BLAKE2b-256 82fbda896b48e371ec8cf90fcfa9e8c3c7023b6b620cdb23eeb0e6258b375f8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e3e8d428c45b1feafe55bfacdee8b586ad756e574a821738741350166f57d49
MD5 d1d92644dfcd0703328fe7df18f0db57
BLAKE2b-256 713252e6c5377f0b9bd89187341aa2f70a2e8af49bcc84faf226ccf9c3e166b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aefd90b788fa5e6f4c5176c0a153f6cc687ba9a74654daeeefb46f2c94958d50
MD5 f62373bc3356bce4438c1d2f74d02a86
BLAKE2b-256 8c7a1434ae958877c5b722a9edefb75b434aa968e188c367f9add8d76089a4e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d6d52729c65363c4e13d8ddf284adb79298f46748ec45a08a5a532dd71cf7011
MD5 7a298b3c2f6a6c260fc8173a28ced504
BLAKE2b-256 30b9578d02271cc49c984ab8e1106e7513e767294c7db24cc753884d5094dd09

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41cc6783666291a558fc34df5c6d8ed71233f6201a9067047c58f91d30e5eb8e
MD5 25a09aaca09d9dd0ba393c3648ff5561
BLAKE2b-256 8b02bf67779a52921be4943e894402675961221776af388db27704362137686a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8fc2995f83538dcd71d2c7e325bc6200ee5dd1245803a5cf8583c62ccdfb95ca
MD5 e42b8cc4c8d6306f9db7d4db67534289
BLAKE2b-256 202f45e2e42ce520e30bfc9afab4506fd527373c2119f97689678c9f6cbdb766

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d36123ac47bb693595e75fd3471141171b49c30a57abc2047c870572c9cba8de
MD5 63dffd997eafb8723a1539d437d8807d
BLAKE2b-256 e4551cbc44c1f1a435c077e8386f0c77281b8aa048c867d52034a7fe7e1d08cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1859915c3ec255f6d4306b37880f5e01ff5912abf044edfda70e8c6c5ff91b7d
MD5 de1971c62988f7c91f2c3cfbeb1157c4
BLAKE2b-256 f817d5b0015cecd5439ee964fd9710179151867b103caf21bd5d90e9e735a5c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db5f8047060cbc05ceb55ac772c8c95070a6f74495d41f105e950b27ea97b9e8
MD5 1251b3a0d4183cd9c3709db52c824218
BLAKE2b-256 f379f1927a7a4b93dce8bef732ac0e4bdb9a1d4d5ebf1e6dd0e848292f289e1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0527f5f268d44c39c567e278464e29408f680039a995e70580ea208caa625f54
MD5 bf6bf425f4f6aedf26c78de91da9bdf3
BLAKE2b-256 0f8db166a26dd386bdba09335dec6977f2e05f5a24af7c3d6b929d914205e23c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c91c2c20a6da171fd8c782948ba44c86d8a2febe67e58d015f903edcfc1a6f3c
MD5 cea964c82dd84cded964f8e98d5489b8
BLAKE2b-256 d3cc6f8b43e8380bbbce4a97c34c68f71030d7b7bc8990d4b7bdc4d6a757456f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 edec9de44f9b4ef55aa4caeada45ba1368f0f62a709df6183f6ee03f3672ce8b
MD5 e45d5bcd4a1d5d7649072c25f725117f
BLAKE2b-256 3d9493d3a3c7b08d5729a2275609583c58fb288029ae235a12a45cb8ddc759f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d78f8177018d65d5d7a2db17f1b0914ffbb412b3292fee502f4d444c898c87d
MD5 161596c8136aa16ad17bf09273f9755a
BLAKE2b-256 bc36c1ea2daf7a6a0d7a1c2b00a9cee9654b2b8aee6c21db98b4d5f603c3331c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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

File details

Details for the file aerospike_py-0.5.10-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.5.10-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ff675a4c460f116752856e23106239c5c52fe1e2b7447d35bb5d3ee4763a3a50
MD5 13217adfa7b91c4bbd74cafce2750f12
BLAKE2b-256 f61f8db9e2ea680855253e12ec67825f19c394ad46ca39acc70dc63d7c04b8b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.5.10-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

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