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.

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


Release history Release notifications | RSS feed

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.13.0.tar.gz (214.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.13.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

aerospike_py-0.13.0-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.13.0-cp314-cp314t-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

aerospike_py-0.13.0-cp314-cp314t-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

aerospike_py-0.13.0-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.13.0-cp314-cp314-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

aerospike_py-0.13.0-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.13.0-cp313-cp313-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

aerospike_py-0.13.0-cp313-cp313-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

aerospike_py-0.13.0-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.13.0-cp312-cp312-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

aerospike_py-0.13.0-cp312-cp312-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

aerospike_py-0.13.0-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.13.0-cp311-cp311-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

aerospike_py-0.13.0-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

aerospike_py-0.13.0-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.13.0-cp310-cp310-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

aerospike_py-0.13.0-cp310-cp310-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.13.0-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.13.0.tar.gz.

File metadata

  • Download URL: aerospike_py-0.13.0.tar.gz
  • Upload date:
  • Size: 214.9 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.13.0.tar.gz
Algorithm Hash digest
SHA256 5ce6d4627c35adf649dc77ed96f6e78534b303bf0710c536e67294c3dd58414b
MD5 1d20c930a148019951fcb8d64ddf46cc
BLAKE2b-256 5c3f6be88ee056019877e094f7e068239dcca88d3944b642cd9bc84cbd7ecba0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f7e5f19561a144218b96841193e796bc2aacc05d98e3432f6965138bfb854ed1
MD5 d45e087cd25a73d919dff67e42145e32
BLAKE2b-256 5636a04baea925010e83c7bfffdb1bc26534fe5f477eef4b8ce13c1dab2ebec1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e276de9961f731fd66ad3514b0d4257827c6fb295d16c518b70b95558b1be02
MD5 9c2ea2243a0ed9440253df89a0bd0dd5
BLAKE2b-256 f25cfb92ff5e097f31c7a8e1e207447394cbc4addfb21fef84e088badd181474

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 409fda8d6137ffcf970c99c28c0ab42ed4864afae71a46d9fb2611227281fa89
MD5 a0c2d412ac7a0b15f33d4052743904cb
BLAKE2b-256 a568d534968708ef24991795b0d14a8f6a16ea8a738e1cc08019bdb397074051

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.13.0-cp315-cp315-manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file aerospike_py-0.13.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c280496c6c1074cfd7f396419a9d98ef28b39ad5b5c18a709b647565e5bbdab0
MD5 71d54314112d9a9dd2fb1c8a987fc3dc
BLAKE2b-256 ec69882c8ea50e74a7d8af77a6ca9a43a3935c199d5c074fc57ae149f84e133d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c3107a26b584debb18f7e19aad1a583772d2dcf9353c04b1f902c7112ed8940
MD5 e87668e61373364238dd31215043ffcc
BLAKE2b-256 6d017d35aeb879d3401244d55cd9439ed7692dc153f31f0b16bc4b9ceb71467e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5b4036a30464ef9b5eafbe6df1dd4a9ce69108f351fb64548aa7e2fdb8a1ddf6
MD5 57f7d6d7388e546d6f6727d3ca5a9aae
BLAKE2b-256 a317669c4b8b826c978a60e345ed747fe3b8ddc3f0247f2f3607ea7b2452f17b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c8546802e0c865dfd2446f7d5cdbe8258cb3a5cf9879026a776b80b4b4c72885
MD5 24846f6b28ab1e10b958df77fba9414c
BLAKE2b-256 d177b0c9c7b9cad37621eb052fd05520269e39b190e82796d46ddb7b69e63757

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 327db3e46dc6c72a03d482d0aaed698b46b65bd4662679592cc9335fd58806a2
MD5 6e0fe981342d4833f0c1674864645fb4
BLAKE2b-256 1466373613568362186f2c7a510ef587aaf04855e59748b809169ebbda1b73c6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 08324d625963b37c336fe283f2cd9b11f76e5f8e0ecadeaf1c0a674f23635397
MD5 9a02a1722f3d5dfeb41d722718e021e6
BLAKE2b-256 a626a880701cf950a3fd980af3748201ac80d99151dcb326f403ae2c8b174125

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 31bebd620bb2a746ad75da8dfed7eae22f1c99b574c3a5e437443e2597fa0583
MD5 ad9ba0efe2b4f1f2b1d6e76c9de643a1
BLAKE2b-256 7e212c8e326fed7acd9b76c985e74070556f80f2a52b53c73aff2283181c58ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6024ecf64becaff8917fc5a4cc165b19017601a3874672bae1d7c07b98aacf25
MD5 556730efff8d21c2bba2337a6c5fc5a1
BLAKE2b-256 20eff51f1b834132c7e0a5bac6556800c6f0b0c61700b1b8ca64fa154351a21e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8087b98ee6a574215a2a2307457e30e2f8c2aea129839548d0eb5ae1bc5d2345
MD5 f03e67f903bf1890b0d0c629ea5e2abc
BLAKE2b-256 0e1a9a0e89527ae568065cb7081ce5ab3f0880e10e5118728797117a5cd50a24

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e7d2a6465cf68dd1bbdce6d78e4fd89fe00fb10436a7afedd3c69386d2a42ad
MD5 9a3eff74113dac6e36c8b8a7f9c68560
BLAKE2b-256 84d6bea4b9ea986165c546462212c2ea3b39059bdb41b44a0b5c2ca77ad0f5b9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 db280c442d05fc924e1a363087579642459a27cdb867a5debd3cb5895d204767
MD5 66ba2aaf69e21a045768f5e3d0492b04
BLAKE2b-256 4726ab6f3de71f90a2d50e12336716185b49bd848395ec11bfc350ecd7eb7067

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 167d9ce9f7365fdb5218869d263f359e321334e9b17b9bd4789946525c7f1671
MD5 f84128b2ff120847412dd506e408c381
BLAKE2b-256 e42ef10864fc83fd8fb03327526e6262e4dcd5f5283a2cefbf5af689b6f3efb8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f1af06f5c166fec833fb1b6481953a844c2680344e8864eb0471f1fb6fec5b26
MD5 b9a297c75d5afc2b522d706db9c02ac8
BLAKE2b-256 42e3818f7fedda005145dc8217ab3a70f22aa51144da4db5016d776a4a5782ca

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a23a395caf23f593bfff8d92123f2dae644517caaa81dd1b8ecadf8a0d147f64
MD5 8c9333739701215fa61e56d8294f6e7d
BLAKE2b-256 03133a3fcfbb64276765df72286fdd7fb2b79ee605973d3e35b1caeb9eee9178

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0b53fc0401a448982f8b13e5d0ee071577d89e574f70c9c15aed5fecaf26132a
MD5 4a38c91bb3c29b243f88924c4596c73d
BLAKE2b-256 43aa6b12de6042b6430ed4ad07d4d988478501f13242ba1287187a7617b8fcf4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e21b32e1861e66ca8a61c69019d53189c25b514a38d59e2ec7144f0327bb163
MD5 57bad3b5a71efdb06361d35f05a07e66
BLAKE2b-256 2a0ac3bd5c130d983b54dce106ced9dbc0cb3b7562fa32d1a89a67289a69425e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 35ec7336ad48d40a31e45195a7d2ad855cfe2ce458b644e8de20d23afd220850
MD5 34bcf2159983b14794af9a261d28cf33
BLAKE2b-256 af76884042785f58f51be51852ea0db1882d1c6cea0918c0bd8884fc1e2d0946

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1df93463e9378c1edc1c340ca3a1050b0748ebb8f15c24e289582d361e6b5b3c
MD5 c86992bef2832c18d506d499c5122732
BLAKE2b-256 34b4bfad33bae69e0caa610d513b0e467358fc22a3cba48bb2c3a8afb40138d4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d748f78c7ebd4ea5082ae98ee8106400fb84c18b6a19c6430230edaeae9e6a7d
MD5 dc89c5dc338c33156e7d671ca44070ad
BLAKE2b-256 60d38b1eb3a7852e2ffbfa1b6f50d64dba89d8ff3cac64eea0ba1e5b52d75191

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 14dba40b59b9705780e41ef4b55bb68b43a41a70faaf7d5659aac8720d60ea5e
MD5 0077c482487b139d532f97b752b9ebe4
BLAKE2b-256 b3ee0ee29b48563422af2c1bf03e728da825dbb46624530089bd7a3ea81bb17b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d16c59abf352181f05e65cd0f0139ba1295c209ae8e000621e2ef90fd6cc529c
MD5 10f680a6a3f5e72fc886862cfaff8ea7
BLAKE2b-256 f3beb4493b0e22e77b244f611324b5aa296e52cb129130eaa805cafc6b86170d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5bbd566a0168847d3679792f1a20d8e30014b701ce34912f02e4484e3b8c91f0
MD5 ada573c18cf21799fe9aa7e60421c138
BLAKE2b-256 3d444381b81342a5296522477479b1f3c3e767f31e4997c4e202544e6c327373

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aerospike_py-0.13.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b110a268b31aa5d9ff14a746e7b3f8f84a5063e70a2e4413119fe20a81761d41
MD5 d15a7d0cd7569884f8ca26a6e7c16469
BLAKE2b-256 37080379589b659c161899bf73123cc4ed27b287d31cb2b894ef76714d22f0fc

See more details on using hashes here.

Provenance

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

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

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

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