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.5.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.5-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.5-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.10.5-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.5.tar.gz.

File metadata

  • Download URL: aerospike_py-0.10.5.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.5.tar.gz
Algorithm Hash digest
SHA256 f391ee385da530a48b5b1ee85cbd4b780424456a283eb2cd9500cc79b44e11f4
MD5 0e60775bcee5cb7642d5b897a14ae2cd
BLAKE2b-256 57381767ba5f73c435ecb5a1a30d137909f1839abaa5a0f0dd7bd10c6330bf99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d248b15a970366fe6f1db2219159e5033217b91766e73a972d8f5110484e48be
MD5 11e86e7a70ae784ae11bd98372b53286
BLAKE2b-256 65ebc6ced5fbc84c6c95f8f2db11aa3934725925d635bca48f7258114da92bd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f31db9e44b5d4e64f7383caaa5e30f6b0732311407d480b9f4308da69c3344c0
MD5 45ec5d090a7f3f6aa1afd24497694ef6
BLAKE2b-256 76eabe399d198aefaa76266229bb1a7fc27e795b93554217c4498c98fd7ab56e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 57079e79888c136a442749059afefea7aac625a43723af428e3b10e7d0f1c703
MD5 5e78b337785df8f8371fdf2630f568e5
BLAKE2b-256 c1eb0e17c8eb22fa47da7d22a2f18d01c10d4386149ca07662ea2c81d69a8910

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14bed23f465e8b0f7fc200f2e2663554580b28503ffc154dc79c22a0b466cee4
MD5 4ec1de85c65bcd1def0ae75569bfcc12
BLAKE2b-256 1e36b0f77df2c0080a96798dda5ff9430c3d1398ebefdeb40885b7b8662021cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c74754f6587f72f2f1e0ed0cf754e3b763bb9495842593aa76d80bbb9f91c8fb
MD5 ab1df65e19431e7839da493dac5b936b
BLAKE2b-256 fa6d90e24b559e2d963f8ef4467febacc177cb916bf666477a87c81b430638f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 866c9532084c3018a415574c82c6b3eba18127f5da0a24f0a9af58b755ff639f
MD5 ec74ae2f3f4d3be28b551823c51d0cf8
BLAKE2b-256 015d626709f88bef78e3e95512fd6e109c4bdceeb767d81bb09439f74033a35a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 96ffbd8c7d25c1fa662084d0d65a63a0e3b577b909cf335ae055d2f6f052d3a2
MD5 1deec76b9c78d539ce05b05277daf1ed
BLAKE2b-256 e32ae6d184b8a32e0436307a1c060dfe66c223d6ac4f0354252f389d257907a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b914610dd7c67085e78d50667f86819777ad57a4332d99cac0379e939b049cfb
MD5 eace844eafa458e79bde1eeba7067465
BLAKE2b-256 dc41b26a8248a683b3e9297e2e534c7cefdf9d963a639a99480b63ead0aacf06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d3869c5889918366533dcdd57e24c91f60a98c73cd3a417abdb014327c73c82e
MD5 57a36c07dc92b979231bb201b68deb0b
BLAKE2b-256 895108c122227c162f64245447b3f70b1860fb44b5a76e3b1e0e26556370dfd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f3fabdf5d3d461315831af7abfca78d4b49de0c651304d4495c4fa2a852a0e7c
MD5 d217790a867edfc45f46f5aa2ef4491b
BLAKE2b-256 48914db66d42c15d1e36fd23b7f227db0730937dc6416cc04608185d7f1bc2ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3768feb31a529c5ff0ebf66b88ce09960bdf96ed340a2d96ad4b99ccb1a288bb
MD5 852f2618f128bdc3d5c2d6c1f5fbb3bc
BLAKE2b-256 f8b1caf597c41ac68bcedff817c460f1f2fe27d27980fdb8aa6067861faf0809

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c91c530964c5baf56583c304703b82e105c6647e9452a121402fd37ee4530fa1
MD5 628f51d47207d35ba27ffdec475dae86
BLAKE2b-256 b073816c891ef36958e769485e7cd5f19d610373b3372016a03d92dece3f5235

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 874a2aa9185ea24f4727e5380e885fe55e7644912baaeece7dcf183188073ea4
MD5 00def0c18adf53293458519201a0dfd1
BLAKE2b-256 2a1da8e3287e5db39f8d609b081d7cc2a36a904831a261400691028c826e8e1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 280b328653eb5bfe1872e098bc243878ef4b83195608993718c7454c85fc5860
MD5 bde448ce4ef0af12f2e317d957b8c1eb
BLAKE2b-256 f31690a294be45f1f73ac1b999b9ace525a7e1811e259b4179521107735dad5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 589790ccb9331b8c0e11db183f424b1d10c10f2baff8af0417dd031fbd77b5e8
MD5 d36df266f59ff3e448657d606ad593c8
BLAKE2b-256 1248b16eeb19d18bcfd86cd156163de7714dc75158646d93197d292d99d600ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93babbe66417ac41155b4d8283eec66d3790b2dd3a4c56e6c69aaaaa067db0c5
MD5 cae58cbd9fb2e66d9e173b79861a199a
BLAKE2b-256 65016049ac48773c15463b3bec1f8651b6918f19960267d01c5d77420de54890

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 28223d73214e95b0ca3161d83e656c0fae29197e510bff55caf5a3d5f1ac1d77
MD5 e69ab40c109cdfe7e4139aa3f65675e5
BLAKE2b-256 0105a88feadc99fc1a8a9793fb9899aa46dcba3fe7d379f20e4ccbe16d4f7a73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 da34f6d75bd5fc89a91b03344da2fab9b53879647e30d32206f33ac8a5323630
MD5 22e0209af7b2852199e8f4c902b0f9f1
BLAKE2b-256 75ec2549e0a0d028d48b20cd2fa73307daf8e2339a65dd6a1f30cb6aac1926ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 618da05f6cb21a00a05d466edd773b425563646023c3a5f78a6efb2bf6f48f24
MD5 73de2f6a243b31c3d359c6803b294171
BLAKE2b-256 b926e29b255eca46dce7d1fa6554bc397bcec4e21927498dfc11844168117ea0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df5a0343468a585952c752f3927af887795f069453ee24d9442432e17ad2f376
MD5 32f2ac5b3836627deaccd3abf6b662b6
BLAKE2b-256 dcef166a0f4307bf2b65bf79277810610d7d1458079ec307489adcba28671405

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aaa6ee483262fd2d44ba447ff982043160815c9e272d27b907bdd019afb7fb6b
MD5 e5f45323dc689fad2304e5679a4921b0
BLAKE2b-256 6befd7af8ba118adf58c1f2e51e50bb2366c666248fcbf90e1aec4886b58a7e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba852acc6f1bc020f330c85ae70394b44aeffcbcb5c58d8a2129e097815a4592
MD5 00faf3f77d458cf470e0531eef9a832b
BLAKE2b-256 ea9fe4e13fd11f7479d7d30e99bd5ba4e9aa6ab024acf4812f20f48b07f7d109

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 210d8ad102d509aa06380d86ae66b0d5196093ce1d03b02f0c34d86618099d79
MD5 58eaf616fb0f5aa6e6d2254efa9f227f
BLAKE2b-256 f79b6186a6cfa60a98577dcc7784dd75057eed2287432968702ddaeaf99bded5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45b1ad68ec1a6b5bf299293ab82eb561b663a4720a9a9c1329ceecbf4c9ea50b
MD5 9e482a8d307deffb4cfaae9d633fc47f
BLAKE2b-256 d7e8a3bdbae45d032253787ee9261816e0942fa49e17ac7056548525aced0498

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e1a14b8b88a0758bc71e5c65e7b90465bc0790d1acfaa79812166ad20d6aefbe
MD5 7497dc59438240ec991eefc22abb1ece
BLAKE2b-256 84634840e006af9beb7ca229c3f076e6e5c7c031ddcc98fbafa61fc8c9d4885c

See more details on using hashes here.

Provenance

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