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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

  • Download URL: aerospike_py-0.10.4.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.4.tar.gz
Algorithm Hash digest
SHA256 b7020f6bef8288eab6a502b60107151465fe9c3676672c49c700cf6f05ff539a
MD5 e23296af0e6e0f2a852abfcd84a084f2
BLAKE2b-256 ef9eeff9803c0cafb0042c4b86845615453fa45d76344e7ab1f6e4e0b517acf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea4b9e859629dffad6e69e06984321f6bedce4bb0ab66bd4a65ca329ff6a7951
MD5 bdbf01685e25746123fd1f2de2a2f5e4
BLAKE2b-256 9827ed3ee4feab0d2552b78baa1f56b40625ae19a15865123cfd2d6a8185fffc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 74979f92af6dd4152bf26f54df31e3028e66a94e0e43f1b228bbb57511ef8660
MD5 68771dc5704192e2e8843b3cfd4d5ac7
BLAKE2b-256 a5d5948ba700dce53b9cf89c79c3ea4fe7428834dea2a56129e98b9a5fe430b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 09e498eed61d06f77f00c1a6764509052a9b419ac1827485479f59c77946740b
MD5 de468cef127d32fb55f75f9095a9e225
BLAKE2b-256 2497d176feae8752b6fa5b56194604c51c41799f283b37118c4a7ac0cba01a38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f302bd7db91913a4bd15e46e9ce824e3f46e7a125a9ee69a34eb9ee96beb23a
MD5 bb713ff72db00877d6f3bb5c73534920
BLAKE2b-256 a88e1edea0b0a1ab109c2846d9252794bb63b202522e15d729e1f1fb69290182

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eea477f423154489c77274f0a03c1dad89f258d27065f2cf73d29cec3fdd1dec
MD5 4662b7a92e733c404cf80eca7d83e9fc
BLAKE2b-256 6b776f9d4bc205e64fc025af0ab8f2699b755b6bd384229e0bfe4e1a0aacf862

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4f8818268f02eab68e93872a92fd29a793f3791d2933eb9c90590ee5a5f12548
MD5 5e562735ef124b7fb9536a1904f6b922
BLAKE2b-256 2837e3dfe6500437287e5e105ae0afa5f07af2c48383c2232a1baf7d28b71c1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 110562b5471303ac67f46eb77e9f72f3e5c89060d179c5066f1de88e620bddbd
MD5 ecb7d54a190d951dead9c94bac0cdda0
BLAKE2b-256 23755a6c870fbcffe1915043de7fef42314dd6a892300ff13724dc27a46145bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ed00093e59dd751ccbe0a0d487393fd8d890d6f13643ee00be88e0902c818bb4
MD5 aa1eb6834398f42a7b50549a3c9dd72f
BLAKE2b-256 7b3f40b783cf1c77c9d7d36aafcac7053644efd775d3c408a1525429cf92bb10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4f9bcf68ae2e0ea7bd236a1f801e5ee440c68751e64b573cfc96838596abc307
MD5 0cc691f0d6d005b54cb4531e3ec2ded1
BLAKE2b-256 85c61ea97cbb55ac2a6750e638e0a59bcbc5787d8bf8b2d70d0069e72a4a0e8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c189087b07ffd72c07149953b84cea45f556282ba5d4ddce7973ac7d643c53cd
MD5 b438ff6fceb3a3e778f4a2b5728982c7
BLAKE2b-256 2ff744be481ddb37ccc94149eba261589d7d59633a1b960ec0d68118d5223bdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c029c2db4fd808ba7460475424c4ccf954c09be6dbbec9ea9b63be917f5270dd
MD5 bd1c9dcace0e922e14397b8585976771
BLAKE2b-256 c59d4a9cffa5dc4e56fc52926c49b600b9ecbd42375983bdc917baa8adfe5e34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d65c97007fadfbccc77186264386a7d4372f5111459cdf57f8ee344539c7207e
MD5 a3e5e24d290b11682f5d8e1a6deff2a3
BLAKE2b-256 a1fcd9480e0060f6d2efdf10a2a1f6024243f4594f34690856bffb2ae0c16abb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fc2721cd54146c6dea16078a510aa1e3f2e1954adbac0cdd94bfa879abecc7ea
MD5 4865f1fd176ddb2eace669bdcdffb385
BLAKE2b-256 37d02c854d3c6bd307320271fbdcaecfb9a0460ed631faa29151d4739a6574b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2e88c7c76b67e7bfd0b916a0d88670e6779f36382d9f1306a90fde2aa5cb68e7
MD5 b7d8b3b79b717fec3b0708590cc2819c
BLAKE2b-256 258df7c1bbeef4b8b471d1cf50da8af2c81b48e35bf426e5021a7069ba974a33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a09c0e42eecb7bca4a94cceacfe18151c0b3b60f1f491bb66e571dd9e4845657
MD5 3df41f83988a67f44d9dd75b9712c4f7
BLAKE2b-256 516963c74f08529840183c91781b468ae20599319f105abc51e773ace1652691

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 469cf412cbcbcbc36573272292c346866c57ce1338099583034d3c20c3094164
MD5 cf1e6b66d75f02b7aa3d1300423639f1
BLAKE2b-256 40c22b0f3c4d069db80c14bba4a9c1f75de932781c548d1063c65d6163a805cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1b2fed82e7a32618adef20d7475d6a98f48cc0646fd9c68e3a9dac05da962656
MD5 a8dc226a6809494b0db7bb181bc84ba0
BLAKE2b-256 7459b19cf52a25cbed174b388cab05f4797805e1cf6576883effc22c1d7f37df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4f4d8d373ce7c7f87e105605bed8d85e5cab6fc11790f17b0f3e84f34da3ab86
MD5 29e3eb39ab88e158835b2d9d517d3a30
BLAKE2b-256 4659725a344c0612d2225821b611f81b8a038c4d812cded469965aba9c38a2d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 70247740844606335b9ee49d519cf81ac11c27a859232ee569c19ed39354298b
MD5 f30c9b39b3471d1b9017a347dce935ca
BLAKE2b-256 c148d7e0db561d973c43f28eccaaa2d4848740049114d89da7dab0625e8f65e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8cf393355ad2d9811cfb1b89e5c3a8f16fad55c8982437afc53bbc2437422aa6
MD5 a30cc350b5844a2c10a3e09a078d51ed
BLAKE2b-256 251959d24f475a7427536f989db27ac12d02972ffa7e6dca92771c8225ee3d04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2c32d3bd73be7ac59a47c2763848f7d640be551bdeaa1f2dfbfc87bab132eb90
MD5 034f5081d09e6dd10fa04f16547406b7
BLAKE2b-256 fc0b418ff1c86e4f85b245e408dbf9ecfcd58afa83743174a1b71c10a02e3590

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ddb46f5b99fe83541a361e2d3ad5f635e53061031bec39f8405d2ffbbcc0c143
MD5 bdaa4c83975a6fcf8bcd27e847a18f28
BLAKE2b-256 30a4bc943920c79097edd360f32ec4360d4a84e179159eec1ffb2712f8e452b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 07827c331a2735ea5dd5ef1bc29e912082d440e6f3827c4aa084ddd3cfe605e1
MD5 37b0ae9c038f32a2fd1fa520138270f4
BLAKE2b-256 a6af1620629900bae04c16d0932cece3057bc40eae0cb9314016330a0b605fa1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf23645a87234d23c3381fe70fc8fbe179d6894026411ac8828c631a57a8e6d1
MD5 b6d3fc58088cff8038856b526cb6fe24
BLAKE2b-256 0ecb726971daf6862eaf30534b5ee398ddbde8348dbc3476d2c77a138f2a89da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c5dc4ca5cb04581096a98b726ab8b7a964caac6ba13b2ab631e174383bcb9e0c
MD5 afcb601182f78d77b142be4fd8390cea
BLAKE2b-256 c1f744d60ecd984f6bb40edfa364827a8442dd0f6ba22f95762db3d664be7923

See more details on using hashes here.

Provenance

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