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.

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.1.tar.gz (171.9 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.1-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.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aerospike_py-0.10.1-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.1-cp314-cp314-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.14Windows x86-64

aerospike_py-0.10.1-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.1-cp314-cp314-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

aerospike_py-0.10.1-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.1-cp313-cp313-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

aerospike_py-0.10.1-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.1-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.1-cp312-cp312-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

aerospike_py-0.10.1-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.1-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.1-cp311-cp311-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

aerospike_py-0.10.1-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.1-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.1-cp310-cp310-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.10.1-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.1.tar.gz.

File metadata

  • Download URL: aerospike_py-0.10.1.tar.gz
  • Upload date:
  • Size: 171.9 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.1.tar.gz
Algorithm Hash digest
SHA256 9c9c91d1413597d7ca5c81a7f3dc15502072f06209f63d0171eed551a1268180
MD5 bf17adb7700598374a15c24b7fcfa0a7
BLAKE2b-256 2109700cac923d48c5c6cbb20b30b5af42ca36e5532af5193c30a2bab887e500

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 560aff6829154a96115669bf92fe69c71a3ab35765f47e0e1920b7fed498a418
MD5 ca49857898588657d915b7fb53c4da47
BLAKE2b-256 c83f2cb3307ae6e74c2d2702d4bf3e3d76e6a2e1219b8a750bcbd5aabe8d47ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d4c956af5b45f526f11c04c09642b7ef0641d7a6877454f3449e4f811eb3d59f
MD5 342985f418ce241c2302078426a24713
BLAKE2b-256 64f9ed5ee3ec265c6641036a2a10684ac7359c62f02bfc89ca6856241c2e0721

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 587a5ee9edb78594e4344a435ca133f855fbf1a268b5b21abfc6c5fe7395a904
MD5 0bcec6d95481144ce5d2e7261c232a10
BLAKE2b-256 62e7ca87e9b6f00c40995aeb28480ad1a5b543b57ed180f0127ccb6499a175a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cea1e1701576161c96489ecddd22b9d1dc253aaa1a35de05f90946153dab8236
MD5 5eeb1e2b98134f3dc9c7df753a148658
BLAKE2b-256 2a1abd980628bf035f5382ac3eafe4756b3344d17db5e6dc94298c2f976a2f1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 630cc065b7219c73fe511608ab43e05fa1b29aff7f02848aa27e4ca75f6d5bb5
MD5 652d7af3e58a22a6e54d2670b9e4b22e
BLAKE2b-256 1e99ddc2181b3fbfa1f0cd2c4daa6b23f86a96937f34580a7e399cbd6c00bbfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 96ae75463b6e58075785a85ead8bf69aa24e813b025ca86c9dad8cc9d05df9c0
MD5 f1d1843e8d2803b80ba566ae9b805146
BLAKE2b-256 c8f40fe18ff6bb7a079bc04fc68f7ed7ce405cb56dd83d5e869963ca0f2d200e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65cc5c4d7549f56cc2febc5ed7d9021b9b4d03b799dbdd490454061ff5ba5db7
MD5 42e6152eb60ff06b16884ce0338cc54b
BLAKE2b-256 3e851d895d6d56c6a1554fae03be258769d21579dd7accc12d8b94b5ee33fd0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 452bf379ecf16d23ad68288309916f423e0bbe3d8f10ada47f3f0c508393190b
MD5 ae28fe2cd217bcfadc90b92dd55aae3a
BLAKE2b-256 ff70e7544b626ec8430e30760503a71d356dcac0c5a6d7394a7e3ce5b0708410

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ccc87f956c717a0e6e09e54c62e338ba99973beaa8581762054a0a19f499500
MD5 513c8927657063d2d56af53811fd542e
BLAKE2b-256 c907922db06104f6283d8553110264cebbedcfbebd23bdc98df92275caa3eeb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7e1851ef5ba8669784d4f01264a682445882c3e350a3d348f3c446ff0297af7b
MD5 03e7193d5587c61d22b8c0115f68c095
BLAKE2b-256 f6bb13f90c4c56cdff2b6ba006f4ee23d64dde7855c5bf5b73566eecb02114de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7b377a81bba313f9b734e5647c8f922557fea8bddd4c73100de21ef4ef967360
MD5 fc56a91bc37675efb3f114042e9ab0da
BLAKE2b-256 1c96a5357c7ee5590050b0b8de164755aa0ced56fce5dfe8542a2981596fa23c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4da232e82452c8b791fa53c1a39d34707ae8a00939c579668039e70f5db79a5
MD5 2449de8e3b729cbb6f4f2cdf350916a0
BLAKE2b-256 fb83a5f9b702f1e78b05df6d23d0addfe572dce1b43b294edc52398817cf6eee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e669954fa7a9e793af8966cb3df35f0a5ca01c55b356b3c0732e8d71330bbebe
MD5 479fa7ab6384b6e1bb30008b8b53ad2a
BLAKE2b-256 91658f23822c6da994057bf533fb34a284739deb0b027e3159655c9daf241f75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c97fb735121316ddfb6faaf75861850a49c8cbaddb7692633f7798598bf6c728
MD5 7680ae6eb066289a768081956c10c5ad
BLAKE2b-256 2647344ed99744210e9c142c1e0979173db41db55eb16baadad24788b2b95b21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 20679004145e7d92a43662684cde568e8e974b05764b3dfc8b45066a6aede568
MD5 97de85e256a216cdbf2861aa5aab487a
BLAKE2b-256 de68ae582e5a56299a1b6d7563fc17fb384c70de896f449e96f376ef7e14b1c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85d0afc1f30ec40c09c7b372dcd3d47ee10e28227218df9ab333d7fb7fdb907c
MD5 fb8f0de54f70c0d3fdc0582bf6628bd0
BLAKE2b-256 5ef8683206db55bb45a0c0d62131d8776003bef6b21a5bc522369bd11b6889e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a687460b0500a5323a2ff38d504e3f164924b4871ef726a290006ce740d4d658
MD5 5af970a2c65f40196e94cd8025952548
BLAKE2b-256 81834f5d7e12907df2c651d6b2a0260993a615bc2bf528681e2494bcc918f14c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e4e18fe404f15dc20608f66abd1cd93880063b26365a964419787e4607996539
MD5 a900ef29e89ed535b1da951316f67d32
BLAKE2b-256 2126fb0b8eab229f306108e6dc1b6cf21edf3ee8165d32c786077f8544a23c8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 46e75f3eac9674ccb4fe9573cce68a5ada305fd885255c824bbe7ed713a8b183
MD5 87eb53da167f18513c549453b5990229
BLAKE2b-256 fe353a081bf6abc4d108510b3310d853a8f1f5588b2298a3c45d3e2ddce03cfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bc580e99985099b7931b4402b9d1efc5b0a883c33e420abe364afb3538e7649
MD5 fca7b93a876229f270db53f7b1dfdf55
BLAKE2b-256 e6499e19a8f9d240b4a512977d0e9b627c7befbdb762f6e2cdf9efe91048c377

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 131d09086d9223d5995f99136d6ec06679c0b1aef7bdc61aa9936c5aa3458657
MD5 0279583ee41d860ad888fdb42fd9bbfb
BLAKE2b-256 c8acbec75434b8a20d6d26f2ad40b343702899a4e69232c864a3bf271af1883d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b357a1f918aee7017a049186083f2629105ab610e7449fea8fb7677ec60b0625
MD5 5848b9f95f5baa285e634357373cb3d7
BLAKE2b-256 065b2f2232748bf43224f05083f84dcb7abee482f2bed352db7be8ca9e3a7c88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7c5acd24295dc4e9fa61fe9e0060d8bee85aeee5232d384e50c1c2fc1d2399a8
MD5 11a67dd93b2a53f219956a7bc1d49df0
BLAKE2b-256 19c8ae0dfda55ca54d51b41e9a00411897fb37f8fb385b98d8b337a077bb317b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25447106af3a7d732cc2f1f61ca952b0ea654855180b16271e96f2fccd2e70d5
MD5 9b64bdd360ae83849c57763a5e256049
BLAKE2b-256 80e9e97cc1dfea1a8085bb8bd8d205444744a54411f4a7538d0b4cbddf05b788

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2539a5db23028c58059bd881980c78c5f9f951ea5cda9b4ec3f2a90e34b271c9
MD5 00231c764a8ba11fd07580e11505cd07
BLAKE2b-256 457a044cf9fc091b38c15b9c377c0b1b019c82d3a20cbb5a7a6d4c1e6dd0a9d7

See more details on using hashes here.

Provenance

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