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.8.tar.gz (173.5 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.8-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.8-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.10.8-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.8.tar.gz.

File metadata

  • Download URL: aerospike_py-0.10.8.tar.gz
  • Upload date:
  • Size: 173.5 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.8.tar.gz
Algorithm Hash digest
SHA256 3d96f3954ed6960fc2ec3abf6580a399e00ebc5653969aa7608c2ed24a32f83b
MD5 58a4a13fe7b62acf438cfde8289cc976
BLAKE2b-256 5d3434b1c316f8caa92658ac84d5e7269bb52b6d2b1d7a906b9ec1d461bf0b71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c478514d41157b23df45f50bdcbdaea896ddbc41d17d51f701599544056124b9
MD5 19233758d3ce7410d3e8c9b91417ab31
BLAKE2b-256 e3accb5e72d4d55a3cf660ec2a41e703521f6cd77ed734968916f4ac3c861792

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a2eb993a10898f97fc385e48ec0d53b3d5e729899a621dcc466b7d44b13496a
MD5 fea6b6660bf1d2e8c51cb80353d90eed
BLAKE2b-256 9c2c758bb2618cf8ebf7697079aace7ec859a7bfde1945ad1a137a861e9fff3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c01e46c1ac8e877dc8d87233a5850f9162c630d192e9152d447b4ecd2933260d
MD5 82c0cd38b972a4189313ee9fdcf7a88e
BLAKE2b-256 b05b6f4bc09220f35fd084826080ba1ea34f0fbf4877e6ba9cc9828318031c12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3cf84f80959b3e462a601417cdbda612cc8de051684a7614140f7322a639b4c0
MD5 1a8b99e258df5da9e9ce2b389b29ba7e
BLAKE2b-256 4c0237797648ece0964e984e3a8afa3a36b87ea3ee3c0659811ce9ae064cc0f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 620ec3ee51451c5bbf0f4aa826524fc256c2f559205ff44a7e2f863221b56338
MD5 ed6573c8977b489d9c56eb2f46a48dfe
BLAKE2b-256 d7e0b822f0d4e6d96bd7a3737f125304a91da6e093f6d39be76fba7079c5e484

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e38e2f7e2bc084367ed0815ac1dad29129cf30d644840f08edef7824d66f4e6
MD5 86681706554f626f0d0a1994a3244847
BLAKE2b-256 0347ea170b2a25a084911aea75788221f8a1aea602f46d10c7079d802af3dc68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 86260d4913f141d725bb5bca408ac4d7aa56102e7de450fef0a8706562581737
MD5 94ff99fd28acdd472103e238e6f09908
BLAKE2b-256 72257d2842b03093ac7544e904267b85cd50aa02f4d714dc8cdc16e6b2731e4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 878e09d890e5fa69af646d213c67afa5282a880a09470046f46bcfd6d6a3f68d
MD5 7dbffa7764e10ff1c6dcf766e77f8733
BLAKE2b-256 1a07b5e91e6ca26a5eed81cfaa6e0a022c52c19282882e01f4dfefc90e496378

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 523b5d6143c310957e9e458f3c322221eab9232aac2abcad96d03889a3914d07
MD5 47bd9ba5c2036faf6169bdb8c6ccac67
BLAKE2b-256 8829d4e6eb6299436fa901a673e0c0af300b413d1af89783cf2e66d7e13e47a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 22463a4323c279976425cc3d33b26fce1ece606cb0622851e91bb77e9da741c8
MD5 ad88ee85897917141364ba543e73b04c
BLAKE2b-256 02d63a1adefa5037aa0102ea23cb5b0d24eb062787242375c4302467524573dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd131a0fbc5aa1bdf00e58fd7abbb3b8554a753648eac2e6b16b0f39dcdd6c75
MD5 3eab01b292eb39d3a7e4137cadaed336
BLAKE2b-256 18b030a71531118c113eac4e0e786267fa17596eb8bd2a23766b16b6d644ba66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 782879ed621b7cedf2e4291356b8be94a4ff60a5314e69b28e3e35ca85cbb5e0
MD5 9dff2c33a9dc8be3e4aa641f0445da68
BLAKE2b-256 2f6f87060bfbcf9b62a36e362ef1cf1278b359af3408b64caace2e1091ecd01d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6216b9287e2d744658bc8798d114e87867e531d01af16cf75475f9f0c80e761b
MD5 e9467f3f57ec1c4d30daabd221ea502c
BLAKE2b-256 4c0e2108b4cf6fafa1478caf73e2f5ed6cccb42c98155a40f38ecd771596195f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aaa802d2a996abee47e946c63b76edc187fbc1bcfb72ea6d17ebc88a2e555544
MD5 5da94d0e65635d888f53969ce781e11e
BLAKE2b-256 0e797f0cc6557e6605e33862f26c6e4936d7da139ca9e13ea6fce44008d0ed84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 051d28228972ffa9833b6cabc36f9e07adf4d91fd608b17d71e2a96a0ed26380
MD5 f319feb3b25969fcf495290baa3e789d
BLAKE2b-256 fc305132094ef000fb084def60f2f6fd8b7c2669ba6514b9c5d9799d4ac53361

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64dc15aa5ce7a6b3695c09556a70998629fd50160d96b7f443cbd676d5b9248c
MD5 ab2daa2e9d131640c78d0e404b2301ed
BLAKE2b-256 b49b32fdcbdd214dc593b03babd741e61097759827f8003f5c5a7ca2de3b7f81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23d548447510a30d3dc9e79d1686193bf4412f34b7cf1382582d18f2191c3a0a
MD5 1aef25a588b16b755ecbd2a58bd65017
BLAKE2b-256 b85aad2891d01e5ef92d8153abe914c4f02432ce635f9484c8d8819f3cbea015

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d881df3c6c8896675f02484fb1a864adfa70b55c81f6bbc403a80bf1ff995032
MD5 bc505663588e8144ffdd77b4564994b0
BLAKE2b-256 5c1b21d39b4502dd1b8b3c38a3c7a05e3147fca23009d63b8b4cffa7712ec6ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 60445c9f99ebe48cd7ae0f52ad69b9cd4a9adbab82ada5ea20e9d8abfe92ed43
MD5 23f95c79edd7c2135c5d368a713667d3
BLAKE2b-256 0c6dd2ea2b637ee497302ce6aeca5950edfaf6bf96220816ea593140b70ef4e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e4bb5bf57b4611aed0e14680dff0a2393a4faf3563333b6d90eb29a96638cad
MD5 a38829ab90bffba153a82b18af8820e7
BLAKE2b-256 192dbe1bc0b89f0d60da7e78f1fc375a7d93bc64554366d4909f5d5a41e8f76d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cbf2f05ed0d3d1f2e7dd65478da8c123de4889ee499e437bad46660edd929b8
MD5 97a1f5041a7b2d90fe7a2fb6a4bdacfe
BLAKE2b-256 2e3856f19bba1818107781297669b40577911de0085d4cc901c1dde46234d45f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 87ff2340276c08bea085b1cb239278449a60410b522210eba7bb45a1df9e303a
MD5 395c6e1ad0bb84a6f78b9359288aed77
BLAKE2b-256 07f2472fe1237de9707ef03ffeed3e5570df231d36f4c0490d101a92f5a1361a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 503272d6db552b493df202df72cdc56fa20cad62afa2ecb635bbf4dad99cd2c6
MD5 84c8359b9dceb4f8d2c8fcd04d9d3f32
BLAKE2b-256 c52846d51acd2c5d2a92e79fd91c96ae6b5aa3dffe09fb69d047d51325ae0a38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 44998cd159bb04825c45cc57f6a21c8c9ce992bb42faf6237ef6ed17fc17ea72
MD5 7ab1c782c541a893a1cc64bd70f85394
BLAKE2b-256 edd40ce34fb16826b18ebe01e5698d73bb757b6df57b7c6a644cdeb0a0d5f3d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8776bc8aee2d76cb65c2fb9f12ec6c50725ce6b0bcd5454863123114e2aea984
MD5 08f11338c517c731818b62f9c49ff593
BLAKE2b-256 5e1917a45b330ed4f4b6d9e0e03f9fc62c117c5d7745d6ea8216804d40230a0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.10.8-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee24535d6e8cb38117158578efe754613fa2e09169385ff536595b19d595e557
MD5 853a763cb07fcfc8f6e57cf780eb1c43
BLAKE2b-256 35857f2f9cb42545ed4b2b88d9da7e9c62bd33c3724115dc678515a5f4c1f262

See more details on using hashes here.

Provenance

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