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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

aerospike_py-0.7.0-cp314-cp314-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

aerospike_py-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.7.0-cp310-cp310-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: aerospike_py-0.7.0.tar.gz
  • Upload date:
  • Size: 153.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.7.0.tar.gz
Algorithm Hash digest
SHA256 1bdbb4be140027976387e3d32091b98e333ab971a64969b97d2c4f0579d4501a
MD5 eaf0459dea6080a837ba8b8860b0fe2e
BLAKE2b-256 afc0f8604932e928ccc46b5a51026fa40c262e857c26da5e090e5385865a7956

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db97f5be584e7765688a33e389d6c4b89184789fce1ed31c49dc743866af453e
MD5 64a909fabad9e2df01697cc098e5dfcf
BLAKE2b-256 518e4f4d29816471bc143902f771aff8fd59beaef18b6392a65448f50de786f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c63391a211630132c33eb60390b4e3998be69471ad7b66971879ead643d5371d
MD5 911937238c02436876ae64a509776de9
BLAKE2b-256 0bfd757d2583e8f16bd19cc3c184cd00d3253c2a19c987a1444c0952c7834b6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 73e48045a35ea320b68d2408e60ec7ee63fd748816b1c92ba8505ace79c76f74
MD5 43665a859740d5a106dc756c5d99d003
BLAKE2b-256 6b9f6290b820b9968a8ed4183770e353ec19391dc3db676bae874f9112ad9d3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5caa1d0d6508d121934a000939185b8ea2ea0b8f22072a60e47c9b59ce32d231
MD5 546e80d028cfe415809a39f1c8e178db
BLAKE2b-256 bf8a8fd5d013720976f225d31c59f4ab59a6a4504e70b9fa147a04d4451e1b9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f7a9405f11ebd9885b374e02917a90d2d7edddad011d963ceaddb474f39b8d1a
MD5 a780cb84b02f02cf70ff9ab9558112e8
BLAKE2b-256 d1db034e76c00a3fa28ef84772aacd1d7ade5e05510520a5ac11685fc819d527

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 88f921b572730e2c42d851f765ea75d4fb02ff587476e9e51e92981e211e83aa
MD5 2778b6d5307c78dba961672921cb65fd
BLAKE2b-256 f0ae1bd01da5a2aa93479d62c3cb322ba26925ab31a24e976eb51b99b9ee76d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e68973df03736e57cc006d407f25c96dae612fb8b871165429db8faddd38fd2a
MD5 230e71e554e17ffc788d0d1d3accb074
BLAKE2b-256 d643f565451a980f0590851bf15acb3342af5a2ba7d9ad3dcce4a47bb200ef2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 16b336ecdef568d3ea0a50a2e4071fe572641b709afb54c5660f04741ee1e11d
MD5 ae09e415f731d3bf140191acc1a30288
BLAKE2b-256 e163d4a0d3cc90fe77fe7fa85dc09fb877ecdf723bbd76fc9a8027d6253e1b82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 384f320accde9fffdf07580f4e5d3c32f669cb1178c9b64629014958d71eabb9
MD5 24eaec2d6899d0b4f23738802f6051ea
BLAKE2b-256 bc9f8d153948bc12c56dde6061a23dc027aa7b2db62d83c9e27c9473397cd5f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d6a81745edec499ea6123a3eafce69576e0a05877a9a25bf99fca6e9f7464039
MD5 02858662a42a943fa59555ade606af62
BLAKE2b-256 19a90f9f7021141fe9c7a411aa4fb389d8697c4a09a505daaec92da0d3f82316

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 69204f9dbb4285f275ad2eca0fde5698794a9ed4a5ab09f37de1f6e3b3b4b031
MD5 bebb8d0908cf9170232a7b955479adfe
BLAKE2b-256 4f67b85b52b5bff7c21bb807677fb74b4f4bbeccb9940fab4c9e7ea31a8cb943

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3de733ce514206e51800ca2780e088d17cf6cbf552df8469c7b1f16f4cee568c
MD5 4958d5be51aa903bb5e502622474ab25
BLAKE2b-256 9f58b6248fe0a6e1ded40046d345aa394d4c1968f5beb7c2259b83b5075c91a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0a38232d283a60b4661587b3df27518fb0a6fd29e52891f591e7ee025b3cd340
MD5 85c887aef6a0e762c8a8d3c81e7dfe02
BLAKE2b-256 ec6d88a0674ad8f862ed8822de24a88a103accdf9821c0b0fc73e86522c59bb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5de5953498ab2467c21544ed67b27197a60c981879687cd77f35a0fa28246f92
MD5 f47e75984e2f92ff4160de86390bdaa4
BLAKE2b-256 cbb321741ad86267633905dacfe5c047618d70b5b378a203392b7198965fb961

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8dd7d5efd3fb7c21917b8b5f8198143935fd5ae645c35f2c5a84b930d978ac12
MD5 6731daacfba4de96374d1bbeeef69474
BLAKE2b-256 121d2c569907aa303379a04ab21c8b58398a2f215bcce50bfe8c6685ae2d875e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e343e4b5d854158c3a1b3e8b8eba1b4c0f02976ee1c3c7c1e3d395405a0b21eb
MD5 7db68c6ff67419d27435247500fa33df
BLAKE2b-256 ee7f37771287fead2fde2f9ab3f3f506cefdfbc2ef132e73bb5deb0dc26e516d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6df3f4dbaaa7c039cf416806cafcfc99815ecc2866a6c97171723d8243ba081b
MD5 c8e6cc6d8a77ee9af7d4b67ccbc31eb4
BLAKE2b-256 772a10b985c5d021b1c6bb54ee8fe617c4d6f0244201863cf95e33317311fb45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 694d25f482b17d41db39fb79a923bf67a3870a75bdc2828f63be5dc0538a26ad
MD5 54ffb2a3032e4fee9ff6500f3d32f710
BLAKE2b-256 21c771b5d99261b31d41096d06e8a0b110963571f221a0d115371e93c28574d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8805a1015580c04b15fb43eadd91b90f538816c0e330f5c9321c39d9fff612c1
MD5 a91519f0a39be1b7b574f02eeee868a0
BLAKE2b-256 8c3a8ae5c427401c725ce5a501e0d1253b1794495e86e1fb5af7a0fb937e5264

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 780c9ee6abcf733fe836ded18ba5e7454cb42a000d29b32bbb499ea7ea9ad021
MD5 77b2a2d78aefadf2790d8c0abcbf04f5
BLAKE2b-256 a67a5df10f2898b267451b559c0551bdead12e545ca56efcb5abc8500dc50e53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0050b3ff182ba58557640757aff6d084361790ef865a2dbc6214bf6feb5d9de1
MD5 30b7ce7d56dce000345162f130bae525
BLAKE2b-256 2df5f07bbd26dab429c1829ea9a9d932f03c41d28d8a1bbf4a4d6a16d4838be3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51fd6a799c07ba7450f9ccb8d6ea844d09ae1e04f3bedc9edec833d04dc08635
MD5 2e8fcd9071a44a9943882f0d01c8477a
BLAKE2b-256 f147133287c3267f3031e78288ae4d074dc2e26772a94b5924cfdbeb93602fdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 07435652920f5a27e5fdebcea959e00052ea98cda1273554fe33dbd9750924ab
MD5 72713c681dc89676d778e5a48da9a3c8
BLAKE2b-256 8489bf96df41c6d5f7d5a1e1351d65b7d252585995d70bba469f5a05bb59c691

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8390a162321408147176c682ceec874692167b615a830cc9dee41a76bf16aac0
MD5 1630e338048dfd5d074afacf57efbab5
BLAKE2b-256 e2100065f0a8012d66c96eeed06023558b3494548bdfed53ebd23c509c8a7de5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 52b61e3fa9343c194f6cbdc6d6f02edf43b1ab741a7d0194a93ba48588aeda87
MD5 abb7cb08fa0879a4e744c29d674a95ae
BLAKE2b-256 a0f521a2970f81cfe3fd0802a89fb469fc97f05c70f73cae85ef9c15ee209337

See more details on using hashes here.

Provenance

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