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.8.tar.gz (140.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.5.8-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.8-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aerospike_py-0.5.8-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.8-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.5.8-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.8.tar.gz.

File metadata

  • Download URL: aerospike_py-0.5.8.tar.gz
  • Upload date:
  • Size: 140.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.5.8.tar.gz
Algorithm Hash digest
SHA256 fc5a6a63a9adecd0a61b01e4f90a140ea2b66e17bf024df6cb32e271b0296238
MD5 d6a6bd22c717cc12d39adf545ed7f3e7
BLAKE2b-256 ac595316ede6ec4a61e5c8bc0e46f63d24f8a6b7868c892823c20928df29af9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2850a7feb43fb14ee3a362bad97051b44ace1ba764f340e22c9917b2f537435
MD5 3904df35e73edf48768aaf25996d3d93
BLAKE2b-256 6a0abe9b64a5d6094984b1e8d6b3b8bd8f917c0f22bfecdd15e4d780eef53fbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 223c4a9d1323f996039f07de253c89c4e45b10e837e9e44705824939c95fbbd4
MD5 57575f936dd5c1b29d95cd0922204cf4
BLAKE2b-256 fb992619ed4e642b98b908a2677cd70f851f160783d1ebd7f3dfbe9b6cd227d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b7f466109e8bdb668062819693f78795011ab856034efcdbda2fa0a796bd366b
MD5 841cb6b808b5020f094e4f12c31fb38f
BLAKE2b-256 1d2398875739142719a98dc707ec34e85338b851a094454fe15a065c7842e0e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15fe6f5035fc2055bd23e9b431db01036f457ff44f9c296c1473e05a9380417f
MD5 966663b3d2f00a12252b2c0e9c7f0de1
BLAKE2b-256 a22f2957bf673ee0dae20ffd2d87869c66657c8a7a17b2891080c5b186dfd758

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bf2416cf0d205e495f5e4bc73ff7e6c39522e9c7c59b49aeca12e1194519592a
MD5 bb0d0ed032bdd9172a4f80da2a86f2ce
BLAKE2b-256 3eb79a23e1d62a3e3c8d077451102449452d3783d6222a9ec5025de63873cc55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9eba0afa067c04ed87928b796d9facda27b462242841630e47cfcc2498593953
MD5 cda27d7483b9cd9b8e5c4746d44b4ba8
BLAKE2b-256 59ec384cf59ddc689241823a15384aee1a5f4b89ea3ffd9d8795762b173624c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6472f4e33bee6f2698c5037013e2b64c8bd308324299726e509cdeb5dac3e1c7
MD5 f91b818112b0477c913a2eb96c6882c0
BLAKE2b-256 822572fbe54d568d953e0603c9717d4f81a6a3d77bc75f25a1c02a1d0254f9d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 263874f224dd781f294ee79938d84384b3476e0ddd88ec3e2e8089beb7b6a10c
MD5 b41ef82f9dec12e25ac0fed3dd8a277a
BLAKE2b-256 9d964c77a0d487951b8a5fec8c752e2e203136a19985b8509fef0be4c719caaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b403f47c9793e12621bb045b370e1660b7414ef74318f58a10d38c79b85414d4
MD5 ae66bd6004966c075e253580cd82c4c8
BLAKE2b-256 a48559c1d65df0e33394dcc16f3cab1ab53dcc6f326dabfdcbcdf2972cb56ccf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 529b14f3f9de2ff4ce074051818ea0b4b08b95d224adcc9c7f2f2c81ca838e01
MD5 f718cdb30e2394f0d13ad83cf73ee9f3
BLAKE2b-256 50d8b79cd4b2f03546f7bb1775435915775d8634ef3b0a5dec446b41a6dafc4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3585bb6149eb6a859cf237e51e6e082e5d5b22c3191a5ee58ec8b1591c25c89d
MD5 0253c651a7bf37a7fbbd700a75b5b6ba
BLAKE2b-256 fa344fae565a058e900cb4ec014d820e587ed721976753470acf9e6abb081628

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02739f1692a4d9cf9a4a8ec1949087ba73c6d41c4c42d1ab0664f50043052d49
MD5 58ce1606633f90578f5f614fed7fd38c
BLAKE2b-256 f0833f90ca3cd0dda3568c797e2f8b4e4df0204250b42cd9e813eabb96992cb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c0143abc3a8d22c8938f251bf8849362d94e97e1f607d6769fbdb23cbc884768
MD5 e761c71b36b494e7e32979b363d35b15
BLAKE2b-256 f7228a0475af96403c21be8bdd626bd9edc445dfc4cd0c77968fe90010327917

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 73f90cb8a1ad88dfbd3c9f0f8d00f3152ef5fe59472726a22c8e6c6dd8af4d0c
MD5 b66928202bf8ba598376384aea343890
BLAKE2b-256 b84e5e38592d909f778cbc516b1b2addb4931a170cb77c1702f3ae5866429355

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 474caabab1b9adba767c9dd087443258ef84c6d449ce47b21f637f6cbb8422e2
MD5 5e366307070c35aa6c1b09f1d8eba2dd
BLAKE2b-256 20971ace2d9c555c159e87437169c50f839919098cb3b344f3323c1cdce87325

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27e9382feedf68e5c513b9314850007221ab798733ce558454a9cbff31016a57
MD5 dcfd531186303bb66a5a4694ee023f08
BLAKE2b-256 f5dc43ea99681a8e48fafa96f5ed320a0f1eb1ed41b3734a38f00f9ba4e2a2c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 33062afd9570950c7eb9905aca5ac0963d389952c2df46660eb84561c7ff176d
MD5 a5504a01cb87cf088d7840eaa95a4621
BLAKE2b-256 0cd2340e6a9ab7e2907749a0a2fe4894dbf883b5d915f225bf75f7b38718cc56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 de8c953e5badc17e290d6049dfb5d196964c2ffe1f63708b255a10d376288e46
MD5 2bd2032c6cb078b6a3103aba6cd581ea
BLAKE2b-256 11a8f1859bc6d2c2cbddb8f7ab1fd1154dace31fa8043d4859a99584a19a71be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 310d7a482e584f07842ca916b418f904d0bab43e62a5d48fb63d065f380e3515
MD5 2d9756bb5b62092844b1f9a93eab3faf
BLAKE2b-256 1e7b8253b288c6510bdb5d0e3b6160d2a399905a2020e48231ebe33b2b491342

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3de8871877b9d2c234a86a12d8ff7dc944daaee9766fc2463e7aa3ce13a3ca6
MD5 5f32317e3611a14b3ce9637da4494fd6
BLAKE2b-256 2b28dee4aa0047a82d8e00369a67b07c5727868d8b0025d0003af3bdbba4d847

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2e968af92976f8f6505b4cf0b606e54bc7ac937905823a2e736ad1afc424fee0
MD5 4f599e568ecf423fa61aad79c3dbb86e
BLAKE2b-256 2f3caa1ee242429ccd5512f3fa85f672192a54c02535ec3b2aa77ad0f2354017

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ad85a7b885947d0f1bb93122042b055e9f9a16c123d56c04263f3ac17a67211
MD5 efd86fd7fe96b27cff97c1ce129e7934
BLAKE2b-256 4af4b780a0ce8ffafd8445d178aad617de2c60fe782b19b8a245b7aee01a439d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cd6c4e1c5c0220ecbe1299189eb35b4cedb9634815b22e7cf197e4f9821247c5
MD5 ab4037557bc32af17455fb055a851b6d
BLAKE2b-256 09190159a7d969ec25245be43b9df680ee3ab2a4222b7be655819cbe73f19745

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ded91e5f2f098d40782f380203b867671392b3c994593ee140793b0f7582f8c0
MD5 7b4152be7a2299aa5b53f00a82520109
BLAKE2b-256 ded1abdc9205bb0834cd6c6bbfcb7486d42e8425b4cc19d5f6bb750031e90ed5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.8-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dd1f75e8f84367b84ed4d03db101ec7f685acc45a5c74d7ed8069ab0e3d07233
MD5 f0ac31f06c2a38578842775816162f59
BLAKE2b-256 f92f2d7ae6b016ee36b05e325fd6cd9a89565a1dbf8b105a75078c6949d388f8

See more details on using hashes here.

Provenance

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