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

From a source checkout, start the local Aerospike CE container with make run-aerospike-ce; it listens on 127.0.0.1:18710. If you start Aerospike manually on the default service port, use 3000 in the examples below instead.

Sync Client

import aerospike_py as aerospike

with aerospike.client({
    "hosts": [("127.0.0.1", 18710)],
    "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", 18710)],
        "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.

Repository Automation

This repo wires several automations that fire on commit, PR, push, and schedule. Knowing they exist helps you understand why a check ran (or refused to).

Pre-commit hooks — .pre-commit-config.yaml

Run on every git commit. Install once with make pre-commit-install.

Hook Source Purpose
trailing-whitespace, end-of-file-fixer, check-yaml, check-toml, detect-private-key pre-commit/pre-commit-hooks v5 basic file hygiene
ruff (with --fix), ruff-format astral-sh/ruff-pre-commit Python lint + format
cargo fmt --check local Rust format check
cargo clippy -D warnings (--features otel) local Rust lint, zero-warning gate

Claude Code hook — .claude/hooks/

Active when developing through Claude Code with the project plugin enabled.

  • pr-perf-gate.shPreToolUse hook on gh pr create. If the PR diff touches any path in .claude/perf-hot-paths.txt and the conversation transcript has no perf-impact: verdict (from the perf-impact-reviewer agent) or benchmark run, the PR creation is blocked. Forces measurement on hot-path changes.

GitHub Actions — .github/workflows/

Build · release · docs

Workflow Trigger Purpose
ci.yaml push / pull_request to main full validate (fmt + lint + typecheck + unit + integration matrix).
publish.yaml release: published / manual build wheels + sdist, publish to PyPI.
daily-release.yml nightly cron / manual nightly release pipeline.
docs.yaml PR touching docs/ Docusaurus build check.
docs-publish.yaml push to main publish Docusaurus site to GitHub Pages.
docs-version.yaml manual freeze a versioned docs snapshot.

PR & issue automation (Claude-driven)

Workflow Trigger Purpose
pr-reviewer.yml PR opened / updated automatic Claude review comment.
issue-planner.yml issue opened / labeled generate an implementation plan in the issue.
agent-implement.yml issue labeled plan-complete execute the plan, open a PR.

Skill & docs follow-up notifications

Workflow Trigger Purpose
skill-impact-notify.yml push to main, on skill-relevant paths open a routing issue in aerospike-ce-ecosystem/project-hub.
ace-plugins-pr-notify.yml pull_request opened / reopened / ready_for_review / synchronize, on skill-relevant paths open (or update) a follow-up issue in aerospike-ce-ecosystem/aerospike-ce-ecosystem-plugins so skill maintainers can mirror the API/docs change. Idempotent: re-pushes append a comment instead of opening a duplicate.

Both notify workflows reuse the GH_AW_GITHUB_TOKEN PAT for cross-repo writes — rotate together.

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.10.9.tar.gz (173.7 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.10.9-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

aerospike_py-0.10.9-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

aerospike_py-0.10.9-cp315-cp315-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

aerospike_py-0.10.9-cp314-cp314-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

aerospike_py-0.10.9-cp314-cp314-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

aerospike_py-0.10.9-cp313-cp313-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

aerospike_py-0.10.9-cp313-cp313-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

aerospike_py-0.10.9-cp312-cp312-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

aerospike_py-0.10.9-cp312-cp312-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

aerospike_py-0.10.9-cp311-cp311-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

aerospike_py-0.10.9-cp311-cp311-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

aerospike_py-0.10.9-cp310-cp310-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

aerospike_py-0.10.9-cp310-cp310-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.10.9-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.10.9.tar.gz.

File metadata

  • Download URL: aerospike_py-0.10.9.tar.gz
  • Upload date:
  • Size: 173.7 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.10.9.tar.gz
Algorithm Hash digest
SHA256 1311b52c7ad992250c97e0a22ac2e922f0d63fa0358ecb266d26482192c038dd
MD5 b8d1886031c516407f73d92d16298c61
BLAKE2b-256 0bac6529ddabf1398baede0c3078b8077d52a140b941408038a1a73e0f7c5765

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 34fa2053fd0ba52d3059c41288f3a17241b6e06f87632fc091a1752a0ab72945
MD5 bf88085e0e02671434c7b6931204a7d0
BLAKE2b-256 62624dbd1f63d0428868efeec1b172e363995f147f297428814e0bcc9962dd32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 524401857c640b4f34e5a771d6d3e232b5aa4d4884531623dd0e302c230beee2
MD5 20028302a2e3428c6a780c78b5b5a8f6
BLAKE2b-256 6c2e91f2330746b2ab80ade6a510bbaa3261f620443b975f090194431c5dcd0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.9-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.10.9-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 354ac16552b64b5135cd29d594fc7ab5f3804f45a3a0d0e2390362d00bacd01c
MD5 3c324f75cd98309e7ab921c5cf420446
BLAKE2b-256 898a97b2def5078fe3eeaea433342f9c19d9fae0d227cbc409eb6545b09ef347

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0654a1a30da6d36f35e5e91a24eb8b2bd7203c83556aae47ffc1e99f6108e919
MD5 cbdd0e59990b01d8ff48a504cb045e04
BLAKE2b-256 0a12908f79b061767eb790491f8c8076dfc801071dacd974aa7e78e60dca1b3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a67779ec62e24e8e27322f83abab23bd1b6cf5f7f6ebf5af4bca5dc3ff8f4072
MD5 cf3a4f77a1ed3628391fe9b3c37f4396
BLAKE2b-256 f9c35c8fd602b4ed40bf3f3d73786343dea4a03951f1885dd26df5cf45bfbf41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cf28057174929cbca842470a6b9c26a87ac9a1735f9d3149a9e88edba710029d
MD5 58054831653ea4dee92c6c367e0489d8
BLAKE2b-256 ba1a4d0931aad6024a5663c263903703eb030b09d9dde21adb09b262a74fc810

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f0df9c0ce145b0398f354dffeea7afe467b2f9af0cf579c4d61e2ca572b067dc
MD5 374ceaa90f468c2531ad9f5783ef3ae5
BLAKE2b-256 11901cb27c47050a2e1314dd827e000ac32d972ad1faa12b6da34961e0f6a32a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b29df5c708d2a2e1618ba48d05c9c72d2686e340a92a3a2f8df89d486f1b53a
MD5 d50b6f828ac6f1e33dc7d6b2817b04ee
BLAKE2b-256 6ba50cf2eac5e22a2a8c2a08ee124be93e40303eee2531d8116c8cb63d3a57b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f544eeb3e3b7c5d269a046ec6e9d14c307652fd27d05cedc1928807a9910f8af
MD5 f971ff79d843ab59d7fa60ea096d0281
BLAKE2b-256 e11a183b98b42775b0e97c3bb567c485933761003e2d81acd25bfc09ee1a3cdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ed14e55dde2805e2731b4dbe3b2545967fa661f5bc1b5696ef6c400d48b945c
MD5 76cbf7d399748277e659688b20e08528
BLAKE2b-256 099febfda0729896fe67b32fdb6269f6684939cfe1a156f1a8b05087b18e5608

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 52889572c2fdab75b6f0cae60877aa8b43fa780b841d3589b18b75a277894cec
MD5 89bf878b6bba7cd4cf57830d335f604c
BLAKE2b-256 5dc87a9cddd8ed7e5b73ba5e04593131085531dadad68d62dc6c3f99c62e3ff9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cd246b07ec7e5994e9e9e2a476ba127520a1411f9119f0e2287ba73fce645263
MD5 b497449d2d3cbc76dd3a5989576e0d20
BLAKE2b-256 b52333e0f1cdab91404a647730271587434987cc7f4ef71fd38f6f5c08b5ee99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dda6e16506b32886469e70851fd3a2e41b168ee682ac659df8aeb9c7c7ac23d6
MD5 5f2333a18b391e7e60032a3c5f874738
BLAKE2b-256 b90045bce6664db49933bca7bc6324ec89f23fea5f997a183b3ff39afd66249e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d8a692c07c649242e07c65fd6b52ac1deb3efd0d8f6363b11d2880a76a60d8c8
MD5 9c335bf91ec8ef2e13187a2e2aff904b
BLAKE2b-256 e064870add4003a339444e51fb6c2c81e93352bf5323f6d6e401230f85b505e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dad9e78309d1a0ba2a164243b6a9f6b72674d02c9037a872fca4abac79df22c1
MD5 420704829ae3ab34368df33d870b4d95
BLAKE2b-256 686c38cf95383eca750a229dba94db6205cbdd24b67f9782db7d0c21f4e39cbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce638d4896a6620f8f8409825ff1ab422d6e720547a4fb84f2e5538084cd3409
MD5 70af433d1ed145f180c81d507514237b
BLAKE2b-256 00e09d7cce105fe2b62f10337cdd1ba1cbac67cf220bb12aba6aae6b1b853b8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16b0c59c518fdb6af8f052d034c40f691a9f875ff2e28506592de66601397132
MD5 6540bbce0d42afe746c2f96f978e4181
BLAKE2b-256 dc22b6936229cd71f077b8012f1e737f06ee2f25d181b2057fba6c7e21c2f7c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 590f47d6eed0b3ad152849692e2082df0f874a75d523f98595fd809a689bdcba
MD5 c437d0e796b4d88a2f4799b5a4a85879
BLAKE2b-256 f6a352ecb334cdd358bcd54beabc5d37b45addca04fa13063651a19bd9e63164

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e25e65062e274c1f4bc3a7c8a36bcb9be684fe33fdb50f2b063673f11927ee8
MD5 0c4929c45ac3552a22b8f9ce5b430d30
BLAKE2b-256 7bb3c8e7e4dd1e3dc1b7c34fbe0497fbfda28be5fa2ee7d27809db06f3ade6b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e6bc1761eeed34dd36b6f6c9f9f3ca5e1d86b3b016f2db468d5c105f8f2e158d
MD5 e99ba0d7797cb4daa97fd73fb1afa1c0
BLAKE2b-256 62fa813ff0dd4be476a503636c02f6f2dd658ab57d07ea4d63d97f0c74c30813

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15f6b1cfb02d53da7688d012c336d1320049ff89130dd6ec9e8dcba62a7683bc
MD5 d75e26e0e20b91231e92649fcc28b774
BLAKE2b-256 4084723aea3ed251b22fc63ce3d6c83baa632a8da7074d4d74bd2946aa07776a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 80f00951936cda5eda06a025c409577a271d1a9d28c221ae5d5894855d2bfe16
MD5 9c1ada56e36a822b39a69b4c8d5f0115
BLAKE2b-256 c6708b20fb25be7f42ed359eef3679eab3c29d46edf5f0e5ab5bb32a5534fed1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e39cb32a2e7a99fd019de3f493df2ce5d808ab5489ccee799f5eaa3b23abf26
MD5 b426ccc8eabae11485a56a218aee5f9f
BLAKE2b-256 f33a9789788403b4b9f35b3e79e4f0e70a29858d598287d687f8e84c0e442e37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8aaef3ec4bfcda77235167688ebc26627c44059505fa01db03d3ff1abe7cf20b
MD5 fb8711e4e5cdf360a6ad930248455e13
BLAKE2b-256 5baea9cd48c1e36aaa67cd9285ee5619b1399cbd8a1cdcb6f401cfc2e70d4712

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 035fd56c61780ecb3cd41dd304af9f915db12246942a93b485fc00b4d6d42ce2
MD5 db5f62fb962318f5ff0289b543dd4ee7
BLAKE2b-256 0e27ac97d4187eac6c39290824f46c7211790933672de3870bf253a052a50bac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.9-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8fcd2e36d85eaea3301e44ea2faf7a5b5e7721014e553d2840e24af0076c0cdb
MD5 7124baa5d9e2f41ab391c828bfbfa3d5
BLAKE2b-256 f5617e3f84640097f5f07a1c963fd9828256ce95f92cf66363cb640685f830a2

See more details on using hashes here.

Provenance

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