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.11.tar.gz (141.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.5.11-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.11-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.5.11-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.11.tar.gz.

File metadata

  • Download URL: aerospike_py-0.5.11.tar.gz
  • Upload date:
  • Size: 141.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.5.11.tar.gz
Algorithm Hash digest
SHA256 755795b90a9bdb51b8c6af5c00f15729dec5143f8e2804c39894c11b633cc1d6
MD5 ba5dcc4acf073d9763d3db829dcda54a
BLAKE2b-256 aae90ae53b11a37155f983b6ef4eaf20ff450ab20eb5d8a9732f7a329bce19f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b0418b40c899728b098e4994cfac4a00705fe299023d8d75a7be4fb4a4fffd7
MD5 32af39df88e17f1bfb3f82c4341ca459
BLAKE2b-256 e6c974caf588ed5b471cb788edea03cc1fb4775a058e8ec3f0a6b8a361a09fc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 92e9b47c5fcc79004da043af0ff0607beaa561172b250a768b13fed2f262e46c
MD5 78550b3545face18d6ecce76f93d1d73
BLAKE2b-256 d0b07b4e6b651cdabcf36b645fbfba6d98ef55f33351c20afeded29873967da1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 80a9ed38632f1c75d800f609df5f8a2bafea5314132cc18578830f1e4af69d52
MD5 06571193bfbcc6a389178d3d545e466c
BLAKE2b-256 39a0fd22294774f1912bd8ce6e351e87669e4e0ffc83a7062adf3e0b97a5cf52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f44241516d3c9dc0002faeda540101fa5f1c8ae496e875ca6cbec8218dad6c8
MD5 23ef026754f52353a95b164dabf4302d
BLAKE2b-256 64673e918549c9b3a4b8c6ed0972cfaef39f6ece3615da991f80c61a2835c32e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f9b1f9e800ab690dcef9d59233ed500a483a2c63091d3b19aebdbeabacb6e919
MD5 9b8be81c1e00e69625f37dbeeaac9655
BLAKE2b-256 95f967fd6c3e1100a93b885a5e995537b1b1c59b362a24303ca1bcb9cc108cb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 97c1ba28530390e169844be19b76b4042e11d2174386aa8e6cef139f6bb78973
MD5 6d9c78175df0bde506a5f04013558116
BLAKE2b-256 ae72d5d4e2bc1b97938af053d366781f2c6a4df651d254ff5298674039e2c2a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0d2ef78e4c77ee63d12a47047a05267526b944c84987581f5b58a7f02eec0ef2
MD5 d32fa756dff8356470bd661c3caa59c1
BLAKE2b-256 ad6bcc885a2f9666d39398ce0981645fbf19428a9b72a95f50fa92a1a041a5d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6ff4e2b2a9aa8597dbbfbd00c5b7b31b65da0977a75f70831c3fc30ac3b0eaff
MD5 497353f92bbb044a31bf94d0ea4e8ded
BLAKE2b-256 6093c66309bb9b720753c89b5a910582e9b82737af0ed04b62d4eae02f90d4af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 155ede5e7c62a4d7a7ea25dde4e2e2f43d24fe1d39403b46ece00b82750556b0
MD5 63a5bd4654a4e77056254f37bcc1a3d6
BLAKE2b-256 3a98bffcb291503ab2e244c617c8095bfd70ee297e09c40323a910ae52ed3b3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ffca4424cb4ad034b291a9cd3f3e4e63af3a6583998fa3d34015939e062672a
MD5 79ed31005adea29aca67c24119521353
BLAKE2b-256 9c699543e1d53b771507e8fdd4182607ed0a7d756ed7ed7f8030723c18395ef2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e23751b8dd6e6e5fa4443ab4158b0ea031d371acc8802bf4df2bbf906cb29977
MD5 8a9cb5def1b7a710e11c8a5f15b95995
BLAKE2b-256 73c607dcdbf9c19ae5ab48508c06b18722c562c661f9ee09d684e9b3e7bce43a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60aaaa1fe788695e66e33cf43919ccd8018bf38abf4de4fef8ce035b9caf5bb1
MD5 7ce83cadc12d850e87af71433c5a1bd6
BLAKE2b-256 df3554519e42a2fe448306cba17409f73471d2e4ce6c8e0b1588ffe876c96439

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 60d0b055ff528b07092bfb9de0104f10e4ef942b1a237e89c2f0f4b81490c70f
MD5 80ae564a56a3baaae8ebd1d12e88dfe6
BLAKE2b-256 c81e2b2715a553988dd9b800b891155208aedb5a2895c627377dcdea90d969a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8969f1ef8f4245042b7b450a8849e87f74eb117d8c2a19f84d83fb2624cf49f0
MD5 40ebac677586fd9bee933f9362ba7c36
BLAKE2b-256 b46dcfea69d1d2852986c7335137c6c0cee13565ff6b4ec949ae108e59cb7de1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8827cf925811cb1b2b67b4e1be71f6d3d9fe2ef2965dd87ae7b4088687e2de3
MD5 4748a6d0ced419cb576eb9b039a0fee1
BLAKE2b-256 dfd769bc3ed393d8bbec4a1c6f84ada22868da240f12a9aec1d04c739c99c103

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3dd86cb26b862e21148476cb8bc002fbc6a1b58f17e08fd5c9cf9731ee9fce66
MD5 928d05fb1603ee194aec7e3565a5bf4d
BLAKE2b-256 81c21a7dcbd45d2f4973f6c73ace72dbf559659d77806df1136be36df131e75c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f6236890caf956c5a7d1974ee03198e35e12c4038db000e6ae09b3ea452dc073
MD5 89e8ae3ec93080e20992704934b400c0
BLAKE2b-256 a4305d33470b55a55aa474cf59ffe3bf84fd45820f487ab1d6d795eaa04fe53c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 16fdb41a0ff031ecc1a1bbfedfee23276debddd806d112e1e76549dcd9ef3cff
MD5 eefc3d6e15c2ccad42a69f777fdfffd8
BLAKE2b-256 4699b4ceb1f151f2988933b5ed11a149ab541d4aac751adf8ec37e9b74c68f47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ec96efe8541aeea145d135cebe6d9a5aae4ae4bc3f62f81f61c8844417685694
MD5 3298801d8b688dff8c6fd14ce812d4be
BLAKE2b-256 dfad3b997997ed1a802b5ee3623fb55ef589614fdae3a61f654a670a1de9d162

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56a08ce2703e5eec3f44639375a07af77f41cb42012e100f1894bc1b9cb13604
MD5 8438daa1efe7db93120544ab2d27d40a
BLAKE2b-256 e20010ec420448ace02932fb2d57d708c053568ad4d2d79d616f56d1f42d8c44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a10214b83a8f5a87b13d9c842cc2466a1abfcc1346490b59c2ac9a0dcb32cb8a
MD5 43f06409b977bb295419863f0e44e472
BLAKE2b-256 948df5990a7129812c068f2926dc3f64c70506e7fc193abf03fba533bf556167

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 268a96d084eeafb3cc081ef335541132155fb0357461b671d85c70a99addd6c2
MD5 b726c61cdb57bd3a4465a07ebeec5368
BLAKE2b-256 4eb60ed7c48233d814f78609a1df8f77434ba945380d04beafefb1e36fc3b50e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db457dc72eb7ea386622db8cb7d4b3ebeec255b4f6030c7ad8cb3218c1d6f772
MD5 1790e20466347f2a4764f216e719269f
BLAKE2b-256 753d41f59891c0303c23b0e7d38877972c4b9e49cc8b34da27f120a102e8ee34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de0c7d6105a19478d72add5f538320c56f3c214af3620cf739dfddf2fe049f2b
MD5 35045756a7ef061e9f38658ef2a99591
BLAKE2b-256 edc23143203dfa06a690579727163318acd1c18efbb65806a49219eda1d2a65a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.11-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b468c694519cb6271273ab0c185083cdb75d15b661da3f0614f7b2a2b1b9ee3c
MD5 39dd8f2ef9205e5940e5fbf3e943866e
BLAKE2b-256 29e58b59b8dcb09535606cbe3de511c3362400022d7e4960b43c54c22b734f39

See more details on using hashes here.

Provenance

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