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

Sync Client

import aerospike_py as aerospike

with aerospike.client({
    "hosts": [("127.0.0.1", 3000)],
    "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", 3000)],
        "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.6.tar.gz (172.6 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.6-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.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

aerospike_py-0.10.6-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.6-cp314-cp314t-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.10.6-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.6.tar.gz.

File metadata

  • Download URL: aerospike_py-0.10.6.tar.gz
  • Upload date:
  • Size: 172.6 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.6.tar.gz
Algorithm Hash digest
SHA256 b8c4bd464d94ae8b5ec83e42f02feadea3026a7b4d438dddb9188646ced67bde
MD5 35845df08fa9f3bc02e7be05d07f2d8d
BLAKE2b-256 58a6af86bd5429cd608ea8b8740d45edcc46d8c69a4e5b637a2c34c6d1b744fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 40d2997cbea63d493e673804cefe6f571bca08e329ae42e2ba699d7a4bec5589
MD5 4c3fbc9a7a875b99b2d18719d3cf4c6c
BLAKE2b-256 17ba8c15cda20cbab6f92bbff306b24a84069c188127150044a1e8aab66b289b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cd54b13884217064abf65be216afae78ef048409d1dbddcc86f0a6f818e0c400
MD5 b7fb0b17c593c2eacc4431076ccc4b4f
BLAKE2b-256 110d707a9d7f00a5dba62cb9e1d13c2fa5b64954ec7a792bcb771c7f0ef56108

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 653188569b83f99585efadbb1a6fcd7550fefccd3ad2a3f841299ae6836e540f
MD5 a2fda69d5a27044e46ed26994b30dab6
BLAKE2b-256 29ccfff9eeee5e8407f2bcd308cbca6e128a798b195a2151f1653db86439280a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5054493ca0716dd757d70b505c40870a6c04855d4db1f0549807c856d81b9fea
MD5 3a787ee656201e57d62fcb9d9be1e6d2
BLAKE2b-256 3b04f29a510c735e5ba32b9387dd4d3731220d31478528d2f24cf01677a5a7f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4857ed7c4fda4268646ecbfb2b62c3cd3e30bcc34b9d9e8cb8b35a22dfde1e65
MD5 a8410bd4133a990da5bdda8c580e7c4e
BLAKE2b-256 f9645d73baefe7cdf7ad8af453471807c8541f80a85b3992d0813fef72c83e07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2fbf0fdcd9c5dca237eeebb3302bce971fdbb420def2dd915876ce9502096c32
MD5 51fd177b4c90ae82db93931d7b5d13c6
BLAKE2b-256 5be530d2be9ddb2cce8ec80d3740cdeb73544bda248b8c1794312e2b2d157d4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7a332c7310c4508010119893133dd75d01af553c42a5fc4cb56e5cb84931452a
MD5 545450e15887d09ee29eda393127682c
BLAKE2b-256 833cdf135edd05495eca3e44df0689db4a24059d673c0f24bdb31b2361843a61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ef920da86a4a49d6159b615d028787f37291a28278673fd38f407cce08ae20a0
MD5 964ff14d7c2c207422d072fb10608cfc
BLAKE2b-256 500423128cb8a69e4f26307a7acd975d3bfcaa2ff08168f794d00a79221fd6ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 22493d20b991eeb59e1c6c8daa851935841dc3123aec5bdae4c95bc0ab7dbfd2
MD5 7152773ed7df222bfee1f5c55ec43f01
BLAKE2b-256 515baaae672775d26274782b6c8857e17a9f7bb89a31cc0ec7247b7a02081999

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3fbfaf3e781057ef64ce429e376183549249f4cbe317a92f7742a73d1d8766e5
MD5 698f4b5fbd451d16a7fca9d0716173f7
BLAKE2b-256 a8388c3fdfc6283983e34f16900a0809074c6db0d57970e1f4882bb7e02d07f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f497900838267898259a1166a072fea2ecdd9cabc110e3303b39bf72c649d062
MD5 250999444703655214a1fbf2f856ed53
BLAKE2b-256 f46a16c7f413396f22c4510efb3153ba09c2f6f7eb9a6289bb2049b8d8cf2b1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8c03a3147d32dc16b9445bf9008e736ed714957410075da2c275cc062aae37d
MD5 8fab8b815050a407a64ebcd675718863
BLAKE2b-256 7c3619c59acd3a8c9ce438d989dc3169c397dce73634a4d2a4dd04a73a72057f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ae800cca623886ce5ce92d0608cea16ccefd150639c1d0bcb6888e1500b5264
MD5 f44036f5fe6ec54f35dbdd1309bbefa2
BLAKE2b-256 d83bef856da2b032534c5fdf6a3715709207fde4f2ccb67d5f226154c61d74c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 15d1b1e06d3bbd39e4cf36dcf0d249246a4c3daa5c7b25b2f057edc1519f05d2
MD5 b95567210a3c9acf7a8d1edd7de55ca4
BLAKE2b-256 7e253e00d6209566ffead57110f3a1dfab3c95004425111886dce706a637b98d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c36a53e8163973f79a4ca693e443687b93932be730767c0c632a7b9e3d773df4
MD5 0f2ff1822e49373ae6a9d67dea758a3c
BLAKE2b-256 02883a2042a8b5ef6e5f1d5e47626888bb1850a364f0e8f888f6ad1bf0424fe6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 85dc9466c70d20ede600b21b2598e4345a42f9f1a831d2813333fe08f9cf2053
MD5 b1b27c33422ee09887d1cebdc741a7c2
BLAKE2b-256 0f6823b604a6f390b1f0454ca0c2499165ba0b8474cd73c89fb13ec9dfe0a461

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba4b4540f1e0334d4b9c567e72cf0ee151490f688be523d39e837850f186f688
MD5 e5d67ee8a016a300e2771cc7a3104326
BLAKE2b-256 7d315f43045be1d75e45c870642f85289fd93321893c11cd6fc9693cb40bbcfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 efb9f5c47c3265f0f89c6210800d22d616b895a3c64197bc73772d76dd27bbdb
MD5 b45d0c7f6e698a570f394f5e39f1952f
BLAKE2b-256 c74078e6bebe40375bc1585beff51f6cbf8dffc45953c05ff4c853fcdeae2ea7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e08e6007dc20d58e9b965ccbbd2a05341cab7d761aa5c99c5263a1eb724b0b04
MD5 bb12cf7284684ffc3b1b8ca2f1e9d186
BLAKE2b-256 5fd1be754d14c737264beebba9f542bc6523ad6c517e3baca1d4add073581d81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 17f1a038341bdb40d929f5986093b1f5776b77dd3c8986d49eb4ea6218e35593
MD5 58957f07342cdda2b055de85251522c0
BLAKE2b-256 3c76a6f1a45663aea97b8ade0fac804b49074a7c07fac27e0ad5f1bcba4ac5f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 179129a53c73e2efdba4881e6c1f4c9e5940c77a1c82ac5d14421a5e76d6b8b7
MD5 a82f4e77620af9718b5e498bafe3a0c1
BLAKE2b-256 3b20241bacd9f3c20be6bd566553ba63f0f7a03801497d39158ffe362478e25d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2b4e6ef3606c9749ac82557aa41ed2c4f5fd24e6f360fbb6a3051e856f5bd8f4
MD5 81f54ec7121705740bbfbc06ef30ed93
BLAKE2b-256 105e3f8df485c0484160ffb1b677fe97fcb63800f02a511f519e5352cae58507

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3ec3c69e8c59a0971a21c8aff841e555aab53395ccd30aca45dc2b0efe30bd9
MD5 90ac9dd6a467ad8f900cfd929d6aa26e
BLAKE2b-256 acfd15b547bbf5d1a93dc65fe58fa180bbc0988484a0cd1ef4d5aceb5314572d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2dcdc127b20ded2edf307cc05df81c8674a19b0c90f517859fc1cae13052c68c
MD5 e58cf0f6d5c86b3897f507810b24a5eb
BLAKE2b-256 bc4d8ce3d895e90c30020669585fd5ca6fde89363b8c94c928ddba87cc6c2756

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e31d219c6bf3f038ae8f75ff6ac9570135d29a92167a3e21633463d2de23f91
MD5 96de1cfe89813eaefe5d6862519a5a33
BLAKE2b-256 8c98f06a4f09089bc2c7a0bca44f3c1f7793b42f2468cf0d74f5d94eeb7c79f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 339a57071c689a907a29ab9e5b8f4ee0b4d144a2d89025a134740fe7db5cbebd
MD5 45744e03dd9ed5782226bd0b5639f826
BLAKE2b-256 8a73374e7999c92bd443bbd74238a081a22a599e5b7b6e5e8283128f7e8448f2

See more details on using hashes here.

Provenance

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