Skip to main content

High-performance Aerospike Python client with sync and async APIs, built with PyO3 and Rust

Project description

aerospike-py

PyPI Downloads CI Python License

High-performance Aerospike Python Client built with PyO3 + Rust, powered by the Aerospike Rust Client v2.

Features

  • Sync and Async (AsyncClient) API
  • CRUD, Batch, Query, UDF, Admin, Index, Truncate
  • CDT List/Map Operations, Expression Filters
  • NumPy v2 structured-array results for batch reads (skips Python-object overhead for analytical pipelines)
  • Full type stubs (.pyi) for IDE autocompletion

Documentation — API reference, usage guides, integration examples

Quickstart

pip install aerospike-py

From a source checkout, start the local Aerospike CE container with make run-aerospike-ce; it listens on 127.0.0.1:18710. If you start Aerospike manually on the default service port, use 3000 in the examples below instead.

Sync Client

import aerospike_py as aerospike

with aerospike.client({
    "hosts": [("127.0.0.1", 18710)],
    "cluster_name": "docker",
}).connect() as client:

    key = ("test", "demo", "user1")
    client.put(key, {"name": "Alice", "age": 30})

    record = client.get(key)
    print(record.bins)      # {'name': 'Alice', 'age': 30}
    print(record.meta.gen)  # 1

    client.increment(key, "age", 1)
    client.remove(key)

Async Client

import asyncio
from aerospike_py import AsyncClient

async def main():
    async with AsyncClient({
        "hosts": [("127.0.0.1", 18710)],
        "cluster_name": "docker",
    }) as client:
        await client.connect()

        key = ("test", "demo", "user1")
        await client.put(key, {"name": "Bob", "age": 25})
        record = await client.get(key)
        print(record.bins)  # {'name': 'Bob', 'age': 25}

        # Concurrent operations
        tasks = [client.put(("test", "demo", f"item_{i}"), {"idx": i}) for i in range(10)]
        await asyncio.gather(*tasks)

asyncio.run(main())

Performance

Benchmark: 5,000 ops x 100 rounds, Aerospike CE (Docker), Apple M4 Pro

Operation aerospike-py sync official C client aerospike-py async Async vs C
put (ms) 0.140 0.139 0.058 2.4x faster
get (ms) 0.141 0.141 0.063 2.2x faster

Sync is on par with the official C client. Async is 2.2-2.4x faster via native Tokio async/await.

Claude Code Skills & Agents

This project has Claude Code automation configured.

Ecosystem Plugin Installation

Install aerospike-ce-ecosystem-plugins to access the full ecosystem skill set, including the aerospike-py API reference and deployment guides.

From GitHub (recommended)

Add the repository as a marketplace, then install:

# Step 1: Add as marketplace
claude plugin marketplace add aerospike-ce-ecosystem/aerospike-ce-ecosystem-plugins

# Step 2: Install the plugin
claude plugin install aerospike-ce-ecosystem

Project-scoped install

To install only for the current project:

claude plugin marketplace add aerospike-ce-ecosystem/aerospike-ce-ecosystem-plugins
claude plugin install aerospike-ce-ecosystem -s project

Verify installation

claude plugin list
# Should show: aerospike-ce-ecosystem@aerospike-ce-ecosystem ✔ enabled

Contributing

See CONTRIBUTING.md for development setup, running tests, and making changes.

Repository Automation

This repo wires several automations that fire on commit, PR, push, and schedule. Knowing they exist helps you understand why a check ran (or refused to).

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

Run on every git commit. Install once with make pre-commit-install.

Hook Source Purpose
trailing-whitespace, end-of-file-fixer, check-yaml, check-toml, detect-private-key pre-commit/pre-commit-hooks v5 basic file hygiene
ruff (with --fix), ruff-format astral-sh/ruff-pre-commit Python lint + format
cargo fmt --check local Rust format check
cargo clippy -D warnings (--features otel) local Rust lint, zero-warning gate

Claude Code hook — .claude/hooks/

Active when developing through Claude Code with the project plugin enabled.

  • pr-perf-gate.shPreToolUse hook on gh pr create. If the PR diff touches any path in .claude/perf-hot-paths.txt and the conversation transcript has no perf-impact: verdict (from the perf-impact-reviewer agent) or benchmark run, the PR creation is blocked. Forces measurement on hot-path changes.

GitHub Actions — .github/workflows/

Build · release · docs

Workflow Trigger Purpose
ci.yaml push / pull_request to main full validate (fmt + lint + typecheck + unit + integration matrix).
publish.yaml release: published / manual build wheels + sdist, publish to PyPI.
daily-release.yml nightly cron / manual nightly release pipeline.
docs.yaml PR touching docs/ Docusaurus build check.
docs-publish.yaml push to main publish Docusaurus site to GitHub Pages.
docs-version.yaml manual freeze a versioned docs snapshot.

PR & issue automation (Claude-driven)

Workflow Trigger Purpose
pr-reviewer.yml PR opened / updated automatic Claude review comment.
issue-planner.yml issue opened / labeled generate an implementation plan in the issue.
agent-implement.yml issue labeled plan-complete execute the plan, open a PR.

Skill & docs follow-up notifications

Workflow Trigger Purpose
skill-impact-notify.yml push to main, on skill-relevant paths open a routing issue in aerospike-ce-ecosystem/project-hub.
ace-plugins-pr-notify.yml pull_request opened / reopened / ready_for_review / synchronize, on skill-relevant paths open (or update) a follow-up issue in aerospike-ce-ecosystem/aerospike-ce-ecosystem-plugins so skill maintainers can mirror the API/docs change. Idempotent: re-pushes append a comment instead of opening a duplicate.

Both notify workflows reuse the GH_AW_GITHUB_TOKEN PAT for cross-repo writes — rotate together.

License

Apache License 2.0 — see LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aerospike_py-0.10.11.tar.gz (188.2 kB view details)

Uploaded Source

Built Distributions

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

aerospike_py-0.10.11-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

aerospike_py-0.10.11-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

aerospike_py-0.10.11-cp315-cp315-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

aerospike_py-0.10.11-cp314-cp314t-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aerospike_py-0.10.11-cp314-cp314t-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

aerospike_py-0.10.11-cp314-cp314-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.14Windows x86-64

aerospike_py-0.10.11-cp314-cp314-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

aerospike_py-0.10.11-cp314-cp314-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

aerospike_py-0.10.11-cp313-cp313-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

aerospike_py-0.10.11-cp313-cp313-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

aerospike_py-0.10.11-cp313-cp313-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

aerospike_py-0.10.11-cp312-cp312-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

aerospike_py-0.10.11-cp312-cp312-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

aerospike_py-0.10.11-cp312-cp312-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

aerospike_py-0.10.11-cp311-cp311-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

aerospike_py-0.10.11-cp311-cp311-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

aerospike_py-0.10.11-cp311-cp311-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

aerospike_py-0.10.11-cp310-cp310-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

aerospike_py-0.10.11-cp310-cp310-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.10.11-cp310-cp310-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aerospike_py-0.10.11.tar.gz
Algorithm Hash digest
SHA256 6d4a594730c122968e9210c6df72a0d4c2207bc8fe75f44fd3c4c0cc1eaaf596
MD5 efc31a57a41b41553e71434b72d676d8
BLAKE2b-256 427764db62fd6cb3a4415c4f51e8c3ad3791959cca9cfed20fc9d4d71a74924a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11.tar.gz:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f060fe5baf4750e59d9bdbd9152ec079da4c929b5a8204f469a30050c1e51d82
MD5 b72e887008c91df13d740a92e386c50a
BLAKE2b-256 f9ce321040d9f398c3e24dc78cbecf0bf0cd15a5d3da65ad5316e256c51a5e51

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 22426d9d951dbfdd38db76a9e063db8aadc3dff2a5ea12d0bc2539e68b1b00fd
MD5 22b895910c9761cb7ca8afddef6c8b4f
BLAKE2b-256 7613da112811d67a7866fa28fa04d2435b5405985d7021a76756f9669793223a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d9fb3953a448671be532c69df25977f347c21b06c9a942008849fdaf90c53052
MD5 55cd9f8bc026bc9cd70775234e9c5998
BLAKE2b-256 3d5bc83fb2f5ccabf5a254143a6b156bb912cd0e50699992f7509713f4bda171

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f15e3c95505ef5a175ffc85c6f6abb3685743cdf7e858bff798d015d965fdbb
MD5 1d39948e851e0661d022e18cc640dbb5
BLAKE2b-256 753048d9616cba5936da2f4f4375fdb50c34eb3996d639a126f5fa9358804e42

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3acb25848627b87da185db58f3901a9bbc593e04c5ddc2ab9203c2910af4bb4a
MD5 8fccf2583871ffa068430854876f0a3c
BLAKE2b-256 ff634e2fda25ecde8a9653ff9b3efe8feed45bed2285b9adbe8b7eaec2f7011a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c53bb5dfc75c614eb6a50691f42798d31865787e0350c2831d7c5c04c228de0
MD5 b56ccbc360ddd78839edf609f653f2f4
BLAKE2b-256 032522695e68d003eb4e8f9e646e29aa210cef02361a8e6de8e02bc4aeecdef6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp314-cp314t-macosx_10_12_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ee4ce673312f5f3c95edda3384e5e51773eece38fb54dc7f66e123164c224b41
MD5 8a3b907df0d8edbd00600042f4977db5
BLAKE2b-256 99560414c0b4320a0725a09efdc705578d291922e48e3a0a9097687326946e8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp314-cp314-win_amd64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd14f84d8c0b236024c33ed6551118817765ae0d5d9925434595b025d8975806
MD5 7a5a846f6d79c68d5a441def464e833f
BLAKE2b-256 73b1d798c5faddd2bad7629bbd8ede15cd1e367747a0e395be8b6871ff0bebe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0919bb3b810100bb03230a1113e9b6db24341e024eede7e58a9bdbfb4a29cc84
MD5 be862ffd51c1508d73361d5ffec2256b
BLAKE2b-256 f28b7e08f2ba77c9a41bd77c9b8b3835fb5e01c1baa067724be9a072bd2a0db7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e3944ac41b43cfcb1d5a504f76c3f796a3bff3ba5b6e94e14048b87af6cf0d26
MD5 be217e2a0455caaa918a7aea99e09e8f
BLAKE2b-256 5d6bfca6dcb8fff46d1c85fb1b33590e9cba048ed5fdc81134cdb2598990016e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp313-cp313t-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac53fcc715c90d6fd2ee445269f20696d6e7af0001648c4fe204e6e26755082f
MD5 f1c4a2745520fd3fb00ffb32230f1d70
BLAKE2b-256 487575b03002217f38836ef9e76666774287d01424404fe28d79577f5d71d583

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 259a5e6dae11188b9a6db53d2af1b1ec467e48cc4cbef9b8d98678815e27b15e
MD5 eb0f353a39096fc579c249ab3e9ab3bb
BLAKE2b-256 ac622b1149da4032eb537652db7dfde9c8921fd6c088b9eb04fac29f52a6c1f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec4c68e0503d227af99ae11c8e10aad4d6ff644b0112b6f1d3575b8db59289b1
MD5 dd335b73db24400982daf88f2a11b75a
BLAKE2b-256 39b1254a61721446929cb3ca00d0114c3d6a26d15881a3ebbbd88d86c7b0b606

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 918d752449048d7bf057ee2fbce317739909f013d955d63695747cc813832f72
MD5 a43153d78435e0541f03f6c93df8f782
BLAKE2b-256 204babbe61ce82e9a0f816c15828894482c378e3de4aa0060f4e29a0bce28deb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c080f97e0b0ca75c1bb2d0b2c2570ac4beb5be672db296b88476100fcfae78af
MD5 1467bb79e57537768e01bc633286f6cc
BLAKE2b-256 6b1758dfb7e99f2823726cb1340e6234440a327ffe53be63ac0ba132e2902d0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0d75215b5f1ab7f999dbfba39bb1df1ecd3c3a3d6f3f1079a5f200dc6653a231
MD5 c0f46fd5e61c57deb121351e3a5c679c
BLAKE2b-256 56a01d7a41ba36a36557d13fb3e38168cae15a5445ac5a04a609e6e05e67030d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 697a2cee53c9e970863050073593f757a94f6d8cb5db1bfd18a84544d4b9cc35
MD5 c674c9103efa2375b26974efa476d155
BLAKE2b-256 f059529f76219d95f3f8cfb28a208571d1b77b122f873657647bb2671925cf88

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d4d32eaf3a069b35e072db53910c31287caf7bb22a8c1d9de2adb86622f6a009
MD5 a783d46292ee705b14f1a7fbbd565fbb
BLAKE2b-256 5835a881de7f5a2def6c9585fabd7955f3bae47a551f1cbaa67adec2cb3dd868

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f6e385a38635b5cbeb902b0aaafeb19f6b7c0c0e4de14cace1909750ae12a09
MD5 cd737243ac1357543cc75fc14a45d3dd
BLAKE2b-256 df62133bf8f93fda511d86683e8ffdf6ab7c388e8a3d13cce2c0cbf7856ab7a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 17962053762932ba007e94f4961c584388e57103616e2a08bc26f742ccf81814
MD5 86413e697af09d69ea4df47e8d170d45
BLAKE2b-256 0cd68a992eddc037e346a94c7ca3639c4e338e07fedfc06a277edd946c9dbcbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14d37398e61554daa3089b4eaf3985db25b34d11e2c6aa9501e2aeaf4343c46b
MD5 58e90cc79b17f2caff665fa151f334f5
BLAKE2b-256 a7772d722a576f727a3cf25749d95b584d196cf5f8814727b767337c775d139a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c3b9a65f010dc3253093085fcfdef9685cef1d725757912262288acf2b1ecd22
MD5 6448921aaf2afbec79806996c3712c06
BLAKE2b-256 43331b583cde81dd66df6ab2f86c0a308a8424be0f5cfff66a649969fc766f83

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3b7c1531ee87e4b79781c1d380b714400b088d40a5cb0095634a5516489728f
MD5 9bd6b5173f0bdaeb2a3f839a050d09d7
BLAKE2b-256 a0aa4e63b4bfe672cb5d517ce260428cb7d92d4eb8aacdc93f62b139aad0ce81

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9b160380c7988cc9a1e4f5ab724ca13333bd03747cbe1521ccff55faf19219b
MD5 8772c18f70c9abf43fcbf5dd699b4c8b
BLAKE2b-256 0af9cf62c72d0f4f3d074adc06f8f0c533a934885f580215867fa360dfe916be

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78cd4d0661e3bc565fa3c012e47d0c8fb28b06f0803e279c6749dfaaac696670
MD5 ac1841003c9d133e87862d3e05a81636
BLAKE2b-256 2e0731dcdd34c6f65cb5c08286e3870ba623ad4cabc0992e64b773ef2c478ab3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.10.11-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.10.11-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9f9716237e4a8a527556057fd3ec0b3ecefe50160cf1d7f0956a1770b7439abd
MD5 2a39855bfb2c9c880ddc601b1bf2e36d
BLAKE2b-256 062569a0410f9da916c93d0b35fc75e15644b9d2bb4ed561b31c78e30d14766a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.10.11-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page