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.6.1.tar.gz (147.2 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.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

aerospike_py-0.6.1-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.6.1-cp314-cp314-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

aerospike_py-0.6.1-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.6.1-cp313-cp313-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

aerospike_py-0.6.1-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.6.1-cp312-cp312-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

aerospike_py-0.6.1-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.6.1-cp311-cp311-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

aerospike_py-0.6.1-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.6.1-cp310-cp310-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.6.1-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.6.1.tar.gz.

File metadata

  • Download URL: aerospike_py-0.6.1.tar.gz
  • Upload date:
  • Size: 147.2 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.1.tar.gz
Algorithm Hash digest
SHA256 dc409537c28501027cf7b340241135fb9b519d3fa43f2b1251ca3347fb03e15b
MD5 fc8b2fc4dc8c97a262010fbc92ab2b57
BLAKE2b-256 0b0ba9961e6231f3e27fac36f4442bafaf46c8ec36fa0aa9b0b9efc6c32d16e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe48b4972d2e05f75120f37e979d46a24a6b385b0cede85dce30b3b802ef1a76
MD5 7cf563ac5b5f1b9594e302cf156720a6
BLAKE2b-256 3ee4cf70b467706c065798bcec67811d770bd92647d975b0066700c4d54bf8de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d55775f0e581e884f0cd3f7d0b73d915084b710d29ad8e0df83d7fb15151a82a
MD5 696b73ea177622ab7723dc77368959a0
BLAKE2b-256 31e28c5668e6f7c27f30b5746d6c0f9b3e75bba6e46bae45fbdfc5c6027d7b94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 54e44efc4083f6229f34a59f079d67f7f2ae0d68f6a263b49316a851df674e3d
MD5 706a5de7054948bd7e15f47dd72fe425
BLAKE2b-256 81a2386df7e66bda43456944371d90ce2757132f782c012a2e53e66db7c112dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95db46bd07f92cf18835b3005b2f9991d688d412cd9a7004f30c2d074da3a1be
MD5 2ff2a6e13640d02e42b7337dca7f3704
BLAKE2b-256 c8196fe1ebf1d444d872ba4e40168bc25e73e386b35211e475029b7ff0e4a0d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 af975df2b87e9fd75ead0add5d4749fd5e86447d1e97735b28a412c77a3ea73f
MD5 55b6944df2018087abbc5a69f5b58b61
BLAKE2b-256 c9e4016c3101ddc5e68cce12e9950dfba29b4eb247f39d31fdf1a5bcaca177fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6c12250a0b6ec6f5e84cf9069b1349a237455de90891b7251a8fcf7247001aa7
MD5 627ad67d2dd601a1253eae2fe9b8169f
BLAKE2b-256 c4adb99e06d2d24a9d1b8464bd5200551ad32d055f9e59905b6c1aaabe8a3ee8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e99dc0a0a673d164170f282d68bc0d4123d9211d4fc24b12cbc15174176838f1
MD5 a33a98435a36ea0dd7b3bbdde354fda6
BLAKE2b-256 60368a2e76c0db4023e1102d1c338fda171f1c53f58d25266806e7885da65990

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8db924a4614994ff3ed5d75537410a1e50b0013dc9e3e4d0001bf838af0cce4
MD5 c57bcae7bce00623e4475c5a44a73cb6
BLAKE2b-256 bdd98fd87dba468b0b4198207d3bea43044f66550df85fab541894d99b4819a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 54e83658837ac3eed2976260d5b0fa637c9d64bb94f354fb5f8a7f606589ad31
MD5 9f12536fa0432b7cc306b78a4ad06f50
BLAKE2b-256 2b4322452c4b29367e61d0403191c82cfdf2dc867dd1319dcf0e5acf08d381e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf641e80118c747cee7a09d38221819b2debd5f628cc7c10a05453c694ee164a
MD5 ef44d7e42e8dc68c816fb18a78378087
BLAKE2b-256 fb41b388a3a52a09d808dad196b1037436cd60d533a7e3ed095d1bd9a7e7fbb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b49c42cd0854ad9bf2653e7ed11d198f531624b40f9843106bc68caa94f441ae
MD5 17e52c5d2bb99102a3f59f5d5f67350f
BLAKE2b-256 294856ad4703d0bb2e2034642411bcc3e63aa52b5ea13a9f063a8b6d37982038

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2fca77525db79e73c5b40a1c541f651a1fac3955b29ca3baae5437f7fb67c196
MD5 55531aaf3c953682a6dd39da6f4ca606
BLAKE2b-256 474c2a0f1f80d6db05c6b8535ba8ce88e9bc19fea5a82c69a037b05dd625885d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5c28f4b86d2a99708b60175de70a6834b95953be59e48f66f5f4a69371268752
MD5 b5633d8512f3103cf09b3af0af5760f3
BLAKE2b-256 819c07b26cd35a7c91bcd02956023331291c5968cc0f8878a833990963c5a8b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ce10ead58f538d43a9205929a51cf24f526889ac72e1449499cf19b2f607d69a
MD5 549cd8eafcb90c9902816c4bc2768fa5
BLAKE2b-256 08b68b10ae9087894592a50fb049154897b6ae6aed394df3f6eb757f4027aa8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1c5d00f7253a0994f253743cbbb4897b30a923e66c05f49d17838bf4e98b0785
MD5 0467ca4d0ff05f945ec4bdcf03efebe3
BLAKE2b-256 db6723f930b5ded9da61cc14617a5f6ba0c9611a165c3cfbe8411d5d6f12c029

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec5ee4db7fe2e1bcea3efc26008506f37b939642235cae37d8f13fffbb63fb5e
MD5 fadd39f62016e724be3c3e8f9129475d
BLAKE2b-256 3c3e0cab28e9e877265c17fc0247cc7fef59613b82ff423d35a558dc51adaf71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1bc77ba07d67b97e2d5deae20d724030b0c94293a24e26a269e6e74668a4de4b
MD5 ce45d8525ffd5f6fe742e0f1a44f4adf
BLAKE2b-256 f64040d30d659367e7dc3bb5c771175ee157865b071f107d48d5510931f9f0a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2773a3598319af03f85cbe21c4ae3300930efa2f91cde39dbbcce55530c71893
MD5 4ade9caab826ffbda4f9d336655fd3e5
BLAKE2b-256 1738cd19271cfbdf56f69f44f8c37cb16d7eeca15c9bac97119550d6862e9a92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ec1f1c4e7de5e4059648356d0fc1c9d221b20232a5b44931695190a288aa6716
MD5 e635afac65734029d51af3151ec8a1c5
BLAKE2b-256 33afb5160ff59a656b3bf453409a6537acb4b82e5a7d81c3637f0c6f5d2b6986

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b77e95c3809fb6e9ecd3076e53b0e3dab6bcd8298def88a272c4b9034cb5cb2
MD5 c5527cf21dda329a5406048a03953235
BLAKE2b-256 7d9df92be95a126e11a14f7cdd4e926800819d38d1489a6233c6c74fcbff62b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0d3ac787124579a830644eca5478dd03bf8d54874c2fd6089af935ecd5e1779d
MD5 a641b99b83b3e10dcc9ba4da8c7aa8bb
BLAKE2b-256 8d6a8954ed27ada5c9ba8dae5cc066c72ba6067a9da703ffbd4705434838de36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0e1c2b27ecc9232862f15df1ad7a4ed4d6d12b14a93a62bf147fff5802bfb46
MD5 22e34bf93bdc78ea8544540e3dd18970
BLAKE2b-256 eb07d1fd65a0484bc378e325c293dc408b7776d8b34ba160b95bea96845313d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce266973bb1c8fecb9ddf00b9f5db5b5566bcdd9ee2cc8687440933a58f405a2
MD5 a1ea64c6e6ca3d32597c895d546dc11b
BLAKE2b-256 0d92606639f621618c072883307e15429e41192b195cdcc7e68e73ec17ddac63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd5cf5b013da4241186cecf65534ab263a3a649e278146bc6cda1336f88f0722
MD5 e1010b09b0145f625734aa918a187f7d
BLAKE2b-256 43c16bee3eb34bf89d5be3144bda09b8d411dcb5a62690166a50b9e55b3fe173

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 df53f2b8fcf6b39506ac15586354d06e4709efe9938415cae938cfdefc6d0168
MD5 86770afa3793dedadefd08e09e938086
BLAKE2b-256 2686ad4e9229556efcdd12d6f8ac0fbaa24bbb33a6612ecede1230686f57322d

See more details on using hashes here.

Provenance

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