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.7.tar.gz (172.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

  • Download URL: aerospike_py-0.10.7.tar.gz
  • Upload date:
  • Size: 172.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aerospike_py-0.10.7.tar.gz
Algorithm Hash digest
SHA256 61e50e0769e5da40d20414ebff369e554f11f188dd050f1b4e7ffc80f389b8ab
MD5 dad993d225a34e4552a65d854f979da8
BLAKE2b-256 a7395f9ee972873aae3c7391749a316243e35cc9367708837ef3d72f35bb2ca3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0650b38ccb70906733a84c456d7aeb0870c1f1812aa1b5d8051666c822d9f8cd
MD5 aed7c12983ad1f12f89ddb58a243451c
BLAKE2b-256 c2e265c0439f16e7adbac2d000a7e2fed1ed4e401e46ab4dcb52b25c218533d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bcdf5d2ca4e2a8dc2607bf9b1ca7c61624f3d3a5fc20f4df5c410a6279eae4e5
MD5 c1a84b566fc9a8a36220dd3188d41ef5
BLAKE2b-256 ca046bf5268803c27718d5a571022269a8353c46f55392826cad0e068c76c533

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5f6ea92f475148d46ad82524480a53925d4416658d69b6369b76b72a4eb00813
MD5 b60491926f03faea775f7dee5e7d78bc
BLAKE2b-256 a90d8a775ba211f99086cbf7c8f6272f3786503c217b2730fff56f8f935c81fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5943fade4d4162295ee98bba4114f25041c421f7cd5a0e52489049f6462d7ff5
MD5 b326267787ac40a205e8aa6b78545993
BLAKE2b-256 87ad8915282bc87b9a652f0c684b0e0de0d6ddb7b27e70c4d8ed4cb7ddc14cfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18e690aefed57c85b35e78a16e7c44a16d41bd535fe4956f27c87309450f1db5
MD5 2b5a4881e778542235834fac3f2a8ab8
BLAKE2b-256 381b041408d36c586f619a9eb434fbbb52e7b60288f547445a32e84af47198a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b035ba0b8b5a115b6a9ec3958ea9f6584e077df849874a4989d4ee5c0bad9dcd
MD5 3f972683fc39577e62de4bdf1dd9c80e
BLAKE2b-256 35704aba5deb0685c60e65a4a23c8afc82b0d83a4475ceff70b2cf5df5781415

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 49bcea1474fc132a19100795d33744a54fb3cdd0454e30173acdb2bde9673228
MD5 bc990c65ae9fe8cc62cc7b420b726008
BLAKE2b-256 ec925620d9135748edb1b3b9e08ac2dfc238823397e59eebfeb0365da0d10fbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 34b2fc2b7f98a9dd25dbd57aaf2fdde31b056d6ec998da59a02295225107eae8
MD5 29e52dc889ec208b6ee3e15606424f85
BLAKE2b-256 da7519ab81d91875359081637ed9c8615a9727f3816a28c4b8fef3ea02e923ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d368c8861ecba7df1c010aa5d7f13ff02fabee70b8aebdb956b9c37cb2b8c043
MD5 df6401de033de704a01302487905c9aa
BLAKE2b-256 da52e7c7db8ffbd3c28b85949fb2ed22714c8235b4b1e2c82ffdad18dd5d368b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 09410b20f1ac06f0faa845d294db3995698c7849612fc5fb1638fe1a3bf756fb
MD5 b5138ae26f8fd58975fdfa72ad266132
BLAKE2b-256 d332477f3e2c909c498cde49fdc7ee607c64b3267e8e8dd0c0f58240708b2ad6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b9b8785f6b983e6e4bcf9fc4cb850ee1f055333845f4f5e3707763f162c2e2e7
MD5 0f65273e4c88a79d8b8097cdcd908e66
BLAKE2b-256 e5d8c09ab99e69104e7afca221d2fcee575b14faf80e93ef168df9fffa5c43b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc34632791f1ef7dbf2ad5faa98e0cb9e61f8a8dbbe4d731ffffd46a828285c4
MD5 08c3be27edc5a15a51e7af6fb0f64e74
BLAKE2b-256 973e15f37ec33795e3b52a0c677040dd571a82aa2410f0deb5a2e76117b6f365

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a364d4fef710a958244e79da194efab7d0877e2d2230b3b69a5eccfb7cd597c
MD5 fa9d87c16c84ddc52380caed8deae826
BLAKE2b-256 2bda72e747478a91c41c071933ce7be31debbaeb06abc4bbbc4d3d308556c6f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 08853f46cb08aa6f83572c6be69c20272a99b0ed70e5220f64ec9e473fd9918a
MD5 39fc058ad9c97fa594ae2517f3423429
BLAKE2b-256 8e03c8cb776464103a6661a4f2428bce7c7b54f277b30435ea5f5347554f5def

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e9e7131d891c207f010b95f382dc21ba0ebe267d409153f26f78c237bb9cb9a9
MD5 9bd2211c5a785aa7f78eac42966e2aff
BLAKE2b-256 8c8a2bc8e8ec5555bfe3e68d3012d39ebc885208df3554cffa49152e311b24e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 10c60f34caf883f4021e6ec4494304d9db929c85580759a5095ba727db230c9b
MD5 675a4fe85b69ba1d58601e3db674ad88
BLAKE2b-256 78c39bb78cf5443eb26f3fc0d4fc40adf14814ec18d1bc40474036c48e361dd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93ee24e950335a3996fc7d7f783e4756310e6cf01ffbbb3c62a1f627300e1b97
MD5 6b6766ab78574aea2f7e3dd6e12432d8
BLAKE2b-256 cc02798e390414ad3256f6c302b3ce2a59797e213d1dd843c819f759b3fa13fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1f9cb8ba5b9564f052ec17e8be12f71b86428b761af7a8c148216cb2007639c4
MD5 94e96f4663e16b50dd4a27cf6506cf02
BLAKE2b-256 b5bb2b6aff30424abfde77dadedb99bed0b6eeedcda0d738c94cc2b0dff967c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 890d063bcd15ff16e7ddc2a34da24a80c0b592e814d8310940d45a38ab883547
MD5 44c22a2a283cec8bb112346c47d0caf2
BLAKE2b-256 bf95f0fd9073c66221dd728393265786ddc8967b1e95816674a4df349af780c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 649278838c42c7e79fb14b70ba4779e9aa534465e7b06eb6bba1c09064c44f41
MD5 df8c5a08563a334e61c402c280163e89
BLAKE2b-256 d5a13b7a64577fc2e5b2ad7371c3706d388b782541c01e576f5f3de08d488355

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cb1ffbe99c8a0a9a3440bbf246bc5f0ccb4804e83f1afab7e182ddcfcd38411
MD5 6c90d45982a00098f6849480b092edbd
BLAKE2b-256 fe87e842ab7babf4ee176698635b5f0eecd2b70e1119b747d041d5bd5c2fdc8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 181cd56425bfbd6ffd7fec8cf356563a7d89d3a295409109dd9545717ecf95d2
MD5 9217f483f1dc8b93a4e5dd56e1bebbc0
BLAKE2b-256 c9aa4ae9c69b648d3603101e6d2f901421a7a0ed1a68d298cd7b143407b8f918

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d1c7527b27c559bc49434a98ae7b8335e18887ca673cc9ba5d406ebd8aefe99
MD5 4e5af9b086ee90b0dd5968bc0eaefade
BLAKE2b-256 d3a57efa81a7561a6007659512d90caeec31ec9fcd80f126e9ad901ac7d78849

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c1b04f3eb388a224322ea8d1d1309e0a404635057e57b69852cbb8f530b5e4f
MD5 9ad29432560034f585f0e5bd659d9112
BLAKE2b-256 0f2d412018597d8a776d65a4bb27346b8e1ec5e2d5f4242f0ebb73c764f5675c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fac99673b83afbf9b0e4e103985df525a92ad1322e5bcb411ef832986979a0a
MD5 b196e4b1f4c32821d4db32c37bae2abc
BLAKE2b-256 6dbfa1fe33b9e1dcee9e600b818e7cb4de988f11794f85d6c69c253ba2c59fda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2d549d89bd3216f85979e5ef4915b03f095e3d7a5170cdf321a3361e8b3a14bf
MD5 cfad560030db24dbf9e1c7b7c223007b
BLAKE2b-256 88770f7eb214a75dbf4c6ad860f629d0bb9d148991f27d2628195bfec3bb100b

See more details on using hashes here.

Provenance

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