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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

  • Download URL: aerospike_py-0.10.3.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.3.tar.gz
Algorithm Hash digest
SHA256 03f490538760f67bdcd43386837a00402aa3d93c69055ea93ef71def6e03f572
MD5 1a8392b71603739959b00dc8c835b2d3
BLAKE2b-256 333b549f7bfd789ee5f7322032277d831c21ebaf0393c5d27b9033cab97e8b3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e4f8769ba4ca388d4b7afbe45b84225519a698766a98952b92289c30e147604e
MD5 6f62a39b7fc910e119f4611bafa066a0
BLAKE2b-256 91c0fed75c131cf5c3f2e8e3681f1a2f23dcb4bc49e80248c2a0f77b07247b2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 352cde14da67fdadc000809fcdb85e2ec1c05577ae1dfb199c4ee8c10337cbce
MD5 cd841211b68606242ab16133e234fe8a
BLAKE2b-256 b0e14eefd3527c4dc7a49dc879f20390f04b190d55013b3aa358a731ca8ddb53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d972e82f391caf682a96e381009c16aabe73adfba860f93f6db9629f5cc9a1b3
MD5 38fc1f5533e4f325d40603750de00048
BLAKE2b-256 ee3f07f3798d67576b1f3c6c5622452429dd7ccc9c423d34f4b7dc41467bd3b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3263fcc6a27bb7063eb15dbbf947c43be8c5a80052142fc65dddb336d3a67c9d
MD5 e932eb54c03670ca7fefa9e586d20dbc
BLAKE2b-256 6ee48fc20764af4c2945a1c4df1d0d6f19ccbedf0d39201a344e43d14f8d7450

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8006dad72dd3cdf420c337197d24fbbeeb6bece8677d342a47fe923d14f6b13a
MD5 e3a70f486e762af888af0f983b5fa2c0
BLAKE2b-256 4c66e3f1c3780a79522db02129220f5a8e553eeec04826bd5e5b8b7f0bd0594b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 73894ff0949803148f96dafbeeddb79385a127a4e8c7462a2d0e59066fbf31b0
MD5 d16d05de8b06504ce878a523da5ac37c
BLAKE2b-256 37c88df5f955d1d17ff27ad4be91ed60f6338f98aa2f784144aafbda984fc9ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d90a39d37daa4c936a44e8af079843e7a294e0e2945174dd8ae348cb6323af68
MD5 c9bc362fb8404b38a6acef1541bd6687
BLAKE2b-256 e384e0f9939a68080fa1c3593dc22d135b4e0f06b5ca17e59ecba3e72c5da738

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1afb0b38a163e0f4380864be52b128e36626f968e77ead76c36f82190457b255
MD5 d9393bfc86d6770f6abe018333bafc87
BLAKE2b-256 c733438cb865951e7f2e56519ff8dd4ddea49e34df6f0501621b909afde0203e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 503eb4eb9105814177e336c1a98d3cc711962604368b5ce0ca73ab80dbc8bf85
MD5 8a13c34ab7d70f4f259b22a658396690
BLAKE2b-256 fb95038f0a948afa3baf921554e8247b8b09515fb7b9f433351682adb101d48c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3ccffde8b92b5b2be2cde310f098f85926d8e87e2e780a4fa8c9094f4d5ca8e2
MD5 d7400f1a22d66bf20089e64c70bf31b8
BLAKE2b-256 67f2ef47a4e3cc51c1c344e5c079dee6b97379e19301a21c3f78fc111c742c3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 642206b9bec891d425a0a411c505d2f93686ccb305ba6e8708458d35c2c4cf94
MD5 914c53930ee913f954fe5bdf3063f4c1
BLAKE2b-256 a80ebc51a86172a8cc7bd355cc4185ba13f5e75df200ca8c7608eca93aba802d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9cb82b69b315326fe9777a462e4e13f35bf43fa9a652fd94eab48f6bdeda35f
MD5 bdb305a493bfa1a75653ddbbfbe52ce4
BLAKE2b-256 4a08f2784fa5200c7c7162e40256c365c0e3a4b41f7be1ee5b88ecbcaa14b164

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f88b3be80f36926b9df12496bb25ad9b1f880438f91f4c5820cbe1d48656af8b
MD5 95f765e8021786246628d86b19502851
BLAKE2b-256 b63c8bb3838bbe943e8ac18d3ae3a0ed79b4659465df172397201e8d8c039cfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 817c27a419f14cbcb5c3d796983b345104b31ab13f7e16730d1a5e2e78ad48c3
MD5 07d80ba41df0fa0e4dd1781f7ade6b2a
BLAKE2b-256 4e5cf154210bbaf017b444df05e864ea75a25053652915b2fc89c44b30b1ae74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4685f7b7e79b817fb3ea0bd2822a017aac7d257894e93ba61b81787412a41b1c
MD5 3330c0bc568d856ca7112701b13d63b8
BLAKE2b-256 a3680848dfe5a6aa8688bc65cc343d796f12926e9aeb43aca111277b0dcc994f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d431a7b414f263cd5f13fe6e0aff5c080209a739695ee80b77d3020a174cdd7d
MD5 8a15a7aa614121d4fbbd2e61cfd93ac6
BLAKE2b-256 cf6045bbf41ffa8afe0bee55a03a29b802465d6256b698909242d643900bdcb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 46625a7491a208a5f904ed044da6d7c88c8e7cd34b031ba8fdc4e7da541f25de
MD5 af9a3d011afb77ed216114f262bd72e8
BLAKE2b-256 e8fd4ed4563ba036d973df97aaf9634a634c709dfad251ef0187562dd38c3dfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 adabeda6b5d0e9c5327673055d754c54997d84b16d98c83770b569bad4933cc8
MD5 c967128dfa1bd967fcb7a1246905b9fe
BLAKE2b-256 36ba10fd2f4d162ffd6d55c739fe6b74101c572c44bf5e73f8d7461f5f0fc361

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4d5fa706ae0ce685f272ab888d01c380bde195afbcb55a73941661ea95c3366d
MD5 cf104df040a256188426c6f9207a3775
BLAKE2b-256 0d40b28203c27a7ec8c723346ff78aff6a4d33b1bfee21788f80172d43bffb50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a172139b2d3436bab63c416f33677f533cf63f8fbd2679306eaab9a7c8b0cb9c
MD5 149153b8df04b8d8037c8862aa35f38b
BLAKE2b-256 c8d59d4b089a1c6025558177cc73f31caecdc6da1edbbc7c973fd320c99430e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eeecc8d3709f56240fa9beb496748734675f8c2fc71bafbf7ef739adfe3679b8
MD5 b3fa93314a5f009b882ab020db872205
BLAKE2b-256 75945088c74670d1b72eca1f451777c757aff3e93a22af1d7fbb1db3828cb819

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 176b9305799ace5001c6a6f5f9539ae141547db42febf05ee60ab9a431355c56
MD5 ee10e1fcab04198386ee3fd822cd63c5
BLAKE2b-256 6d58a16b527faaede30dba8da24660bce80dd0e336dc8202bf455b1e8fd572b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9324b55d33c49a5e9e8d4ce7a5c6cad6d8784b36a587267f1f636e1bdc33d03
MD5 3eaf93312354a6890427d4cef0093207
BLAKE2b-256 4339f6a3eef09ff8abdf3b6a1356054a5c6effc496ed9cae7c67fb997daf90e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ad495605f09f44863d1d5ccd8b95a80d106c679277a81d09a9b8257619620ec
MD5 be5bac3e82b535e08f1560c0f3e4edf0
BLAKE2b-256 357cff940411f60f6a11a93412fcfef5873f1b2dda01de2916a79fc44a3cdd88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 10b62e33e74cf63e0417eb9a6280220ee833c9e7c7b38f77a8d0501405eebb2d
MD5 bc4c02c6a95aba3b792caf3fcc6617c8
BLAKE2b-256 bf72fa9f17889ad03737b21d46d9a27fce7646a692278e9cc495419e772448dc

See more details on using hashes here.

Provenance

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