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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.6.2-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.2.tar.gz.

File metadata

  • Download URL: aerospike_py-0.6.2.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.2.tar.gz
Algorithm Hash digest
SHA256 a833d640af945ea5432f9b8dd948161a81460989c60e232b29468016cec72d1a
MD5 a9070255e19d8e17f3ed50211bde87e0
BLAKE2b-256 c5cc357fd378f750ef9505d97612a3d2fa9912dd69fcfbe6b9a48b27aa6b295f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 46deea4c80ef62e45e6b2752d1aefee281c7de19de62d5b4c9654d23e103f76d
MD5 10cfd5a0b5f6fabf18a5d1e864a61b52
BLAKE2b-256 e8487bac02377b748fd26f2365fdc2477a933fe2a0a2c8c06ba6fac605e2840e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a676f068ea4da7aa7c8928f24a0754a2bb8ed9aa7e23c8be58eb51098f95db73
MD5 e91a5a445cd286a3867231592bf609aa
BLAKE2b-256 c9647d1f2d5efc503c16eb75f05660362784d05a8f6f74af01e8121de7556b19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca6197ab093c2b828acbd01728adf481e75857178536d1ef52c221e7d7403498
MD5 fdef476c7be55ee928e9744eb19bcbfe
BLAKE2b-256 a429989744f962a3ee64599f1572f6711cb60318176c8711fa70f271fd858256

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3c6d4d6a414ee70dad8ba9d2278e1fd2bdb5ba51cbde0480ac73e7a4875159d
MD5 8e2fd0ffc1ff6864b0da691f17069183
BLAKE2b-256 d93058c79f31ca89dc9d901bc569387a0635b0c95540c53c761173dbe9eec49a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c052131685ec4bfebd3e8625b03c19cbca3d7ca328fc1b7fa3b4ea2caee31db7
MD5 4c88f12a4bae71d45227f8298f30fe4c
BLAKE2b-256 6797d2351b53e88bcf19a5aaa56695fa6717e60b5289d404aca18579425f6d6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1008071b7fbc02cc9a4ccb6ba34be3dc84d0304d9c4175bf4175c3872d2c0042
MD5 31f6b88987e2134a4636eb38709d99b7
BLAKE2b-256 7693d5c0654e60db3c1fb38cc5f293186d1e4e50853a0964b22ddac7e5698621

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b3635252635b4eef83cdd4dbf94fb48875cb268e08992684765217bd80414ec
MD5 55511b8ad41f35b43b0a4697546a7398
BLAKE2b-256 618630e3686541b17006ff7a34ef59d9c3ef36264d81d7fefb24715b8ecdd0fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 347202e55bdf07f0ca2027a27bb835d1b4b6f51b97db6198a7e2b32a781a3bcb
MD5 3a015c8ab191f108e5d70b360722b9e3
BLAKE2b-256 7b471bd0c6963609c62ba453eb5d4be95281c220e3bf2523de3991dd1b64c443

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dcc4086dab260855617478314108436a013cf0431480149a9c6e835c08967223
MD5 03cefce7827c1a4529f1a901c6fc8bc6
BLAKE2b-256 945ade9c2b7308f6d94a23969aca6cc54691984896b7c4a48808cef7587f73d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a12276be77b489e2af2460ac714593c605c44b28920d88a528760d38f9ef39b4
MD5 1aef7ff9fababaf0b1adfd4b1b2e7688
BLAKE2b-256 19e600094164435ba6115b78487c30554010acadcb174bd44377bac3035a2982

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 925a12850ed7ac1b43c25e3cd02a403aa50b70e04a78373618332cdccafef47e
MD5 9122b5811b28d0afd03857b98f4a764d
BLAKE2b-256 f3af2a3248dade4e931b1a28fc9b84e2331fa9f4b51775067fe630401bdfc816

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b0a0870b00f124e04cd865c2c44d95d73099f3a1801e5e5fd47b9e8f2d4314d
MD5 c6c264a32ebe80ba08bc65e1753da937
BLAKE2b-256 c2f7a9535d89623e545a913c2777c2b22936c1fa1a1a98a1572fae4ce566ee2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 501150ed80c450000f1162ff90766c01d64c3688ba8673bea12f421201b50f2c
MD5 1acc4338dad73e3a605c3ed6cd3ffbad
BLAKE2b-256 e4b538657b72810d852a29d455eba950572be0a0bb4f7d20ea5a53297b6cc139

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d00b610134c1167014ca56237ddbb7a52705b9dd31025c5d6c407cc30a2fefb
MD5 9214c704dd48c2265de92ec34a7744ea
BLAKE2b-256 ca4da695bc1b2d70aabf9a05a1d79ff08e0722d13c07e3bad45ebdef0aa34dfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9744dc97ffca19e39dd9b52a00a7044ac38ecc621f5798b832110d1ea35af5ae
MD5 5e752096cd07cae20941302b32c7c930
BLAKE2b-256 4cacce966808425c14318334cdab9ad262aaef4b4ab7c156ae37b4327e265be5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61fda16293386984bbb201a2c34eb2be747a903825f3c1864c3dfe30d0cb1368
MD5 5e397ce9965684dbff4192130c667796
BLAKE2b-256 7ac36c83abb77c5007844a733755b6c557dc35dea7f43ee53971e535982c0c24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 099107f738ad088d58ecbe5fc12f3045b29de7618545ea34c5eed129d021d6c8
MD5 dbeb3d7792ac868e218bef003a34c556
BLAKE2b-256 6780620db6901938e69cc988154be11269d035db1b1961fba8b13c0a570d8474

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eac4b6c7f3c0a803b25ef58fb7b864b4f8fe916db6cbb8eb059dc0bac7e76fa7
MD5 e414f6c42d9e3a2d8790e8ad02891a58
BLAKE2b-256 05154a7894435e5a4605b41e7df2739dc99ab3911bb8a7e0e859ac8ba6cfc799

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28e190e221b8fb8fb1ac8a0a7a2d8998c6c9c3c0c8209ecef6c6950f42ef2379
MD5 6f0957d1db66127a1ed1f4adf9d66d7e
BLAKE2b-256 0fa703e353cddfd9710377d3cbe05d6b9a180a7ffbd527cbd79683d2a82cb90a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 159c7cdc3a6137893af8bb0e57f3db8d320e68dfe53cf9d5aeb1d8f4b8aa9c74
MD5 d0b6a9bf1df64afe92b471d79f1a1d2b
BLAKE2b-256 f204d15eca52a259b1a1d3cdde469abaef6d6a87f5bb736aa65dc5fc41dd6f7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 daaa8448a040a0ff1f236966e55d88d2aef05e0fcd088cff00b56aa962ccf2df
MD5 0d92e58ac2c50623cfb74fb355ea30d7
BLAKE2b-256 37fa41877512ee9bc54d272e8662141bd74ac7fc75fb8c760de2fcd3991ed51e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cd1f76d8bd0f44bb9d26ac9b993fb2e7d2af70fe93ec112c2f01c2651d297a22
MD5 d63e4ef946759c6fe8b6fb007b0b4a17
BLAKE2b-256 1aaf22d5214c43efb176522b60f5ca2daa2b882aec587f513c7cfdcaac90ea24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e9272d1ade85fd84ee7ea92bdab1be23d4e1af8d701ab4750706cd9dc0fb42c6
MD5 d7cd67406767ce43e362a8b2460f41df
BLAKE2b-256 d25fc5d1cd23798866da7876b422931ce959429172b7e32cf20bfe703711efae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29619b4ee57ed9a9c9abd2d94cef07b075696afd49a89915ad37984631cd6bed
MD5 7e03936b03860959c4be0f7d5b901b17
BLAKE2b-256 e06f1a4ff9d259a65ff5de210f139606df14c79d76a3542cf24a67114de3596c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6736535660d2b35a41ad9e245ef41824b1b9e65c9bed56ca48d86d40c2ffebfc
MD5 d35e94df91069508d2c684697b388929
BLAKE2b-256 eb5a68daaa42b9dbe14a8561fb3735a18287abb5b2989424fcb7367af782be7d

See more details on using hashes here.

Provenance

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