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.5.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.5-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.5-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aerospike_py-0.6.5-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.5-cp314-cp314-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.14Windows x86-64

aerospike_py-0.6.5-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.5-cp314-cp314-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

aerospike_py-0.6.5-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.5-cp313-cp313-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

aerospike_py-0.6.5-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.5-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.5-cp312-cp312-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

aerospike_py-0.6.5-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.5-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.5-cp311-cp311-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

aerospike_py-0.6.5-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.5-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.5-cp310-cp310-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.6.5-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.5.tar.gz.

File metadata

  • Download URL: aerospike_py-0.6.5.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.5.tar.gz
Algorithm Hash digest
SHA256 d7f81ee47425698d5f0c355a4c3b6333ea6892d50e8ae8ac5b88030a54a54af4
MD5 e172445176e4db4cbfa7eb8b33f8a800
BLAKE2b-256 49b681de9c57d2a60293c62a5b1f53dff37c88798e2b4d71b6a8ae9d6c4e9f4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0c03e733875d6cbfbf39bee9361701d81512a2f2f6dc56cce946f7b338a6c713
MD5 1fc30af2e0d04500c133e98e8cde7c90
BLAKE2b-256 9b5e86b27bdb6994bff068f64e2c93da87bef2ceba50fc703464fd5c69e75c71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c712478dc864307322990ba36b0fb7b326ecbdf0dae2c8eb61e3bfeeb47fcbf
MD5 f5c5aea32d2a997118cb26fd91cc89ac
BLAKE2b-256 9561f12e599a5e941d070eaedd83434a83a55e4cf07e55858b1aa7306260c9b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ffe88246740413ea5ea0306a3eb1d7c61e01d16547d45141989402096656daaf
MD5 2be3cf5071d011a110742117c72d5472
BLAKE2b-256 53816f6f85b4f5b571d78dab7d4f0b160a3660c00e9555f66dd40aed15b42d0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7be389b3472ff7eb556116c6e7f108ca555a6aac57336b76bd971d76a88f7c0b
MD5 8e5ffbc4b78d6032b6a358abb939d2bf
BLAKE2b-256 a1130174cdbe9d084deb9fc12bcc14d4bc4a75e3eaf0f070378c5d13ab4041c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0d275b18bf2eb767ad936351996b010071c9ce04d183172c1d9e715858e82d37
MD5 9a6312c5fb94d1821b0188ae7dafdab8
BLAKE2b-256 6b1d19bec961ebe9f4bdf6f6391615781556293d049d9196188ca58534539555

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fa8fdeaf42d43845298adff7c46019a1ebe08244ee9028c251fd1bcb120174c2
MD5 dd6ca243977ccc687cb608a6d24d2c2e
BLAKE2b-256 e4ae380fd1d45019c93b4157c81b8fe40f76ac62c52ee52513922e9e07c02282

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 afca6fcd131ffc58936420b2e6b0d5ff431a1272977941f17a13743895514f15
MD5 4c27625837b90df22af481c6e0646087
BLAKE2b-256 adfe38d9ab478eda98bf2e1eee57d4d38a08d6791724bbea443a9585853cdfd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 93950b236a194f886cf12b034fe8b6389bbffe2482d44fa0eea8e8ab3da0084a
MD5 ab2d6220b5d3ebeda01fa0767a2a9390
BLAKE2b-256 36e71b46a21441082c61eebcb6ef5a2acbcb8dabdc1ac1f99600315390d935f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea45e3422b4b009cc9361ac7a47dc5fa5e3330fb034ac7be08a7c94ec3c62c97
MD5 8456b0a5eb53a2f299219baf2c3bf082
BLAKE2b-256 cf4ddfa3b74e2a6788d5458e989bdf96ed18f4ce9d1ee248497b5edd74e4f47f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f09f00c013d2d8a80ab45882b0de65bfe7b943357154aa9d850be28dcdd109ba
MD5 6795633e8698f6ee1b182e6b92c4049f
BLAKE2b-256 dfb8be0ad5092c6a4890241800549c52ce482b37db3822eacd6e65ec3371c1d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d2f7339a00b3119e836f62bfe267bd221b4411c74bf95b9c8f0bebd421cd710b
MD5 26ef1e8693efd323117b9f90f86f83f4
BLAKE2b-256 1c5f3caa428ddbcb47cb734bd6feaa6997e3c6eb6590f9767ec9708b09744b6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa5ee477ca807f011b26b796a60dc7e88d1c8a69d549181efa0e49a73ff4b65d
MD5 a89a84c8f83f57a8b4890e98c4337b72
BLAKE2b-256 5f83f6afb7aba3c42bd8818cba405b4045e380be0f166f008be124d6a3e7472a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f2178cdaf803471afe0e7c6f8311b7a47800d6dc160a40c0b9feac063dcd898a
MD5 17c11589210361a73a0ba39489dd0761
BLAKE2b-256 7e483575295571d3aafb1053ca9bad43f8f5869dbd2d5ebdf569bd57f93cc085

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e1f7ecc9ce5e9d6a05a004b50a07ede8a6350703db4dec7ddca243861e20699
MD5 a0775c72d0be1d035b398c50bac4fb47
BLAKE2b-256 ef44c99ae34972153ae4d97e3e099d4aa3895671ba06a42a1084de991a2cd723

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 080de2e771c01972e54ece6f7c33240f23b3154ba32f8d8859a085b01e278539
MD5 e5793726118e49802721d9634fe4de67
BLAKE2b-256 d00ddac7ed3b3f9a37684f1ba1caaf15f129c2589587ab50953c66e7a86d6151

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60e2652f4f327415db484483b4f8d7044ddddd21b16319a15c02977b5196c2c1
MD5 b881ce8f1679969e020d9d034ed57bdc
BLAKE2b-256 46149a641fd799bf00c348bfa1cdb5ffef82ea58cab3e85ab863554f8f3da280

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c4108c5547e503f3eb499dbf70e3267226a393c622b326dcc04782d6006022b3
MD5 f29178ca7f38498d43cd14840f4dbdd1
BLAKE2b-256 45db1431055d5e8d42def02ad3ad98b0713a159ed4e5c0e21f507a599cbb5137

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c9562872028455308c32ae289ba6fb8ebbf4774897907551b8d040dabb4459e
MD5 384e8057b39620f05e1a1b1f8ee0bbba
BLAKE2b-256 2119c16e112397c128ec1c9c6f12ce9b4b6fa3c78b6133a197ac76c2fc28d62d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48bf15c493db3ff47f5e9dc07a876eca0171d68098a07751f7edb3aa9f67cafb
MD5 a4bf1570dd7b4541bafe1a4be4e98e22
BLAKE2b-256 7f1eb3af25bee7e0af4e00ff4ba652ede6541a41aabe6ae4382c24cb5d9b7784

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e57f20161e21d8aa1431cd8cbb135e2172fe65415706734f7bfd86f912f3ee8
MD5 7a7ed5d5e4e81f82573f9479f908ede0
BLAKE2b-256 a04596579a3399c348de19ae61a73503d072e22dc16b7c009415a1eaa4db0f43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 acb681dc730fa75e0e345831275a770af74d4105f2922fd13bf49121514dda64
MD5 fe2b72ad69df4336dec3fd2a4d6fa68d
BLAKE2b-256 aa42f4706e56ec0f29a5b7d38e927333bba0b5b772266b1632fda3b056c361fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca48a6a57a737ccc6cce9e8fd1313253692ae6961595d79cbe247e09eb03912f
MD5 ae8b55eae1b66f62029253deb51b8e5e
BLAKE2b-256 c90c6805de1f938ff7d406cbb7d51127fd1493a67fe58ef74fa503726e82cc7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 88af1845822b4a66b0edff40daea00b4be099a1e82ac22be1ad44b7cfb83186d
MD5 b67fce97c58876f1dfa43812238a299f
BLAKE2b-256 f3a92ec9f424e76ea7463c8203a037b1bf81b3b1d48c883c64997bdad13fe185

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a71f5770b2855dfbf2744f345269e53b434d4ccd0eef7cbfe4947cb2880d871a
MD5 fbb06bb1efe42c24253ae0295893dec6
BLAKE2b-256 17ba885ecb4f9b2f170c5dcf1452d60f9ed10b5635fc727d8a539172f450f423

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4d1de8a7a92aa505082416a87f0593f1c2a7c5f92f6e7a9bc1913edb902a6c3b
MD5 b4487fb592ca3ea4ca5e2c4641d13905
BLAKE2b-256 fd821a944718b6815bb28267f6a36957549bab73aee6e195c90a94292bd6dc44

See more details on using hashes here.

Provenance

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