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 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.6.4.tar.gz (149.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.6.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

aerospike_py-0.6.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

aerospike_py-0.6.4-cp314-cp314t-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

aerospike_py-0.6.4-cp314-cp314t-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aerospike_py-0.6.4-cp314-cp314t-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

aerospike_py-0.6.4-cp314-cp314-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.14Windows x86-64

aerospike_py-0.6.4-cp314-cp314-manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

aerospike_py-0.6.4-cp314-cp314-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

aerospike_py-0.6.4-cp313-cp313t-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

aerospike_py-0.6.4-cp313-cp313-manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

aerospike_py-0.6.4-cp313-cp313-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

aerospike_py-0.6.4-cp313-cp313-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aerospike_py-0.6.4-cp313-cp313-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

aerospike_py-0.6.4-cp312-cp312-manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

aerospike_py-0.6.4-cp312-cp312-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

aerospike_py-0.6.4-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aerospike_py-0.6.4-cp312-cp312-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

aerospike_py-0.6.4-cp311-cp311-manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

aerospike_py-0.6.4-cp311-cp311-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

aerospike_py-0.6.4-cp311-cp311-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aerospike_py-0.6.4-cp311-cp311-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

aerospike_py-0.6.4-cp310-cp310-manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

aerospike_py-0.6.4-cp310-cp310-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

aerospike_py-0.6.4-cp310-cp310-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.6.4-cp310-cp310-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: aerospike_py-0.6.4.tar.gz
  • Upload date:
  • Size: 149.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.6.4.tar.gz
Algorithm Hash digest
SHA256 16c49cee908af59cb234c83f63080628d542c8a033f6f2e93a1e9f48fe7b5b44
MD5 d895b4830e31c273723e758a08bdb997
BLAKE2b-256 27740c6d4dbc7bc63b19c2ba31c538f5a3ea3ce92b5f31af2245633684224d53

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4.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.6.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d6b01b9fb5773e635778ebf54bd7f9e45cb683baa582c2ad4a28f362a545fdc1
MD5 29c8e85bdbf6c4dc22cc0ceee0d7b69f
BLAKE2b-256 bee65989e81a00aee77f33029605d4f362720f8f1263d1776a0f958e91fcaf7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06a9f8418fb2c36a582b9433662647fb0cdafd36f95066f6453b3b989f9e2fca
MD5 f1190dfe5aec5f436201ff9aed6d2231
BLAKE2b-256 9780d31b60ff359c3526a48c511a015fd6e254c3c2a4ef8df67f403399fe3eaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5d54d35bd55a41c090d4abf2b317b5609d565f2c873be26c0ec7a1d939b804d8
MD5 e1e2b95b9f1ed70e701ca844ae26b207
BLAKE2b-256 09d063e51159eb79575825a32b1a8d4760ea41ad9b0c574cf5a140696e83dd4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83f69745bf0ea0209019b536a255b65384591484d09ad0f3240e2d0823ff9478
MD5 5c08009b971fde4cbfd590327a7ee933
BLAKE2b-256 dc20500a5b1ff5d151890282a00f9d6b830ef5b2d18b24c05aa8a99e26314594

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ea0014c39a2431c57d45ec481e0100d4cc7dbc87a7af5b4dd2f115359fc1c4d
MD5 dc202f25eac3ae46bc3b9d9f2472ec2f
BLAKE2b-256 4fa53f94533ddbcc83c448eba7a378bd21f008941ee6327af24cc6cd96dbd161

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 57e4151dcd80dfdafd2d3875ee349aee572233afd3a1709dabb6dbe5d03d6bfe
MD5 a551c6b9400b7863ae67e2cef7d0c98e
BLAKE2b-256 a340f932a6f0a25689f446ee44318f6aeb4c37ce3d4610644678afb734444b14

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8031649065cb5a790c7499bf4472516f6cb06291d2d61e7ec88e6d050da9aeba
MD5 c058a15ee9dd5432f01d097ee929bbbe
BLAKE2b-256 38b51180d21a757638ba927107a65eabc687e94cc35f65f4a5a23047d0e124cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b30459ff4d7e4169b5deee10a1b5b35bb456331089827fab181b43b0d341dc0
MD5 c74379c69b8d2f583d3ae1686d1fb6ce
BLAKE2b-256 8d7190020baca12edb611b535b9f6bd9c5493be268ed6858671a325754a111db

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ae7319f6efe80ad67abbe41fd12ffccbcd21a2eb67d16437bc045d024339db7
MD5 90a2a33b20d30461424b98e1f248aa9e
BLAKE2b-256 809026bb79e3aa7658e807dffa6de0c710dbdc0561784fc04bf4b228865c2313

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d91a93728f904d4d30309ea6f10e15bf8700ced856be3d0e9dd16cbb0c1ac48c
MD5 9588daf5648afe2e2508252d48055fa6
BLAKE2b-256 3cc8d97ceb3560217a06c0decec5e4179279d7ae43e52deaa0c5dbbad9442ce5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 162b2df8fd823d39f04ed3c3c72879664ecf022373d918928e15170a27f62901
MD5 77fbfc308590f416bf5aacc4db43cf14
BLAKE2b-256 cdf2af456694aa62622fb43fa15437e3b1e496ffa227b460a28c9c64412cbcea

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f277f93edbd16eb7a28435a54d4662315a204c7aa4660f91168fd149b23bfd3
MD5 ffed07c678dcb0f35ce68b07195c61b0
BLAKE2b-256 91be81fc90f5ead2fced3bcc4699fe80917046d37faac691467aa5c5bb628b6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 abc4d7a254788c81d6f966d6bd14e0279940ff7aa3d7f50aaa43283e9bf65ebb
MD5 30a35115ba36debb2da1acc3f980ddc6
BLAKE2b-256 3d0fc11c9337dcbe1d4bd5ccb7eac3a37ef6677c1cf78c931e6b462d81e808ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 335bafa13144d39202b1584c96aa78e667116407fb07c4c68b8f7cbaaa7d7489
MD5 f0fb7496d403d4c0747c2b726f261b4f
BLAKE2b-256 1f78c07ae72b2a57e8a17cf7dab3b83a9a364474432f5181d0e1c31fa4c0902a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 08606637a4fa3ecea73bc43a2f3406ac50f503fd1a30c125caaa65887eb3f146
MD5 b40d6d89e4fbab4698e6c88cc63a6f3e
BLAKE2b-256 a40093c24fe10966f30fb18fe4742787da919df2f975bbb06014e3538e011cb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b97e23dcef5f310025f56c4444b076ae082ad4cf60a396a1356bab9ec9818f2
MD5 d0f16253fb35e055769b4e5d319c980c
BLAKE2b-256 ff3e20ae96ae8fe0503e1689f9173bbeafcbba227a4d2155af34039752015238

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd783a301d15f3c800e55b7e6b6b11843e71b474fc2f6f33792e995cbd2578a0
MD5 b1c8ac4f6464a399b7b79d7f8ca66d59
BLAKE2b-256 6467feb953a5c2f0adb4ebfd3a85c3677d9c4b1f60bbe072c1c3dfe5f288b5d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 59e65bb4a4f53c7e066679dfd7efdbc45089e5088cb6000e1dd9e46c1468cfa6
MD5 fe1f5022d60254e1ceb5a16ad2bb387c
BLAKE2b-256 00bc43073b5c1b7ba46df5d51313519bb0b33818b4690565ccaeba53d7b47a66

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2ee0be4136a3c3b534d96377ecab86fd6992851327fc3712182ae8593e652b2
MD5 99a11f0716666124a6fc461b4fe6f434
BLAKE2b-256 1da356ffc77aadb500169884e288d7d1ecb5d90e9926bb78306ebb4985443a43

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ca548131244181c0e379079be7ab4d68c97010a48f3ef88ddfb35c6f27c9723
MD5 6c5c1541439ef4312d3e2ab83368436e
BLAKE2b-256 b292a2b0422b1e1799f2e63e274e0cb5a094c4e5e7c9b0b5457b0b236481b057

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8b3b64b78fbb615dc2db03a74d506e291a3b0caa8c2d7c9b827a3d6e357abd09
MD5 48a0e5792acf140d696284d08ec5b1b1
BLAKE2b-256 9230644b824af92c4f31732ff967416ea417ba888ad6cd74e13edfc1a5b27ad8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e3f659d4af9ac4369625543be51cd06a1c2ce87aa1efdbcfbf2f9331f52db1a1
MD5 5ddfe019b8ed0b55cb401bdfb51373fb
BLAKE2b-256 797ff66fb8bb33479d69cb679eafefb154fe1f29b307bf88b49d691ce6a906c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 553f6921609e3984c9aa98c021512f154518ea81062c297e34808515b11ec8c0
MD5 5bdb6912866263a3751ce940279f4599
BLAKE2b-256 8031cf1ff7995787140101f784ac58b11c107464e356053845036dd42451e782

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c99d50129452762f8e8a7d5854c678a4f8ebc7666b76885e6df45888c868b90
MD5 b4827e3382303660dcaa53e98832dcd6
BLAKE2b-256 448a43a9449a3ab3616623d734f004acfc47f0d8dd01d8366b96fa76becadb4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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.6.4-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 41c40f679fcb3eb72bc2df57c32bf4bfb20f15f4ee4b577dacba1e828963ce79
MD5 e7eccd28f911ac1b24291f869d061559
BLAKE2b-256 0c41911490ffc97b1c58a1d4eb9a7059738f200396238df5e5f88f955d24275a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.4-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