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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

  • Download URL: aerospike_py-0.10.2.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.2.tar.gz
Algorithm Hash digest
SHA256 24d72543835c196888241ca9a058adbdd522a5686e3d4a1a071b1c7a95dd42e3
MD5 91a2d61b18d6e1aec92a9701c6fb7237
BLAKE2b-256 d2cd56e31683d9adefd870bd4fbbd88b4c66f4d39b3817beaeb24d5f849c884b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8ac9e7ffc2630fe27e50c17efb755765143cf91bfaee15b898cb4d2fb598657a
MD5 00f5cb5dc1b4a8272eba9c7ec173313a
BLAKE2b-256 a41ae49d7bcb6505c2f4a7a881244fcccc4881e0cf12cc357ac2c173b6602c33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d3381d2dc6c1805f83abbbc5b55a4e02abd8b13402070eb1bbd1f45c5d7c0742
MD5 5378ffc83ec1c14a39698619c5724d41
BLAKE2b-256 3afdd1ef4b76761dad21299e1c8069cfb74ed2af187c98c1da88765a858a63c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f91da1afe061a117d09d42d950c320b76a064fe1b1dbcc6b5a8d65e3f412e475
MD5 392b4b83afb916b8087a7558a090e0f7
BLAKE2b-256 5fa21157846c27117ae4b1f037ae44dfa475672f0fe01c9c94d96193a16fd4d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2abfe845da1f33bfea78f7dbfa7c487b629f44ebd90821990f857f2fb0e5648
MD5 e3f0b1c9e31fce3e5303c7af064a382c
BLAKE2b-256 bc2cc3c81ceb778c002ef23789efd03b386ec37a1cde8e5f4f8a44fcd2a7c1dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d04ba2f500e6e375804f93d289c1fe902889831a9ec90bb4a59905c9a92fda73
MD5 ccd7ecfb2b70a546363c0b4ce8c3b793
BLAKE2b-256 4623684820c80edcbef41bc74a5e03ee6626275ed97b1e16a29f4694707ae26b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0c699f008fd4aa1c6be9d202ce97f61828375daeb7a90c30b3614473a672c3c6
MD5 6e77e5582d198349e2f497e33c574950
BLAKE2b-256 fbff064ab76949213ad6befb8377dd1ede1ba6b40ec324a0df032c876d42fe19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76195351ecf6939b9783462db5240340fb43d5677b2ba2220cef19940fbe4bf1
MD5 da1b58bd70bdd3dfefd60df44b4fe673
BLAKE2b-256 18ce0e8917386601a9f2b042c5f455b5f8fb321205498f2124a365994d214849

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 13931e00fe7d543267762c7020727f4618810d0d77e48f0a510b63a172a01b53
MD5 8d79aba1c1d69851faed42ad0aafb314
BLAKE2b-256 dd8b61b77a50fc4bb4690df5941a22837d301fbf3c0ded2aee3d66f569fd72b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b7996cb67cb977b2edeb34315c6f6373d4b08300c3cb65dc648851561d7179f
MD5 d5a01b6f2a6c7fb88d094262a2296764
BLAKE2b-256 ec660ec34f311519b2a2e71b5e1b2cba03c1969b51c2f3acb54c6e2e5cab4eed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1e81b540ae48bd4c2b8943d81020679b0fbf938d3b33be864c4eb7a37ebd7c21
MD5 7e55e1625578911973364b015d2d343c
BLAKE2b-256 5cdaf29aa6aaeb504d7aaf030c88035e3be67a2a7f2caf2a00ac5ee8e108e66e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0163ee64ae4732a373500043597fbfda3a06cf8001b20a743fd3d8e70754a9fc
MD5 61b4ac38a5526545f2f74d65260f28fa
BLAKE2b-256 e528e858b3300b5d8242b30126a61262798a4729f5e23430c783f8b4e87c0d4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ec724f5d37130f70d050574522e35224b57983d3d7f580596873e7e463d0def
MD5 5ecf26dc5aeb7797a294935a2cf989cc
BLAKE2b-256 69212bd91db7caa17b0dae59a6858b4f28785d394c6625564ea25ca515fa5bfa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 07b88b5b2ba3a637c4237fd847529e8ed1cf34137f7efd73facde3a8290af25c
MD5 c8f69635c72bac2e684c095dade8f6c0
BLAKE2b-256 65d1311c25fc8d4f93453389f0d1dfdc6fd1dfe09190a372d8fdf220d8535c67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f9409fd2428c662635588a34d7762e68ca2a4dcd25b852a35431ec984ce194b
MD5 7deca2c2cbf93dafae1a32f3cf3c9e70
BLAKE2b-256 8b60c8f2dcda725a05a3131228041ae5adf56b5d37c59005ce583c96d2715690

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 077a11f9ef65cfa6460b90fba02aa97fbf72905afc7e370b34cd7a0ee96d8685
MD5 9ed18e76ea45a332a26a33dc444c3484
BLAKE2b-256 7e5163243410211084ef7749ea36d45e42bf2bc6e6cd1d84c67eae5bcb01a8f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 373f36c958ec7cd317d6496d6e3bacac3e25d712c3643b1c2e498ce720988b86
MD5 76871eee6e79377572cf2b7e818c40a3
BLAKE2b-256 3e3493a186cc90be258ac7d6b3e6d1a4d6fca8337c62de1f5fb0b9c84ba9d033

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d4e127677ac573dc85f45817e8ee1a45efb4dbde7f6139653d63e9ddef1bcbd0
MD5 c03bf0532f459881b9c69d996902447e
BLAKE2b-256 2ca11eec762838a732e5a889fc305eaaeee087083951177b4ce0be4e22ac380b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 213f6b368b6fd73ce4dfdfd89b3653651ade4d1f8c5683ba597b6d07ba534f59
MD5 438726ec5b9db27e3d3e1f3fc2839544
BLAKE2b-256 081d689e230a10dfc0386ac977fce6997135707ad5d24898f16295c76f22e45e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 17f12deec1e1d0af5ba9c05f2f90376ca30d7a2081e46b5792f083c5beb32f9b
MD5 e2186efc02730728f2e44366b59e0d18
BLAKE2b-256 30796526d60fc1b080a8703b5e4093901e4f0310e30f5eade00068b04c582f8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f44b714b7264450b7e56ab8949cfd8cbf5ec0e920d8b676de019f5193007e53e
MD5 01afa15246002ecb6b01ec783c8c1cfc
BLAKE2b-256 643969297eb66028b28bac08ae5e5b1cba56a7e1dd3f25de03dc89543f85f5ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2d090da38aa80774779e2644fd4c682b95f502f766a10026cab28636c764441a
MD5 63affbd803ec4872f2a23484fd8d7d0c
BLAKE2b-256 23cc5cd2f177b0fd31ed5ee65ae32dc9d4096da50abe42b72d5361882c5ec21b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2fffe74303a7fe6de3dae4f9106f49b33854a8e1bce4345a59f9b56fdea61f77
MD5 40d747751bbca00e8cfe1e84dc6238ee
BLAKE2b-256 897b67d42a1f5d20a3071048bba7bf94bb76dd3533c778ed80256f70c4e8efad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aab719839710ab9622164ee091d10c5d642325d7ddf8c1fb0f99786b612af0f9
MD5 30a70daee1c02ae44bbc76979b518387
BLAKE2b-256 2876213b98c449a9285264e60623acd5b93a73945f0d96b12cdab29a1215436c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07443398cf47a525c3ea505be255b100cf0992f2346f97168806af7325407f0e
MD5 f3b50ebb7dc85ec982956591bc8a842b
BLAKE2b-256 cc852e947811c27524b186e842a2ada07469b1d344c08dcd978ca1ba2b981772

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 00693785694022719c75cbe218216af5f0f4030959713bab5ff6299107f84b87
MD5 1f6032ecef3478804fd72f3e215a420b
BLAKE2b-256 b5f39ea2a6873fbd7057b1ff942797ddc54b767e82333556e0ccd0e356d8334f

See more details on using hashes here.

Provenance

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