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.0.tar.gz (171.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.10.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.10.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

aerospike_py-0.10.0-cp314-cp314t-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

aerospike_py-0.10.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.10.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.10.0-cp312-cp312-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

aerospike_py-0.10.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.10.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.10.0-cp311-cp311-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

aerospike_py-0.10.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.10.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.10.0-cp310-cp310-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.10.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.10.0.tar.gz.

File metadata

  • Download URL: aerospike_py-0.10.0.tar.gz
  • Upload date:
  • Size: 171.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.10.0.tar.gz
Algorithm Hash digest
SHA256 b96186789e017739998e4e0685860a4a30f3cda62f0d120903db6574f9695767
MD5 ef275c01fb6f4fb92d00e01682e2dd2e
BLAKE2b-256 3ad89bd31d9daec7e2725730ec746a41762c3d4c372656e4056e21e560761844

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5987dde4cca755f81e74255bd5f28c5f311174c40cdce4c182454d63e806c126
MD5 7fe8a2b8a292ff4e5c4bdeb4f54af080
BLAKE2b-256 2c8964e5821a9335693c8e5d1ca8c36dd6a81902a09112b027f2d82e5ee2673e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3efaff04bb4040028eef04e8f138f110b9a6522b1c642c7490171f9de2549216
MD5 ee1c9875a5fef4423e74bf414e7ea5f3
BLAKE2b-256 3e4bae2336876b403f12deecf5673d8afa30537d0669266400a93694c3b1f515

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5a62368fbe09c370e4b64ebcf57bfe5486a646d085acd355104e2e8aa1549800
MD5 54efbae199ded3fb4a013582aa95a8ae
BLAKE2b-256 6dd3b8bbd448d035ffee7619f037a559fd6bdcb06e3c7c1035658130a82b3c7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1750c462fd7738e3990997d312186e9d4ece87a3fac3c61c40a0656cfe568340
MD5 f6e6a547ac649b274af4255350f804ab
BLAKE2b-256 289955205b6663ac53f42bf2c950d297dc07b5610bdd5729b5090ca5477a3a02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 443bbe18897b4b8ddeb275c4a4ef738e1dce782638a386eae1d2952e0ad23002
MD5 581cf01d6ced8e3af573d429bd47c4ac
BLAKE2b-256 fd9a2bfab0734ca85c735bbea261cf310f057ebc203897593f4bfdf0ef82d035

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c77eebf40b6047ce5fbc69fb52a9ff99c626321f9ead995f2c470959e158c05e
MD5 918d3d6ab11f7a44e4720d69cebe1677
BLAKE2b-256 1c3968ad2f63e9356838305809d37d43d3f84164c411e1c268bbbbade15fc316

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3dbae42b8a36166ca37496c87972aaaa1a47bee50382f40688a7e9859caad3b0
MD5 a3b03f42b2a439e6d25c063e73a1acff
BLAKE2b-256 17cca028192c7fa929efb4d2d1fb6460ad473cf9685afd3fcfc771ffe574f286

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 02c9984e3cc0e05f72189c9f1bbf11d55e1482c8bfc8435a843b7ad80cf05584
MD5 c19ae38a0764b991414e432993cf3b1b
BLAKE2b-256 9a362609837a18ed83fa101db7e24f8cbec53de97e0e0e7d0c2896b3862f6ec6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc40a051ab8a6ea1cc7595ef71c03cce145e18d23994e4d762d139fc93c5017f
MD5 91437aa17ed1992eda2f196864b44a79
BLAKE2b-256 14ec11683e9eed6bb257f5a7f0cd286ff94f5a22242abc74857d2055cca6208f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b036827cd79d90728930f55d77b50a53d2266c88265636b35381f0099dc8543c
MD5 3efaacd7c0701d366049b1c339526dc1
BLAKE2b-256 7eef401d7a2cb6621d6986ef25a2b972f3e738cdf26587d7c040c6117652636b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eac33d58aa038d16a6f7c16f777ee785e917b30af30acc72edcf2f42c196aadf
MD5 e27a991d218c5dbf072f9bf249047e3f
BLAKE2b-256 5d6945a6747901c7511febfb7df0c2af6d179f50eb8fc48700d622e00152b83b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8cc99f8a828b15035fa917b1f9ba1b3bfd25eca9d2a62f4ffbffc89ee0e66c1f
MD5 4c83dd6b9ac8bac172ee2b23c690c189
BLAKE2b-256 7e123bcf1acea0512f3ad0a894a2c2ec42d46a536347bb3cd36977992318d3bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f1471992886c492c84a4c5a9dc68aa0059daeddc82640c8a63e6fe02b3264975
MD5 fa1399907adad166dc3209f45ee67d51
BLAKE2b-256 ce91b4d360a40dfb5abc344eb5fdc8779156a14af9f191ca91797bdf813d03be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 00ab91fff9d11dfe2b28b1a760148c32705f53029d859cbdc9d09ef9bb8ca7e8
MD5 3943412459b4ad90b62bc44c555c62e8
BLAKE2b-256 f2c76bf0bfbd2d105046baaf6546f059961c97c1c7760d04e07e65f04ea6f8ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3803e52371ecae399530a25eaba991cfafcf215664add190b552083be035e278
MD5 65fed458ddf594e18c8d53d948e9cd19
BLAKE2b-256 50fa840ba81f9e8423cd75c74f3d66d83397165f5a0b8ba70632ff845761a6f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1aa9848a881a1e7c2094727a36b3a54a3b697b7f4589e7e2c1185a82b9feda3
MD5 fe1ff17546224ba257c986f7ba8a0e65
BLAKE2b-256 7e23796c5a6e39743f50b83c9c267ac1d0f3009c49ea888adbf412033ecf7dc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5e3486a006d9003172bd97c5b4eaf2fc11a6d46ecc5d9af17bb6d48226b1d92e
MD5 33b15ed18d91a462009379d954436286
BLAKE2b-256 763aef1a9e9f59fc8bd661ae72ab7418f63b796c358a3acbb1b36f22d60dbc70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 344d272a7f23ae48c8f3445132e6cdfc3ae97e41ffa52e9ef9a35f3cdb025533
MD5 6d5e0424fde2e7ff3c8f0a50d53c69ab
BLAKE2b-256 80b8d394a89343aedc12caf33c061a1d90cf95503a52779b0439f24d0a5163b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1530884edf662b1fa8eed52ee949ac3b492e2aa9043d7fd0a3760bb2d436556a
MD5 40a36ec33c29f7aca27e5e424827e54f
BLAKE2b-256 d1b583f51bcc3831b1416d799a9f863cc4b4f95febe4f61e032b030550abd8c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 502a0314738940e812fe24c9ec4c37467f457a08435f1820fe4a77e0dc34953d
MD5 cadc6cf0080e0a976c008ce9543f36fb
BLAKE2b-256 3a34aa8d1ed8659355ce95a0891b25d615f497f696521a4db7789696a4b221e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5afcda29781ba56d52999962270d2455e36f8b73f699cb1c4453bc9685e6d6da
MD5 4d9486a0a349bc81eb22a8e9eb2ae854
BLAKE2b-256 957cad7678339a7020caed6390f437003ff634c2b39c3ebf4b561826a7d24f47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b02816b298510575c0e3071d787bf2469435e14ea2b65f9f2f9c5ff151d90ea
MD5 71030d274c8c80c5ac2846841bf76a15
BLAKE2b-256 fc09285573031b53bf11c38a839c2d8068e49fb3b116edea6b6347c27d329bc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 13c35fb65938115f659e468b972afd38cb81939d1c1927fe218ece72839b847c
MD5 1962bdd038b396c9ed10c1882a4883aa
BLAKE2b-256 71b005e2f111d7c218db4dd3cc27dc80c460fae2908fbf60981a71c32bb61f87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e05ff9777099adf3f7f2a8ebf21bc85350966ae25968075f19bbe0e6347c53a4
MD5 8958ddf4fa123abc2feac3362eb1e93f
BLAKE2b-256 5d0b4633f5fafd5617575fc085dafbeb3c47b778f46f14c33547bb69e6b95751

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 775787edc64aa0aed2b573b62a9971ce4849eaf1086b1110742310ab3e37f508
MD5 66b2514e8140135a1558e0c2a052650c
BLAKE2b-256 1ef0e4cccb7860314e4604ab64bb6486c0ef85516748d79fa41881b4b286ed1a

See more details on using hashes here.

Provenance

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