Skip to main content

aerospike-py

aerospike-py

GitHub repository PyPI version PyPI downloads CI status Python 3.10 or newer Apache 2.0 license

High-performance Python client for Aerospike, built with Rust and PyO3 on top of the Aerospike Rust Client v2.

Features

  • Sync and async (AsyncClient) APIs
  • CRUD, batch, query, UDF, admin, index, and truncate operations
  • List and map CDT operations and expression filters
  • NumPy v2 structured-array results for batch reads, without per-record Python objects in analytical pipelines
  • Full type stubs (.pyi) for IDE autocompletion

Documentation — API reference, usage guides, integration examples

Quickstart

pip install aerospike-py

Before running the examples, make sure an Aerospike server is available at 127.0.0.1:3000, or replace the host and port with a seed address for your cluster.

Sync Client

import aerospike_py as aerospike

with aerospike.client({
    "hosts": [("127.0.0.1", 3000)],
}).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)],
    }) 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 repository runs several automations on commits, pull requests, pushes, and schedules. The following sections explain when each check runs and why it may block an action.

Pre-commit hooks — .pre-commit-config.yaml

These hooks run on every git commit. Install them 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.

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.

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.14.1.tar.gz (222.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.14.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (20.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

aerospike_py-0.14.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (18.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

aerospike_py-0.14.1-cp315-cp315t-manylinux_2_28_x86_64.whl (20.8 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

aerospike_py-0.14.1-cp315-cp315-manylinux_2_28_x86_64.whl (20.8 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

aerospike_py-0.14.1-cp314-cp314t-manylinux_2_28_x86_64.whl (20.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

aerospike_py-0.14.1-cp314-cp314t-manylinux_2_28_aarch64.whl (18.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

aerospike_py-0.14.1-cp314-cp314t-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aerospike_py-0.14.1-cp314-cp314t-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

aerospike_py-0.14.1-cp314-cp314-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.14Windows x86-64

aerospike_py-0.14.1-cp314-cp314-manylinux_2_28_x86_64.whl (20.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

aerospike_py-0.14.1-cp314-cp314-manylinux_2_28_aarch64.whl (18.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

aerospike_py-0.14.1-cp313-cp313-manylinux_2_28_x86_64.whl (20.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

aerospike_py-0.14.1-cp313-cp313-manylinux_2_28_aarch64.whl (18.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

aerospike_py-0.14.1-cp313-cp313-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aerospike_py-0.14.1-cp313-cp313-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

aerospike_py-0.14.1-cp312-cp312-manylinux_2_28_x86_64.whl (20.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

aerospike_py-0.14.1-cp312-cp312-manylinux_2_28_aarch64.whl (18.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

aerospike_py-0.14.1-cp312-cp312-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aerospike_py-0.14.1-cp312-cp312-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

aerospike_py-0.14.1-cp311-cp311-manylinux_2_28_x86_64.whl (20.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

aerospike_py-0.14.1-cp311-cp311-manylinux_2_28_aarch64.whl (18.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

aerospike_py-0.14.1-cp311-cp311-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aerospike_py-0.14.1-cp311-cp311-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

aerospike_py-0.14.1-cp310-cp310-manylinux_2_28_x86_64.whl (20.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

aerospike_py-0.14.1-cp310-cp310-manylinux_2_28_aarch64.whl (18.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

aerospike_py-0.14.1-cp310-cp310-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.14.1-cp310-cp310-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file aerospike_py-0.14.1.tar.gz.

File metadata

  • Download URL: aerospike_py-0.14.1.tar.gz
  • Upload date:
  • Size: 222.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aerospike_py-0.14.1.tar.gz
Algorithm Hash digest
SHA256 2e0e0a0e208efb9a88040e5e333ca5171ca3cbcb3d2560483107e4a6a47df859
MD5 fe0fc455f3ce467f9edd0e1e62498528
BLAKE2b-256 8e82aa18c34343bfef18f1dcb629fc922eb431116aef42d8394a1263d33f138c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23e5a13cad78c9027b268778232cf88de6dc07f89bbdabce5e8bde66c9153e00
MD5 6cbd8b5da9314b25b9fe4960a8dce29d
BLAKE2b-256 266507d5539a55508f94a9dac319130a60545067162a92495851c794313c9ee4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d622f6ec733eda718986dc73b9647433c6effa42ff36196ea07f80678500b1e0
MD5 03b0ebccfd048347436e6d244c5eda85
BLAKE2b-256 6e6a5a74dc350abc14c85dc2a60b93f464a13d6611f90b77fcd5761eb002f866

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f9df0c9850118565867f706fe79c936596e94838121de89c0553d19414c6d0a2
MD5 343c7faac90a0747109edeb36bdadf6d
BLAKE2b-256 03a5791d2a7ae1fc408aba71dfcd8866b4f6f6a6ec3a31c8d25db46add1cdaa5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7c7e678cde7b30961ef571c82f8842a51bd1c03c0197736ea498e7f3710ee256
MD5 ac339ad6c3f6ece8575d4296919566af
BLAKE2b-256 ad02294753185f0ed652505c6a8ff0226cd75ea2e97da0441ba5d815d04757ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8f59517f404fef8e0679edf6979a2e7e13d2f58dd086163b5986d24f9c1f56c
MD5 dadd2064192fec919a2a80b2abe6f3af
BLAKE2b-256 fe75b3ea1a63ef7e51ac3c9f21fc98495840f1e69355355f46f2b30c8246774d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 54ce0b98ddb8f97dafd64d17445ef336a23bd82a0de72a2044007b729a9bf7d8
MD5 503d6f88e9a3084921997d4d5948369c
BLAKE2b-256 0de48af81e2edbbbbe74b3cf5cf22cf39d7a1b5eb6c2dfbf35a69f46c0261201

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c166e6c8a184af105e5b46a69d9b1b3cd4ef806c8d14e9debab41200549332ee
MD5 2c8e5e96fd0d72e06ce403be82721c7e
BLAKE2b-256 0b2904f8c1453a1f20c03ba969767bbfd2a653258693355f9bf5559577b11eef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 28ecbc58a1fd9fa0d8624bc0146640798486e3fa75ca1b7d385746367452c43f
MD5 067f4aad98bf43833ecfe1abdde9ae78
BLAKE2b-256 9efd4a049e48e06b962c1907a7658d9ff5a42dbe1ff168cef92c09574e3b4f23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 48b6806481922e363036733c3cc064be28fc38337cb9deb9664c7e9da6134855
MD5 abe71749f7edb3d87c1189ec45abed55
BLAKE2b-256 9a7ca5f9ed79a406dc33e65c0127123504c21ab2275304a28816b7678452895d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c016fdfe7621b6ebec6aae0f30339760af1f5d676fa003f8bdf557d8c2e6345
MD5 379194a1fe9edc1ec20edd62eac84a76
BLAKE2b-256 708c90a5e91c89c9419ca962549e26c09a32b3f6c79c5bb14458d0b129469d31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e38202adaf8a4cf7bba582f4847914ecdb5b34654ff4409cdb249c2ca029c6e2
MD5 d610f73e5e541e6b4cd1d84b8810dde5
BLAKE2b-256 ea88cb83e9562a64906f451f5fb8930697f349165b9065e363ebba9dccb50a86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0abda4fe2c44c05204e0c0468e7bc437a21bb1949f8ed87a86b7c0aabf308dda
MD5 0fa6a316ff47046e9ee4df0f30a13589
BLAKE2b-256 c57e49446d9253f25fa528013989ed74f8080d26d4b1ee79ee89b974c34ccf9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aedfcb996ad26057981af26acf20b216d695610a9703f7a5d8fc6d12f345aa60
MD5 d6b5b501bb8aa9f533009ff0d7088f23
BLAKE2b-256 3e61a6c2450ee3c141d12b6a1ba15c91591e3336faf4ba074935160994865f28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4ba75c92800cfcaa66ee9a966aa0e425a1db1f8252779e5a6fa0e34b08030c0
MD5 1d1c80be5895eebb185cce6f4e48a18f
BLAKE2b-256 34bb06730b89937a4472367f3957f4e5c5345eea87a4731e820a39676c0955ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ea58469e7034708ac7db8d97b74e30f7c50313f671ac3de1961c3cb99240665b
MD5 8a2cd563bfaa9f2aa960ac885859a265
BLAKE2b-256 b5a6a99e8d25c34b93c3158593fec45132ed649c6fc572e4992e0f88f3e8b650

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 24f183c4015b624f2a576206e4d5fe12045c62305ec7ba0ca97db48b9905154a
MD5 a8330965eb149d8a4804acfb03d2e403
BLAKE2b-256 138a1399a27902dfe262fe34b6f635dced5c1cce7f5630c35413585da0664c68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 997cbd06d90ad0fd21edf37a9a89c8be7827740bd695455c68e60b43422aa189
MD5 9c5217754db5cca3191abdac6b19d7b4
BLAKE2b-256 efae10e9dc03ad95850c1a37e47035817724ab46ed72044f8c018addf901bb66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e35a51555435a2c49ddac914b638b1c081c0d450503e1136ba483ae93747def6
MD5 12e248eb316e06c90f4e0fc460022e55
BLAKE2b-256 6c3366ccea813f855eb19102f8f29d4873a3c45f9014d45a65ae877cd2a4200e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e4b3ac3e00e6c3683ac32968429aa1093d061ef294c02bc0b15607ae84f9fbf3
MD5 ff4d5a8ada4a7f277a8feea0c8b59fb8
BLAKE2b-256 1c15611601087e17717e4b4298fc13bd3cbc31962fe6535f7e46cf13aad6935a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f81de634395a8e314278aa64b9ecd3cffe3d4e0b048ebc3e1d1c72acdc3a33c1
MD5 f9e8a99350b9ce14059b1dac8300844b
BLAKE2b-256 2c7ff54aaa80d7d431eeaa4bbaf2aeb3670df773cd503c78108754faea1c339d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cac6a337e7c252270e2d3e000198cdbaea7ef497ccb55796c807ffe9f69c5658
MD5 2006186dd883a37738fc9644bbddb733
BLAKE2b-256 50b7a87a420ae23b281ff6c94099e4ce40aaeb73bc77be8590438b39948413b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa88dca92dca882f12277810e70d6fb2f33db95187a21cef3935f14433003fd4
MD5 d0ce5d16f8aa28cc462c31b705cc8433
BLAKE2b-256 79ffb79ea610d4e48469e15f1ba49c12804f347f77b8085c52ba8173524f4638

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69ae54a82a8a07067aa50bfb31f5f34002116889add2a6fee2d7ee20499357a9
MD5 d2b8ccfb4165d402f847bd12897958e1
BLAKE2b-256 c42baabf5a9fd0bc08d5127f6f8f9081c7c16be467fa48496864d8bdb2db00f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f6612fd189a378e4c49386274a6aaf07483f4ecfa0f698b1b2ef18febfabcb2
MD5 bf38b5698cc49d144acd1b052de373d5
BLAKE2b-256 c86a4aa7a21d73bf59d6b489d7c451b4379d6bb7404600de1d3c796d8b946590

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 425f1686ce096e64ba27b82117c3b6bcd4487413b51e656ec31893bbb939989b
MD5 302732c20ac27ebcfae9dc7f0002a39b
BLAKE2b-256 47592054739201edc4c0d05fea42086399f13d130b3949ad11e246dd350f19ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea6d09a0059b9ad3911bb3976fd7e0d9f4c86c39deff6a2541eb01f492fe52e8
MD5 003c7facc52ad5fc4ad3e3ca42ba1eca
BLAKE2b-256 f37a06533d875f081bb89297b9483330474f90cfd10966b0058ced04ef4786bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 00c0bef343437d11230ebbe0539505418255dcabaf95ff6a923e0444c3bfb9c1
MD5 08f0c046b49774fb5fa3dd50fb345642
BLAKE2b-256 c8c98b5f31bd8f0ddf3740b83121cd9dd5d4ac9baf0504d331e846450cae635d

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

0.14.4

34 files

0.14.2

28 files

This release

0.14.1 This release

28 files

0.14.0

28 files

0.13.0

27 files

0.12.4

27 files

0.12.3

27 files

0.12.2

27 files

0.12.1

27 files

0.12.0

27 files

0.11.1

27 files

0.11.0

27 files

0.10.11

27 files

0.10.10

27 files

0.10.9

27 files

0.10.8

27 files

0.10.7

27 files

0.10.6

27 files

0.10.5

26 files

0.10.4

26 files

0.10.3

26 files

0.10.2

26 files

0.10.1

26 files

0.10.0

26 files

0.9.2

26 files

0.9.1

26 files

0.9.0

26 files

0.8.0

26 files

0.7.1

26 files

0.7.0

26 files

0.6.7

26 files

0.6.6

26 files

0.6.5

26 files

0.6.4

26 files

0.6.3

26 files

0.6.2

26 files

0.6.1

26 files

0.6.0

26 files

0.5.13

26 files

0.5.12

26 files

0.5.11

26 files

0.5.10

26 files

0.5.9

26 files

0.5.8

26 files

0.5.7

26 files

0.5.6

26 files

0.5.5

18 files

0.5.4

18 files

0.5.3

18 files

0.5.2

18 files

0.5.1

18 files

0.5.0

18 files

0.4.0

18 files

0.3.1

18 files

0.3.0

18 files

0.2.2

18 files

0.2.1

18 files

0.2.0

18 files

0.1.5

18 files

0.1.4

18 files

0.1.3

18 files

0.1.2

18 files

0.1.1

18 files

0.1.0

18 files

0.0.5

18 files

0.0.4

18 files

0.0.3

18 files

0.0.2

18 files

0.0.1

18 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page