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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

aerospike_py-0.10.10-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.10-cp314-cp314t-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.10.10-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.10.tar.gz.

File metadata

  • Download URL: aerospike_py-0.10.10.tar.gz
  • Upload date:
  • Size: 181.3 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.10.tar.gz
Algorithm Hash digest
SHA256 19388af69996043eda329afa3e3f7f95a49d550d77dc3523fea04de47ad72e9e
MD5 e233e6cc494168d4595db8170c4d8891
BLAKE2b-256 0b7f9269fa8e24c8569ba0191226362d37f827e9e7f176f89beeb83d5641913d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb4901d17a1439b8de7375eb543c3a576d74acd7b7071a59abe2bc7f2e4fc712
MD5 11a57ab3918e35b79a8cfde17d040609
BLAKE2b-256 1aa51abad24f07142e283a0cc99ed2f02f7d8ac8d6b74a9655cd5bfece1756b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f2ff5dfec14970df7af94695e91953e361f59ae6818410a50c516bbd552418b7
MD5 bf150550b9db811c119b25319cd0ae22
BLAKE2b-256 3327e8e8d836c84ab640c68373716d4b64392d9a32577935fabd0299ba8ae160

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b9f8fa8bbf0fbd52cdeefed203ae62fdbdbc1a140b6bc9aa550610990bd751b
MD5 4ffbaebb8ecbe59fcdb01030b56a713d
BLAKE2b-256 6ea5dea98f878d7d9dd84117a37e400b1bc1db7b6265231a93d65a55792fd54a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d6d3e8d6aeaeff735e060939461ea63907a6b8585d5a55a8b1b4025132b48c0
MD5 0a66a867c67fbc853517fc099c1e014f
BLAKE2b-256 f2f8f9e49d91ebc9d12b5382cc86f2ac0b95dc175f567f057af40258b477c962

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d89213905d6917a40423c9213f1fe709b458e597e179f7b558e7ab98cb644e23
MD5 93633c9c0f2231d32438703814b6d98e
BLAKE2b-256 b99e57302fcaafc0850f1e9fe4e94262bab4437039f6e9cbb21423d47ed64c23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9101f6ace32ec136fe570c371ba6f564b4d1756de6903ce9e75a7b618542921f
MD5 9ed4b517ce86d4fe79779d6437e82b78
BLAKE2b-256 c445a99431fa9949ab7be610681ae611d07023adc81e882b8158c0e3f31ac37d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 74cdb630781f72e951829b08cab53761e37bbd62151fd3f7927b1dd92d2a9fa4
MD5 5cc65f1f4939202b771639534709e7f4
BLAKE2b-256 92fc1385fc85f24a794703e43229cab4b72a9a66ad97d6b6c8a95786f1eb2166

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7da83cff2bef855bc7fe6350d903954e982cac217d402ff4bd7ba381f346beba
MD5 445ac2c181c649d0a609d01a28652843
BLAKE2b-256 2760be70913f9bace1555cc60d22fc2146c3e4ade978adb6c150339322033ba3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2770f942ec7adb8abbcf48cd3a550a5123f1462f43c5a4741396c79fc7b1291a
MD5 067ac80279c64738fc6794ea27dbdc5b
BLAKE2b-256 de07929c925972fb6578159b6dc441db1ee3074e73ac0a73e24be75a33f82ec2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3b3d1f87086a1f96a95ac4f4d18b6efbee396d6f7f70026cea525171d301a966
MD5 3587849f503a663a1baf6c1a2257fb9b
BLAKE2b-256 faed0f3c2039413e58b14ca35b9fccd386195daac29abea03145482715b9ef2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 975dc6c08c4c3b0f8c34afc547a1b86ab6aad4cefa0aaa53fb91f0585f9ac974
MD5 52680a64d1c92a3f72dac96feb828acb
BLAKE2b-256 6b6c457c0d62b0c72a6217892313f046529457db1420ee070d82df01de997863

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4f2e7d9b7da55e5d1d3318198bb6385d717958ad1d6e53648cf6de1b6a29eaa9
MD5 2b37c01070f85c87660ae04418b02754
BLAKE2b-256 7b2a06a88fe9bcd9be40a049c739937c5d73f5043a31a671326aac9210164608

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 549f6e0604c0a28c66a1e7e717a99689cde0303e4b8bcfebe2d9a0d894912aff
MD5 b66301bd41ac3bb0c7fa6fd9eb965374
BLAKE2b-256 be385d3bc20d85cb18bf32181c89c5aca11a586154da9288472abede614b5355

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e6a806ed95874899e19c37c758cc5a9bddcb6a70f525a0926a0daacc2689ee7d
MD5 7091112c549020bf7081ee4ae27f0218
BLAKE2b-256 b41841ab13cdc4da1db6013e6b3847fd2bc93a4d969af661b438c628cf654bfa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 222e19c2770e34a6391d240861cadb521afcf014d4a35978e13ba0cad9fd9a43
MD5 b738052688ac02d3e7555d3641749192
BLAKE2b-256 b9c4c663ba7539ec38e4b55024ebae1c06f3aaaf705346f754c5896d4f54e07b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 421e392e0a5ae5fd0eb7766456c4a11ea559194b3718b6687d54d956eaf5b041
MD5 d12bb9d837140b363d30ebd1275f30ab
BLAKE2b-256 bb2bbdd7127b1fbac8b0a7322e469de9a537818aa0f74634c0a8a8a53b97d3c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9cad902c7c05315e02721e29ef43550278e17b8ea437eb65b99bb40923e7dc5
MD5 9e3877c4e8a437ec9e6f124d7927f3dc
BLAKE2b-256 fe9598d1dedfb8146aea58fd34559dd0d346e230e8e4fd1d836da4f2952c6348

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b8eda2d8f938927f3f56e2a6938619d8e03703fddb0b8030f6e8ba7c862fc35c
MD5 d2762a3ccc895851c2acb756da59c25b
BLAKE2b-256 27cc5547bc47eecc0941291ffdf5d5b7e37457df5d4acfe7a13f3fc50b146fcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4aa2369c0bc97fb5e5f939ae817e80eac7948eef57a2a31d00fb14d185fba323
MD5 ff8354afdafb268603bbed89fb8fac60
BLAKE2b-256 7f49a8bf12a24834a854dd21c33d4a7ddd9ef12f969999baffdd8d4133dcb671

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52fe880d5eee6c15af92151e8d7721de609a1b82c9854d162278ded6925d76b2
MD5 570646fc7344612e12642f448eabb7ed
BLAKE2b-256 15f315fbde108289f1ac8374de96376de76fa15d2aa58e78ac8a1abe424c0fb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d2628dfd5d5fe360096a2adb0af6cbdd4ffd1bbd7483a3f4ae55a46117c2c3b
MD5 078cdf50cf20c78010fa1b2befb39191
BLAKE2b-256 dc49a4eecea1b3951e22f0485f77b8f58dbf2fff5b7359d9a3d6480cabfe8b3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 426797905ab42b8882e7d81eb1f3a0fb313d45fb444de99aef46638826331d39
MD5 00eb82b1679769113ed17414e9ee1a18
BLAKE2b-256 23ffb9937cb1f3b291f4863dff997a39da6a0a490256ea7ed5a53a1e0cf222a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec6bf023cdeecab6baa1f29d0ffd3e5921ed56e824d4120e701ee551aeafc8ec
MD5 6f64c28d65213c6cf6c9086030a53de1
BLAKE2b-256 c58a38eba4cfe1baf34fc34b316869f3554f2b4f05bab76d8fb9ab7566a90b9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1fba16ea978caa9f3bcf9ec8ebd89f60f0d09a5d6817bc07a2c98f2635877c8b
MD5 246fe1e01f703226c039b943b72ddf22
BLAKE2b-256 0bc12cb2c7dc45a440822064e44396a09ab94ecbec0e83cf31293fecfc30e63e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 184f816ad8fb8e7695aa32ad25a3d9ca7b8f6d822e5328dfb093476dfc91d959
MD5 31cc6c7f6cea989b50c00516814522e0
BLAKE2b-256 4566e154c59701ad21c8146e9b633f5c00afaf0128dafaba368c6fd8c578f3cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.10-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c1cf7fa374e850cccfd4c5ea46ba6e79555eb8fc41c83f7b2269224ee13bb9db
MD5 302299f6052aa1fe5aab07a23a5cfb2a
BLAKE2b-256 47c51e1945dae5dd7011128571d4912ec6c4011a020bf70dc525c293f0989de5

See more details on using hashes here.

Provenance

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