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

Uploaded Source

Built Distributions

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

aerospike_py-0.14.0-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.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (18.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

aerospike_py-0.14.0-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.0-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.0-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.0-cp314-cp314t-manylinux_2_28_aarch64.whl (18.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aerospike_py-0.14.0-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.0-cp314-cp314-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.14Windows x86-64

aerospike_py-0.14.0-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.0-cp314-cp314-manylinux_2_28_aarch64.whl (18.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

aerospike_py-0.14.0-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.0-cp313-cp313-manylinux_2_28_aarch64.whl (18.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

aerospike_py-0.14.0-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.0-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.0-cp312-cp312-manylinux_2_28_aarch64.whl (18.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

aerospike_py-0.14.0-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.0-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.0-cp311-cp311-manylinux_2_28_aarch64.whl (18.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

aerospike_py-0.14.0-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.0-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.0-cp310-cp310-manylinux_2_28_aarch64.whl (18.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

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

File hashes

Hashes for aerospike_py-0.14.0.tar.gz
Algorithm Hash digest
SHA256 b2d39a14a5ccb95289bd1d1b71083faa5223fe24ba60af3d80b410af554f637d
MD5 f16b656a06659a0a850dfc18038806c0
BLAKE2b-256 7ca87b0a8ce4a58d6122f35eac47a475beb814b2bf49ed7fbcb6e1dfe4bb5c45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eaeb9b464d914bf498e65cec12ca253491018ad58351b8f6588a30f1468d9254
MD5 7f27cafebdee9c9887b471c330ed3a8e
BLAKE2b-256 1c95d9140bd8b0aac029ccd84db077efe88a7f4bf5a562726a64904facb41354

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 feea7f4ef48cc0993842b629261f2330670132d49c71ddf108daafb193380a21
MD5 056613941eae0a88fa9c3570455f74e0
BLAKE2b-256 fe2924f65b110af186792907d0e69612d19f81ab4d2fd9d5fc66772f056f1334

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 60518e2a09ed84a2ca213855e2d576f868efccdd7dfe0ce778c17749d0f01fc2
MD5 4f430627af9b8cd5fc24cf8559ed2e5a
BLAKE2b-256 c85013a470ad0222206c8354d8673f08b430e06d25f5a2e7f9c71b4a6bc99f85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4e9fc005723a03f5efe3c0bad5a5982f2d10033483cb2687e7479303e8eaaa4f
MD5 bfbf3b5ff68004f8562ae647b7a7b4b2
BLAKE2b-256 df0c0ee8f1cb4dc13843b8048e63507264d22483abcdc1285c1feb37a54c7afd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 57c5537384c68422d6b53bab2d37d10e3933ba9a5c6d81b2f95bb01cc21df13e
MD5 409be58ba37740c94d88a852b52adff1
BLAKE2b-256 1b84675e7bed684b042767906c2c8fc6a9ab63bab08839c65905e5fdb7288ed6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0f9369b1b310110026d96d1b0f66e27b2488271ee83d070f18f13da42c510c93
MD5 b85e972394a8152d6c472db7614a5f9f
BLAKE2b-256 0fd676688a23dcfe6c0bc94dc73cd0bb252a9001b8ef483a4ba0d7f49d81e977

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 148e174cdf56a1669f33cfb1a71f84e6991f3dc9d2a87b8157a08b2680f38ac9
MD5 46d626f7d99af80027d01d2b152dfb1b
BLAKE2b-256 fdbf7d25b22cb6522f47dc9542723e89e66321b7ea4213f08c60563a119914cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d654f39728c4ad92d9da717721b8bc5e63382b9932b0dacfc73278abb1e585a4
MD5 5086be9e17b66d0d86d9a2be43088c7a
BLAKE2b-256 eacee93b78c5479dcd50a80b2eb632767d8ac9b80df6eb55c2642d6967030cad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 579c3ffd2d0826bbc3d6a7d0e5c36bdde16abef48e7868467d3ab9e89844e1c0
MD5 b023afcf58ff62793330ec9e73624081
BLAKE2b-256 7af25d9f4700f89da90f524a00055c1617bfb31ecb7c1769fe19322c4b693a3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e2448aa1f4687bdc11b1ef6106c5e979c542fa5bcd9712fb7a07e2ceda3088c7
MD5 c349115fac44cc86af4d7aa1c23eabc3
BLAKE2b-256 a14d48e476bd4fbafba49f3ff89f4270c98acb1d2a5c1f056f31b3163786df5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e51d86715741b649c02cfbdf71b68ddee697d3de87cbc5e93744b05d94324cf9
MD5 005a6899be8cf6bb266ee937f455cce3
BLAKE2b-256 2295a116711ac4212bf15af9213d4ebb42d2792905e92ba90c52d4e8f84c19ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 88a209fe0d28d3c4ada6fbe702c93c36aca81b2c8d358a6ed2308dd3b116823a
MD5 6d203d79c0713057d063b95bd4078c2d
BLAKE2b-256 39aff6fa9387de7afad7068d1c57fa2ef587b87056218918a0859a85639b682d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9018bfc7e028019e15b63ebdcf65b2302317bbe11ba9882274700d2d9ebc620
MD5 c83689b5f7bb67552d1b36c9749de69f
BLAKE2b-256 ec0a908ed510d750c8bed85b85a03ecaf5ceaaf0a9e047a60b8f9691b56e0574

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a1bd794580b8110e53d473108fbebccfd621dd0f75fbc50f17a050dfd67cd31
MD5 d675c915c2b3ada5cd42218c2e506049
BLAKE2b-256 ed10d9d1e7488b6653beaeb33fe9e950f265fe21dc3e78e361ee14447700b881

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f8bacc2dbc7d994c24229111faec2cce2d22fa8a4c0566268f3bb514a6ce9d8b
MD5 6b00b038e4d6740bec6aac61bced9a96
BLAKE2b-256 a1b9562e3fb6b00cc00d76e61ee08852249390c69c37f59cdfad706c15c0ad35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 40bd264d3d27dab5a7d0876838eba0ac6083c73cbb4ab47015ce4d7acf9d4918
MD5 fb6e566c4ea87fd86eee87967be114b7
BLAKE2b-256 6d77bb7a1993cfea9981b1207fcf53a4de4bf9b794fc6fe8dc27e45924880719

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d761672e80fd5459c4ef5a06880581ed5d71d840080987c94bca1fc4e3a35782
MD5 631b98c9c617ea10cb064257750a67f3
BLAKE2b-256 8f2fe98b789b4c8585074e7c9b1ba77f04eafa9a64c2aff3d726af3f160be141

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f177dbd5eb86ed7c53b7fb7741f8f1e0ea9685f9ce9d07f17c3d0f13aea77ba
MD5 2267b82b8dea9ad3c8b0c2469c278afe
BLAKE2b-256 9bc669970e3fea34da7120ef3ccb3a17b5f9acfc041e498a3687c30603158d2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f69f26195c86f050e17736f4697dda7d544d40a89033c9133e1544e0f9ca005
MD5 7897a60e4049aca5cb6d23975abcd344
BLAKE2b-256 a5fef3f5f86764f5897d0c932e6e078384f40c8e88ce6fcf81e85b9ba9366ac1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a4718452bef6fccbbf975c4122ad906d2cf4be81c288dcab2c36b979ed295451
MD5 829dbac417e62dd94d85b5c1ec43a20a
BLAKE2b-256 ac806dfe29b2c9529196841d25734535d153c50ea2f42addd342af411b7932c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3607e2508d4d05f7f3a80b5da8b3f1f3988f72a508784d586c307ed3aa22095e
MD5 1946c681e13237ab9019eab182127829
BLAKE2b-256 0eef88dd06f3cda92dad71edb4e5929b5e1089e66506af3c7520480f053d4eb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 391d176b0385837d0e625b6d0d069e8d60eb39ffd7cb653110c19bc8bdc43e25
MD5 16f0e08399db5e78441b049e1009e99c
BLAKE2b-256 02f727334558e80bd4e2e80be54761733c2bc99ad4891e0cea103de3834ed1bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7cc11e1af491fb26697cca5473abc7ceaef3cefc24b0b7225b7edeba20f1c654
MD5 39333bf7f14aaf2acd369db682b3c0d2
BLAKE2b-256 5d476d73d041f4967dd91b1afc9da23d891953d7edb3571ffc9594ba6da1291e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1dcffd1eb15fd924cf220d1f062994662be6959b2d96f4eaebd60311597b80ae
MD5 32d3a838aa442e0c31c155acb8b65864
BLAKE2b-256 4d070bd25c95f363a2d13b7d4d20d173f0c0ede1b3981fe07c167db27ee01f67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 33e8a2913a40637c1a03567f24b85008aaa6fc3c3fa778f4afb5a4b55d9a5335
MD5 f979eb65051b834a049709e223aa72bd
BLAKE2b-256 942b8f1102fb80d8cf4591da3ea61126812e3048880dd762f76a19ecf432b7a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8ae24e3f91eca4f354d41ff8087529e3c9e80c9cc89129ca08fc1bc71daae47
MD5 dd57b49df27975a8adb791e848adbec9
BLAKE2b-256 4a311812c4e7b7690864725379f13fbb50bd53ddf138ba192a44c7824d70053c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7bae96910c5309128a82c4f9e6c8db17ed71541f59768dc6d6cf2789582c75c6
MD5 0af5c753c3f60a714575e0a62443de65
BLAKE2b-256 64760e07d0a6b9cfa92d5fad448219bfcd3414a1b46a417f48492421858bcb4e

See more details on using hashes here.

Provenance

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

0.14.1

28 files

This release

0.14.0 This release

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