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.

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


Release history Release notifications | RSS feed

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

aerospike_py-0.12.4-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.12.4-cp314-cp314t-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

aerospike_py-0.12.4-cp313-cp313-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

aerospike_py-0.12.4-cp312-cp312-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

aerospike_py-0.12.4-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

aerospike_py-0.12.4-cp310-cp310-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.12.4-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.12.4.tar.gz.

File metadata

  • Download URL: aerospike_py-0.12.4.tar.gz
  • Upload date:
  • Size: 211.4 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.12.4.tar.gz
Algorithm Hash digest
SHA256 c9418afc536cb660eb5a00b5badf9718df5dee3697c93908dc7f3b0047d32a24
MD5 11c1cdc3025cd22dd6fd6378502d513d
BLAKE2b-256 04a39aa39a54b76c4e3cb32b6f94334feac4cc9d9793d738c3e753f2b22ad31d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d45a4a889850c0a998b60a9a2d02e20c135f9ff78988d350c375666d3aacc15d
MD5 5a2b93a13803c0eea90316194504917b
BLAKE2b-256 cb6772f24150387c15803b8c9f4c5d1e1c3633edd46de128fc20bf38cab039ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0b755b3663bb3996ff29cd119c300ba63909c1be448730e2d1e7fb75a74cf64d
MD5 e4385a9baddc3a2d08279b182fb42755
BLAKE2b-256 6e5233165e3df10bb7ab18c0ec0bb553e2f2ab78af196d1ed4f9c69f44ae2918

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ea693c2704e57d7f4ef78649dd6c83ff599b436f7e265c1912b4bd00c547efe
MD5 593c9d585873799b0c5f0778feeb7ece
BLAKE2b-256 7b9a7b90bff192321494e99cf0da3830372a6e8332beb9df5a52c4b6d0f72cb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7fc0997f8ea7cc8c76f79ce73b68121dd43e95dacd7bc4911191f55bfb6222f7
MD5 097c37c392f130e3697fadee85d32d6b
BLAKE2b-256 256ee7b147b633aca2ab05ab39815317a489aa304a86f73fbcab1c96c022a9b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e327baedf2209ade84b1e400ae916cacf89f19362ed29362f9a624dc705332be
MD5 8a7cf959b1aa73ed400e88d60525fe87
BLAKE2b-256 f7f69c9f034c02a68d94d7c17de371a1b98ce8db2da6c66120ad2bfe85bcaa0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0995a21792987e3513e8b5c631408220fd02982e7a926585c10c9638b74023cb
MD5 1f9d122b0441331ba2d6ff57cbb4b084
BLAKE2b-256 7b7477d379e095a482c863b35edae004454b8bf3dbfd32544beae5e6153f9bdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3a10c836695d610c439ca281e2205268d40c03ebee01f37e0c5889c6ba6753cb
MD5 246196dd00a461c7a2a849e33494bbd5
BLAKE2b-256 ed95f9080b28a55398105be0ec3782ec6db8f86f2eb551d7a449bdcd4e12dcb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 924364e750f76d551cc898ee431db958b63df623e19461a5458ddcbfdb954ed6
MD5 52a6a5ff14d465bbe027cba2145c5220
BLAKE2b-256 549d6abec55940f304f9ef877d19181b8c5d3f80726b7b48fda94754d9616185

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a334c3c0d266f0b747de3a2e47c88c6e4f533b42c10d099e4d2e2b689647ad41
MD5 745a4c7573255624d7e8e7359de7f7df
BLAKE2b-256 b58d32aebf0dc9366e53d4164f152cca9092604e2e7e5a0168c0ad5324a869ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 80f5700ed1905010e667394f0d16260af771cb49a82e267332d2ffbd7e3e5e38
MD5 0e78ea5ac9917d9cea74c5f26e38d344
BLAKE2b-256 41a30386569b59c7077b904353d614df51f5318cb15ef9291a850ad2828cd25f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bfcf0a1fd7bf2229835e1038a853cca876ddf5d527e85bab2a13027d6c6c3a48
MD5 cfe5e468b91ccdf6b1fac021db87cfe0
BLAKE2b-256 54094b2bd410dea9ab7abece86ceaecfb400965b14915f2c5b65b566f144d403

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21245c6a842c2157b558877a2bdac7248feeea0c529cab4f772ab70d1d8ec810
MD5 5125b82cd81748c42b4afac95c2af76c
BLAKE2b-256 6a6eea7c491c7f4b61317580302d71339db9262eb4e78f6de750522783d630dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0fa45a3973782e25e66356a4e8455ff71f3a805c46f56924f6bcc16f9f3d2964
MD5 12a222595f5d937f70aa6539d4ec23af
BLAKE2b-256 8a7146a5256f33e2eaa510d5d3078c4ba3c66bd16e9b6956d45011d1d4f4a3b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fbe915fae7634247daa025a8b0fe0f9561fc3dd70d820c9c2c363ff2cfce342b
MD5 598d9655d6f6128c93218adb256e4fa6
BLAKE2b-256 9729402d82884770ea9bbcc07f8e66c624e05c57e38a2eb06a52da15c7fa4e4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e2275f4b2631e75841b943496fc593f0789fe19691b439713c829067721d2e3
MD5 14c8ab5bd20665eb91d7a99028fcd7cd
BLAKE2b-256 3fe2ed8cb3e035beac86163017e428229b88735c46f271db745c86fe21e2d08b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e0594d6af5a3254e548ab7e19d8fdc9af5697bb496cfe4b4a9c96b14a2eb1072
MD5 dee5f4b34fb0dff0f292072d1751c9f5
BLAKE2b-256 688f8bcfe7e472c6e4b2914bd530b14cf6613c56897fd26825c44eb91fbffd56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef22b5d8ea81b6aebb72590988844b264c40fc166efbb3d967232c3aee9cad14
MD5 e0d36c6599b29031cf673328e9f933df
BLAKE2b-256 cf772ce343281ee4ef358d2f86304e0658ef860804d1f8d28aca813be8b6aac4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 52f355211f865529515f109edd5b26ef31cb156fccf2d988fbfa54b420470bdf
MD5 a193e8c8f645e2303aca05f0dd902d5c
BLAKE2b-256 8d9ef7f4b7752bc0c05c4e5722122b72005b780a589231cbbd3950f39a218fae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 151866210073a95f809c5f106b99f05a81975d89b0d312553a71cf2ddf6560d8
MD5 d100411b312e19c08384e1d500b7db75
BLAKE2b-256 4afd32a89d9f2da904e175cc0cbe1289e6e43a8e45da432ae6fbe6c65d11fe4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c5027bb29e59d3cbf2c460fd5eb98eaa60f8121e30c6bcb3adf08501fe647362
MD5 74e784d3c72a8be9bbcbd7e26cb55f40
BLAKE2b-256 5302fe6d618685e0195daaf66dd296579ff36c072b3f1e9013c3d50df16762b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebffdce4081e4eb32f6fff035a2aa1017e75c809b96a49d2ca249697e6b5f29b
MD5 cf210f688725c8dc1c3f6d942969c8a3
BLAKE2b-256 eb9fabfea1464d34d30d1c162035faa1dc69823762fc308d5141aa3312aa06f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c6f4774307c064db9831efdb9381509c81f0fd965d1c42d73eefa21c267f124d
MD5 67fdbd0ea732bbfabab521866720cee9
BLAKE2b-256 5a285e7f28cf5f5a3e177ae5bf0f4944bf895505c577ec14b0a025b1209f0d20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ada30cebd10b9cf3776a266f7aa2d87e5a6d8901f05cc08e021a42cf1d669b8d
MD5 244580fee43edcc24ccc74cf438519db
BLAKE2b-256 563e6491cdb64b40f286ea9c45fd410ab66e59a60c4b774f9cbb5b5d0204ebe0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bd2cbff97a39279ec9de45e00d6babda7cae8c3fe6235d3e9ffdf323241f5bd1
MD5 a2b593782e31ccaf05750fe32c956fe2
BLAKE2b-256 e7610a05eb1cae1faee2be22aa8ee35e383064f6b8c6c91ab8585b220e912edf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a523435ea9e26b58a1d342005f3ac5a383e0c416840a8c7bbe0f72fe504180c
MD5 c5a43fdcaabad12162a4e017725ce888
BLAKE2b-256 804e7a0923245641e759363cb88434989763ea39eec0af95f71ec2111ed420cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.12.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eaaac39858a1f487c8a9c7b4100c380572e14e7dd1d8b95396fb3beb06a3a1ee
MD5 31558da4f84eb3fe8bfa421ded6f71ce
BLAKE2b-256 338fe22836bb22e7e57f515c8243cfdc782927314b0ce5a0b40471f99affa954

See more details on using hashes here.

Provenance

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