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.

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.4.tar.gz (237.0 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.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (21.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

aerospike_py-0.14.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (18.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

aerospike_py-0.14.4-cp315-cp315t-manylinux_2_28_x86_64.whl (21.0 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

aerospike_py-0.14.4-cp315-cp315-manylinux_2_28_x86_64.whl (21.1 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

aerospike_py-0.14.4-cp314-cp314t-manylinux_2_28_x86_64.whl (21.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

aerospike_py-0.14.4-cp314-cp314t-manylinux_2_28_aarch64.whl (18.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

aerospike_py-0.14.4-cp314-cp314t-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

aerospike_py-0.14.4-cp314-cp314-manylinux_2_28_x86_64.whl (21.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

aerospike_py-0.14.4-cp314-cp314-manylinux_2_28_aarch64.whl (18.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

aerospike_py-0.14.4-cp314-cp314-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

aerospike_py-0.14.4-cp313-cp313-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.13Windows x86-64

aerospike_py-0.14.4-cp313-cp313-manylinux_2_28_x86_64.whl (21.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

aerospike_py-0.14.4-cp313-cp313-manylinux_2_28_aarch64.whl (18.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

aerospike_py-0.14.4-cp313-cp313-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aerospike_py-0.14.4-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.4-cp312-cp312-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.12Windows x86-64

aerospike_py-0.14.4-cp312-cp312-manylinux_2_28_x86_64.whl (21.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

aerospike_py-0.14.4-cp312-cp312-manylinux_2_28_aarch64.whl (18.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

aerospike_py-0.14.4-cp312-cp312-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aerospike_py-0.14.4-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.4-cp311-cp311-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.11Windows x86-64

aerospike_py-0.14.4-cp311-cp311-manylinux_2_28_x86_64.whl (21.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

aerospike_py-0.14.4-cp311-cp311-manylinux_2_28_aarch64.whl (18.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

aerospike_py-0.14.4-cp311-cp311-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aerospike_py-0.14.4-cp311-cp311-macosx_10_12_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

aerospike_py-0.14.4-cp310-cp310-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.10Windows x86-64

aerospike_py-0.14.4-cp310-cp310-manylinux_2_28_x86_64.whl (21.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

aerospike_py-0.14.4-cp310-cp310-manylinux_2_28_aarch64.whl (18.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

aerospike_py-0.14.4-cp310-cp310-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.14.4-cp310-cp310-macosx_10_12_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: aerospike_py-0.14.4.tar.gz
  • Upload date:
  • Size: 237.0 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.4.tar.gz
Algorithm Hash digest
SHA256 2a856c78967605a5449e7236c09feabc4d5ca3abeec69ce60b16bd23c28af8e0
MD5 66057da0b0993c0dbe4c4b58442007d1
BLAKE2b-256 dc7541cc5f4fa88dcc2fde855dd2904215683209620b93e5b45b3ced27462c99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8205879185087f2bd0a47a08b384f3b1cbed9b33891c4b5cacfaa39a4e04aa39
MD5 35eaff501c04e60035442ad29968d3df
BLAKE2b-256 ef4bfc22fb46570773674c7b15fc6c1caf9064b85f80040f1a5933590e633336

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 10a509e043f482d65939b70b723031b97779410f826c6512cf59f6362b7a710e
MD5 02cdd1db4a4212a2c5347a9ae7e95ce2
BLAKE2b-256 31ec5a093c67dba84c0afc0fef9b08f62097858a219c929c679b1266972b4355

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 95c70b623c51e704866cfdbf7e807a1382195cde0d1fca7c7d1737c768c3626b
MD5 fdb34821d974563a1b45daedc37452d1
BLAKE2b-256 5d0583abad6e917a77e4b734af2a7e5a4b4e71b9dd7b1d50c179a42413d58da9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ccec91502dabdbb701b3836c5cfd7ff4adc47757b599a633c5f1a1ac8b16e6ff
MD5 f6a6e9fb9cef09a9a3ca44b28c0e3107
BLAKE2b-256 5b009d835d68cf3deb212f64007fcfe380ca7cba08b59993526843ce1fe8c199

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3348c5aeb9328d5c421a2df8ea30e09a4d3257070c11264620c1351d6d078f5a
MD5 0dd913edcf66eb04698418c0a4c3cad4
BLAKE2b-256 eab771a88e8ddb63f029ac12ce41b00ad794bb422f48af8ef58bf68e5b27c284

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 81099869704cfecab6da98ca138df6b3bf9fd0c42cecae95c942456776ad75b5
MD5 f11f44e37f5b46fa207d1322648ae23f
BLAKE2b-256 a375b505739b937b086372d856a83c7ecda65b46b0a10d24a6666390b3c9ce35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a733bf15bffb0dd34cb54f4eaea9ea32148084f0f284494ba70a0943741c7dee
MD5 84163d6e06d10c15d2ebabb55e4e8dc3
BLAKE2b-256 3499a080b724cfc299c0b46f3723cfabdde7b2be0a8aaac925cde668b5b9cf02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a20d93d2480ea3e7ef7d3f3e7606066bd119105cb9baf1c7aeb5b7337863a576
MD5 3c4def0d7b570c215b835b41d6c9df59
BLAKE2b-256 0a2f08f8614b9009f138b0ca7a9983a5d13c8a2bc80091d7b79e20837f7ae408

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4c0c352cd7fbd14c07b3c0c6d5040b7a976c16db2efb6926057d675862a3c981
MD5 d15e8e01055db42758b4904adeeb7f1d
BLAKE2b-256 e106ee85ada40182450624c33b137f31151376bc7e5147843773f39ed9968e57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8cffa12e66baa809af0ce85e7549ebb483f33c9933fbaa28220a58fdbbc1cdcf
MD5 9ead504573807125c7a2efa1108ca1a3
BLAKE2b-256 03dd7c7ef4dff7a516d8504b089192aca33a2174c2dcfcd208a6155be76ea74e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 24137c1137f3e305a758799b73e630e8b9b0ff21ec6f66a3d2c2c666214af883
MD5 394d721706aedf3317aa539327bcd6be
BLAKE2b-256 f07b0cac029ae9e89e8f052d47730d69d8c76fb34bcff794a739a2af378c899f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f7eed377efab6c3bfc440d0090189794c8db6814473063a7cb6373d96c5050f
MD5 5fc52eb3fb5d9695db923d15f3299c5b
BLAKE2b-256 9fa2a8e57fbac968e4814387abd20575fae8fce8034f630c648a827d217c6224

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 16cfd873b10172522cd1ef3822ecfc0579324ab7c88229c743cfc4090e5fe556
MD5 082aab9309b4f9c0de8749d6863cd6d9
BLAKE2b-256 8386313c27c78a446799b12818da5223e6bb321b7b3a0b1967e0b0ab850c4ab3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2d82d5a41fbaa239272e388c7115476b44ae065e7e24c167d44a189a14d4d398
MD5 1ddf006c6ea77f8bad7adf5628a18c2b
BLAKE2b-256 abef0d44cb6979b506e53b2e182fe07f1b59c707a037386b3e3c7a959092baad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0512431182437644e0ee3b4cb89ca08afae719be2a54847449c5f3acc44d4e35
MD5 0017255bdfa12cbe455ae6579d1b936f
BLAKE2b-256 7a1dfb0b23dada6d2fa54447dbbf50879cd59d3335c963bd1002f590abbd9724

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f0e90fd6cb2ce7fac45359af7879e5e2bba1d7fbc8df3e67daa5098fede57ff3
MD5 10673988761ff7a655895337095a601e
BLAKE2b-256 99eb93a735ccd679de11a49fb1478ee91946546daf04259b6cc9d9c7a5826c02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ce0d33e470087864ba2702ff2f424c6535ed8fa766f9f2d85055fccb79e33ee
MD5 805ec6a9fe24c58acc42bee828f79c55
BLAKE2b-256 fac24ba2d9738120260ca221a300678ea47181c58a4405b4f2d5fd25dc1f3cde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8703aca25afef63d5d2b87e7cb380a798d2de3a7764879156e4613456c208fcf
MD5 f0829278ce965e0e7f1328a09528a120
BLAKE2b-256 166d322ac79e6c8413e75b300f95977b53c6bb12b485d9c49c810a0d97a33412

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.14.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.14.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c896905380272f9d736aafc6cf96fd8fd41750bbbb50152e87f0370438309907
MD5 46a1c86b596820b05fcb10378f0267d5
BLAKE2b-256 7f6afdcfab56b22eb012beea547e7ceaf3f22db9a28a2008c9cc3b77cb151079

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c2c902c55cc94e733f6b3e7d4f6722e7654b0fbd7a4097d0f7a1de19a1a4f62b
MD5 2d5b48215f1975adc06a628485697afd
BLAKE2b-256 0e44da4173827f18e41280c24897120b2baf84189010b0a6057b890a1e09303a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fb8c2eb93f7c2736e955098b63897b86f0f8785b88a49a5f0857c22c14c3d3b5
MD5 a8bac486f00a01beabcca162a3d7a9d6
BLAKE2b-256 fbcae178f820a5ef1fd1bfc33c1d3d45bbbe0e7738bba226bccdb784118598bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3083ccd06b1683a11f111d51b149c004f38d6d9977700f55408cf71f0f6a1c7c
MD5 89b9834a99efd006d3df41afe92737c8
BLAKE2b-256 71dc9ac97791fb6fd011d1ae67823269b052d626b0c64d0dd8804ed58dcf43df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3fc1c1e1f35335a8fedcdade2dba476fa384ec446696d351a57c99ee31f48670
MD5 9c19aa3b3b5f5617ac6c878d0bbff8c5
BLAKE2b-256 1b97211d5bd1990e3c430c71a3e997f9f56dec00c7f6f91f5e667ac302a065f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.14.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.14.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 56a1b262bb71a45579bf87252015465b517b947d85c07a2ba708ff39ec4ce31b
MD5 95f8664c3f8d0b22dc4a9ed7911ec520
BLAKE2b-256 40bdaffa9240662bfe3b4dd637142ad08358b6854fffd591bae7d1360fa6f34b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7a43dce26c2906a1d46fabcd855210379a446c5e1177738ea8d58ab01b1039ff
MD5 95adeb1825a2f43f60a5eed294494ccb
BLAKE2b-256 47f3f597470862f8677c1b5570df4987d9b7bd0f54cc61b75fb38e351948af2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0eff95bfc324925369da3c030b31a771da4042144deaa235c27ea2260ea5a792
MD5 c1abcbadcc7ade5098ea003151bdbdbb
BLAKE2b-256 cf1ab0b463f33c9a6d6a3086b2278d5c07dbe089b56222d5ff11a0b0cf08c71e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddc5dd5786d8a05dbfaff0fb794a7fff6da92506260caba7164fce63f2832971
MD5 7882b619c9c9bf828e64de9e129c998a
BLAKE2b-256 29ccc8c6c5a277eff778992901515739c1322402ebb2bd0ea0a005eb07d9c7a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e8cedcfb9fb06426ec78e411436104167b033d4e77b733ae24aef183858996f
MD5 376dfb5b978af7312b85581dfb9d6336
BLAKE2b-256 d1396e27a70fe4ea216175aa6aaedfbde52bdc35c7e298beaeb81449426a5002

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.14.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.14.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3b55c5ba695e03a17bc7c701021358be46ab3e5aad50bcffaab01ddcd343c897
MD5 4b473a843e76fc9da3b3638dacbecab9
BLAKE2b-256 42381a0dd1a5130501d2aa6886815f00baf6387bca55f84a5e429aa448a0256f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2057b927843457edce6dc65811af209359ebb9a12a83100486cc37a169710f08
MD5 7636d4c954d49396b8d6f83572aff990
BLAKE2b-256 982543536d22ff224bb787d80cbe36e4801ac766898cfc704c7d0b782949fae4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f43797979795807b6a814b08c1e3fc187f42f5805828134f01a29cfbaaaeb7f
MD5 a174db21d85ee0ab066212d4ae03dd58
BLAKE2b-256 be1d62c3e609b94c48e3838683269ba0c5314dc8c3ce11af9d09a5b3d55ba50b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11b2f65c1c2c50ee66b919f4535e6a8807ebac2f674f089455a11a12ed92b516
MD5 40f1c980872916ff8171607d5b792c25
BLAKE2b-256 d94aadf373a26bf109155f6911fb35cd8327320a51ebb141a5820d097f0ef6bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9bad6fe1c2d8c621c855fc17a80ec68b03f5889eb4b3cb829f4ba20a4352ff92
MD5 66dea1dd5eaba7112f7b2587d0fb4088
BLAKE2b-256 26523d6d3f895f61bc0b71b2911da71ce1e60dab51d21436db4ef51c41b06911

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

This release

0.14.4 This release

34 files

0.14.2

28 files

0.14.1

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