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.2.tar.gz (233.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.2-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.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (18.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

aerospike_py-0.14.2-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.2-cp315-cp315-manylinux_2_28_x86_64.whl (21.0 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

aerospike_py-0.14.2-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.2-cp314-cp314t-manylinux_2_28_aarch64.whl (18.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

aerospike_py-0.14.2-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.2-cp313-cp313-manylinux_2_28_aarch64.whl (18.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

aerospike_py-0.14.2-cp313-cp313-macosx_10_12_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

aerospike_py-0.14.2-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.2-cp312-cp312-manylinux_2_28_aarch64.whl (18.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

aerospike_py-0.14.2-cp312-cp312-macosx_10_12_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

aerospike_py-0.14.2-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.2-cp311-cp311-manylinux_2_28_aarch64.whl (18.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

aerospike_py-0.14.2-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.2-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.2-cp310-cp310-manylinux_2_28_aarch64.whl (18.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.14.2-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.2.tar.gz.

File metadata

  • Download URL: aerospike_py-0.14.2.tar.gz
  • Upload date:
  • Size: 233.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.2.tar.gz
Algorithm Hash digest
SHA256 892f8ec1d27d5751153b10b1b6e699c3a563d13af162919e9b37fd0836d4a337
MD5 df653199839771343215d469554ae3e9
BLAKE2b-256 48cbe0b2169c72461cc42ade936a807c31ade387e8d0b40cb15c9eb23e754023

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0353a310e6e84502933a1c21c79c8ba48515b15cb4746e1f58b1ccbd1055a927
MD5 ec7b78e74ca2b582c64dc5b5ca6cc055
BLAKE2b-256 d17dfd514ef1bdea1eea55c73b7356943926f2913eeec5cd0d0ab1b8fea2d3e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a596f05ec4c8851b2d088d32e939c0411b129a7b277f9be44388f5a538c25579
MD5 94b9c391dcf18cfc391c6b1358255e14
BLAKE2b-256 9df772722afda15e1e6451099299a609d516fa6a9141ee96e57148f11bdd3c5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ce7df1fd78184367c6162220ba0566ef418a9b4eb7c136e40dd125ffee6bbea9
MD5 ed1c6de400938db61432fc3e2fa06d88
BLAKE2b-256 51ce089b83035f4c4d0b9f8a2612f7d6b6607c737f5aa248c241cd896ee89b75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f2e69e99d12a2273d3e68bd512799ca77976a2259694f72bc7ace102b07abacb
MD5 11b73b8a6e1a59043ad7749cd1892834
BLAKE2b-256 e07bdc93de411ccd5d71cec2c5ce902bb5349ffe14c0cd3e5059f1d15c1626d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fac6aedf19262e0a9c4efa575f3156d35666a1fb03283209be5f877dc47c7935
MD5 095b06d68b7e8234c727ccd4d79fb6ef
BLAKE2b-256 68b4b41f508f694f4b44e6af0eba4db1b729545be05629de10092b1b8f40f4a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc5bb8ef954d2e72646699ee6ebb87e7696adcbe6f47c19c8087ba27ca0c0c7e
MD5 e6f39ff9a5071060d69c0c7f44c5f0d6
BLAKE2b-256 a11e73aec3b497a60674f50b870ef0f0daad209c9b773e03e26532b8fe16f6a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e9a876af2e35639742be6e6fc9a41749fa9836e73fe1570cf90773e26f4ebff
MD5 2e8f0d65d3353665084f34ba5b5042e3
BLAKE2b-256 1c055f02b6ee7e8e26d37ae6a681d2e15ea8f9d3283bce2729e5e95a6cbfea28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a7e27f31f9ea3f3fc37930c3160caf453b633cab36e971baa9f6e85b87fed9b4
MD5 58ed14aa23abee50d70c40cc7dbecf33
BLAKE2b-256 8ecc69f4653b8665caf0687d1cddc6df390f9fb9c29281f0baf26d92765e5987

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5aa621524fb24c13a79f1ff847870cf96e86bfada380baf6653e398fe029a6b6
MD5 d3b0d619d2b6774635b85948ca314c04
BLAKE2b-256 81fc1c90c97eb2ae248c27d251ee69c6659a4c8a18a0843b9bafeb462dc38296

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9db0c27f5a592327baacbe9d31e6cdf1a7c0760c81fd9538bb32fa801b49dc5e
MD5 d55ae99da5d340fc64856705eb1c435b
BLAKE2b-256 f73cf34632c0bf479c3aa6ad7d01acb1de29da2b919d87477247607599b2d151

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11c1bfeda3705a06a018b7e1f40f9a46df30d9a1706e0aec95c9d36bfa72a95e
MD5 a4d5f7056199b917b459370846962861
BLAKE2b-256 c4fcde5ab5708e93c7f7986c9da4aa4dec2aa3cd526b65e54986fc8466551e0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8fb4a5b8eb6e5f4664a0c8c8c12dd3b119a5de71dc548807c2479603b302fc33
MD5 7fdfd0ab81f0c654c58a6859feb64df1
BLAKE2b-256 bf9f0be7597403f581432c9c3e343d3868858d295e65e37d77b3e1749589604b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b16bd093aae8342d24bd394b91250cdaffc2f471779b42980cd3e73d3927d038
MD5 485b634e57864190b5dc7f9c5149b6e5
BLAKE2b-256 92f6f494b4031b744e3dc234d58afa0f1d29cad1d44bda88fa570258c4dc5ee9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c96a69da0fa03ba7625e521dbe7bd260df050b03ebc72575355d24706fcaa964
MD5 c337ca0ab65bd1de880267a891c3764f
BLAKE2b-256 180af7a6d4bd1d756448b5eb8c23243fda54167addfe96cc789289ea89784d6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f7a5cc4a44b42849710a4cdb96e9838ff94a9d9085b2fb3fe122efb865a9e584
MD5 e75fe9dee1fa2e5e55dd1d6de8dc1243
BLAKE2b-256 07232221e2dd4f834cdfa330ee37ca4a936c5bf47112a180214cebe0c3c439ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e46716b31b65e3241f8fb3b2c3c8a8ec73ca63450ca7addd0e2f373128795bf
MD5 d8a75e31c8b7bf119f8b4b22371d23ef
BLAKE2b-256 a1432b831ba2823fa89171b35bafa36aa980dfc2e21c0b2e55e84dd9e84496c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06940df23f37b368feb0170616139cb1a63281a6145fbd38e33c38839b4cbfa6
MD5 c1657c7b4efb73f09e8cf7f4dc0c0877
BLAKE2b-256 dcd1e1b460163dfbdf152b8ef437595bb6f3f5c941dbd34619039e423d3963b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b0c8d6e6800be8c9f0a2f825b5f708c1af9948ae399d20417a5e8eb458c43b9
MD5 04f28accff8ff5fdb5c98a30dd73f932
BLAKE2b-256 f9c8aefea11a973bc99699682573de9861cb3c1d6ae0f9b7050c561358766795

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a3d058b7dd811fe2ffcc7a2cb9ebf0ae7b7f3c25e2dd4b74d0dd52696de37037
MD5 6caf43342ee66b413371bab3a9fa4a29
BLAKE2b-256 83f3e798dbae54d2d7ddd954ddebee809c28c920ce054642b6c15621f3d779f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb9255e65ac404f64eebcc360f4f4db75735a0e3574f72ea6c9b8238e38b3100
MD5 feff0b4a759e0514c8efa360e55b8706
BLAKE2b-256 70c677861d6fcfa48221b9707683e23c9a2af7b8bd2106ef829b8b2968cdc9cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e250abdc7ef2432b1e77c17c9d424e79d117b2839b63f6cd90e9a1d81b49c28
MD5 23984c466684eb575ab44683f202e041
BLAKE2b-256 6be0ef34aea75b6499763054d6a6861a5792d651edaf6897263492af9151ea59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47c3130986116f3b37e4293a965ce0b788f0f79524ccec8493ea1eaaeaa69a14
MD5 f5f036191d034db3c9e5f3cc2da64656
BLAKE2b-256 d6ef0b3b80fa765a7d6100731bc5da7726f668fdc09ddf148970865a5b1fa027

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0a9749e22e06ee636c55cffc968523d732990a187fac2afec11a4d3253b2c305
MD5 53d47c515dd5b1cd42af59d929c32e3a
BLAKE2b-256 9f37a47824e4b37383d6ff37078d683adeab5e28df080f16eb98194d18a24957

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 607afc940778ed51e2315c576f6db414ffde874f6438181bbb6a165307f95268
MD5 04cc7b2e71bea341c2d290b3f68fbf91
BLAKE2b-256 867ce67a03b7d3dfee80f3c0fd2066338674aeab101deb90b88a88255a4257bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 176ea43b24829664f23bd3fd9dbaa013c806f3e5c99487a36814050ce861a75c
MD5 8215cef3cc6a1b3e895c328512e8c4a8
BLAKE2b-256 157b916c28d5e59962a3e5523d7d11062f48855e9aeebe5245f93feb2cbdfd3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0822eb407275e266c0f8de0f4a30c3c8edf3cb317459a402d28b424794165a5
MD5 62e1fd19edf05a991fd5be5f1896bc59
BLAKE2b-256 291d870d24a3fbf9d064925d73bc4f730dcfb80fae8eb4bca78122907341d6d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.14.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0b5bbea9bad22bbbe00404d16448cfab499a49eb338db8ed7872190da6c41f5e
MD5 649b71e9c78b5610a6f215160d7ac42b
BLAKE2b-256 bc437059c626d5afab38ad8d750632d4d4bb7f4bf8e45e9efbe86283a077b515

See more details on using hashes here.

Provenance

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

This release

0.14.2 This release

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