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
  • NumPy v2 structured-array results for batch reads (skips Python-object overhead for analytical pipelines)
  • 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.8.0.tar.gz (163.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.8.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.8.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aerospike_py-0.8.0-cp314-cp314t-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

aerospike_py-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

aerospike_py-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

aerospike_py-0.8.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.8.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.8.0-cp310-cp310-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.8.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.8.0.tar.gz.

File metadata

  • Download URL: aerospike_py-0.8.0.tar.gz
  • Upload date:
  • Size: 163.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.8.0.tar.gz
Algorithm Hash digest
SHA256 e45b85007713589e5369fc4720df43ce25ddcb575d3b9b678ee790d189052d4b
MD5 8f76a2c04c80fe912706f1aa33f1fdf7
BLAKE2b-256 d6467b222fe2227c1371959e529bb96d9f7aa7184a9eb82ce9fc4cb6cb9c40c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 00326e5524a2e73a864e57176c25e888d2fb2d85fbea6503b0aec365277902f4
MD5 fe5eef1cc7f00ca5c2b3e949f592c31f
BLAKE2b-256 0cbccddb4f32ca5f1f0ab1a4236984cd20f8319df02c39cf1cb058ddd7f46b6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 15ab55cba345f657fa2ce270af63de49cc149710b228f943b84670ce96db0a26
MD5 baea361088a319923f4b1ab535ab9569
BLAKE2b-256 efd99a46b8bbd7eb706efdcfc17e9784c2d7c82fb1b07e65d7f2a599829e9ed4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6832eafa6f85c568855db272709b030464cc34fe858c4e85d37f0e30109677cb
MD5 600ce38fa305e802a3d7dda3f2c766e3
BLAKE2b-256 648d0b46616fd834c43c78b906a42afdd646155faeb8ad3525223b6196283287

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c856a2a4403f5b6c1d313a825e4eecf48601b61a4221691b8d93e81d22d09f04
MD5 bc1b282fcba7af74afe961d042012667
BLAKE2b-256 4683c0067cafc5e0b04917250703f565f5276d3f14056c5a51d4fcbd0964f7aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0c539abe7e86e11573e20bff8eeeac477e866c17bf9df0ae2ccd48eb88ad04b3
MD5 d5480d651145ce70af0e32fddd7765bb
BLAKE2b-256 a4a7ffc4fead7b8de4b79958417a34403c9b462a5702cc8c8ab3dd797301c69f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2d0951e643f1c11abc569c347762540bfd4e3e128786e24026d7d97b8f29b31d
MD5 f043cb25c5682fb12503ccc182fc07fc
BLAKE2b-256 143a74f6a0d054229d06d3a621fbce4d6b47bef212bb9ae81b1c7248591ea319

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fefff19b98adb3d42749fb48eddbeb8099346514672927080f0fcee86b6e27a2
MD5 708c0cc7b9aadb0f4f24233e8b2f6bba
BLAKE2b-256 8ddbe6bb50b03ee31a9597e904f2c69b5db90572fb91214aaf42a37f09fcde5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 16f9860df1a911f6f84cc6349864c82819bd3c2bbb281983f300e204c9a50908
MD5 0372f628cd8b7f6ccbab17bfcbb2d6a2
BLAKE2b-256 17d57e5a503a38a54d0f70e6b603c07b0c4f728070835a65e8b4a58fb474cd07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8a15c632098f21628442519d38e4ed0e93a606396abb77c07dba4fc726bd1503
MD5 8f11d2f64d8882971c398fbf4157ad3b
BLAKE2b-256 5e64037619cbf529414a28c901beed2f815b1ee836a5453256429456f4f1a9e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 21c418173cf8a2d020ef15d6899d5006fb7dce8db2464dad26b5c0bff1ca2a58
MD5 9d5979575ee1e6b645c69633b94921d8
BLAKE2b-256 738b08cdaaf29dd6a872449c0afd87e5b03d961c0f53efcddb450c2a75e628d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ae7819c830aa4a5892a4a8b79d7f537a89750726380c2ce559774c928bd00e1
MD5 8d58f4cdfbe9b9ad9085f07f634357fe
BLAKE2b-256 ee6d14c733b6a9e0fe247ae106965176b04375b542445195700e5f6b3fefbbe0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 196707f9e8b36e930813c8a6473c3359294456af1b3ba144460367d7d95f61fa
MD5 7922fea47de850f467b48a68b236645a
BLAKE2b-256 32ae15a088b7197023e33eb9715b576484b7d5e20e494862e52f38a27124d2e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9d95e10e8c233866ee1c9aea7de8b654f634508e4dd984c9c8b80818faf38885
MD5 a75b7979431c04d7e30a41ff241b6f85
BLAKE2b-256 953b5acb903bf785c3d8f8af7cf863d7bc4d5c1c9041e5bea4f4f398acdd7c2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e43f541c63bb626338ea834afc45f60f88aceb0ca73a7f7ad68a91f1e966970
MD5 66a181ea25e5773e8181b198035401e4
BLAKE2b-256 4b80a688820efa75286f130bf5c391ca0451ac5b7871677f5d8d2b824da374b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e376e8d8092f28048fcdb69d5233f6cfac4e7310d29272ad0172de3b5ea2c104
MD5 63076f074090e57a4193249d8d253c46
BLAKE2b-256 54629022a6f6b33639a2aa7aa798cc2bae45b4f55f0625b91144fcdbab62c095

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2afc54f0007a885da9ace6c5d0aeeb7d2ecfa1358671d2c4c4ff9b12d8fed12c
MD5 426be5112015986ed9198853c969b746
BLAKE2b-256 931ade4d96896dd3feff54ee47ff6359af56e0be2d4d1091e873a1d2807f567c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 79e1c373e4d42329bcb515ba04ae5f3e7d10aa7ef8c9c4f51ed079098091ff87
MD5 f7ac8d5c945fbd8aeb79569ecf87c89f
BLAKE2b-256 74ec621c4be488a45de0864c2b1d168eb870eccefc41ff7d0930698aa637fea4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 88e0e1b9afecaee3a4cbc8af214e9fcb72991924eb94d13ba5649defe8148ab2
MD5 40276a9eca760b55f810e9191b8f6b60
BLAKE2b-256 304999e119d4a7ca3a03e58405b1119eafa97594370530d50a61b370d6753bbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c664983285ec34d9e7559e663cca4c537227e8604cf5a0f82b09b760bb611080
MD5 02ce1ee1694b0a338b313f83e76069b8
BLAKE2b-256 b4da57352209cf91a8998ff8740cc7e5c8f28057e44114eff9bcd891f0f589a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee9fa0a3593182421a53036d979652336fea460aa15b29b31133668c0738ff3a
MD5 389ebcc345f7ab98b50c680bf06a62cc
BLAKE2b-256 913ecb40223d8b748a50c33a76c9bf80aa6bb5cd63be677bf961cf95416e581e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 72787600e0e136624ead3029cfaeda0a8d27fee5060be309bea1331df0694816
MD5 89780da80b2d3e07e77c57ef8d700f7c
BLAKE2b-256 7d663868f9abdebba25e30b9e772eec88518e961a840ba6582079c88cbce8a47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca6cc7030b26d0568170ab83ae78c93c6bce46e7f36e248815a01596d395909e
MD5 7be97428bc0838d97ead512720653158
BLAKE2b-256 73a93d1c7b384b4c60cc5697a0b024195a91ec8489d837520149b1ba6bc203b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e5377d3b627d8d5317d0bbc368efe863ffbe4048f1a2e0b9c18b7cc2844dcf59
MD5 752f805399835f26d485e346f4307fa0
BLAKE2b-256 6d52a2594bb981c493fa605866589f13d42cc4803d014a8c32117515ac34f9ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47d4ee526e0f6eaec4d2f0703fecb74c4b246527a8c0e83348b030b1ad4286d7
MD5 a537d6074456967e558c222b02d87065
BLAKE2b-256 13725738a3f8fa7ad2806a2254ffb92c4f5d3717f7e1af6ce0f129a0bcc7dc98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.8.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f85e7932eca09cddcb3a9e79e0e586c1478ffa35074c7c8f0903ce1ecec59da9
MD5 6a6123bdc802462e4a05d5a04c44dff5
BLAKE2b-256 af21afef21f472267de0dc3767ea9dac0c8bd23971cff2d8fa887394f7eeafbe

See more details on using hashes here.

Provenance

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