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 Rust PyO3 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
  • 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.

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.6.0.tar.gz (147.2 kB view details)

Uploaded Source

Built Distributions

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

aerospike_py-0.6.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

aerospike_py-0.6.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

aerospike_py-0.6.0-cp314-cp314t-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

aerospike_py-0.6.0-cp314-cp314t-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aerospike_py-0.6.0-cp314-cp314t-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

aerospike_py-0.6.0-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

aerospike_py-0.6.0-cp314-cp314-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

aerospike_py-0.6.0-cp314-cp314-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

aerospike_py-0.6.0-cp313-cp313t-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

aerospike_py-0.6.0-cp313-cp313-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

aerospike_py-0.6.0-cp313-cp313-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

aerospike_py-0.6.0-cp313-cp313-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aerospike_py-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

aerospike_py-0.6.0-cp312-cp312-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

aerospike_py-0.6.0-cp312-cp312-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

aerospike_py-0.6.0-cp312-cp312-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aerospike_py-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

aerospike_py-0.6.0-cp311-cp311-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

aerospike_py-0.6.0-cp311-cp311-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

aerospike_py-0.6.0-cp311-cp311-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aerospike_py-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

aerospike_py-0.6.0-cp310-cp310-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

aerospike_py-0.6.0-cp310-cp310-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

aerospike_py-0.6.0-cp310-cp310-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aerospike_py-0.6.0.tar.gz
Algorithm Hash digest
SHA256 c6438f493bf329b33214c1a7ba65773b465a9fc9f131252070c32bceeb582680
MD5 1f1ffbf71c17e4b93528c1077aacfc60
BLAKE2b-256 ef3f1fc8a703e9d2712f875fa7a301de9f09237a760f8cef2bd948ccb7a32496

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6bf7943942ff098618528b89183f083d12408ed87bd1d3723b31ff7cd24ed3c3
MD5 c77a451a9e725a8c3d5a4d53c7249225
BLAKE2b-256 488781ab72b9cd9d404585d838a8fabab0e9b94e645900cdbbc3f06681a57c82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 328faa672f8afe68eae5af5f1e082136993f8d4b2b45a140afcf2045803bd2d3
MD5 69276f79d57ba8919559788f0b46cefb
BLAKE2b-256 7a06a033289f0ed9f09e9081ddb53a7b37453453f426f1495afb2218243c3bff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d9e031d5773ca4b1349a860cb19e405c0c685dda2a0688005561de90eb308ad9
MD5 0f9b7b5b0f4c174ea75502831012eb4f
BLAKE2b-256 b1f26492e10f9772203903690e2c90fb492722c720aed45442df02bc168fb273

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e20c2dc62f6eddb6a797dde4d615715483cffc55abd904bc44faecdf347ea6a
MD5 cbf43d755e0e2e4c875738e207ce8de1
BLAKE2b-256 38c7c69dff200cf912dae2c06b6a6d0d3e3b820cb87d27f108a29fd21b0f701c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 00fe64f2670e8c80d85c4bb0971f55b60019454d56f32bc13c9f6c37a09236aa
MD5 6fb602b4c07a4f20901295f451ab4687
BLAKE2b-256 9d55cde4c24efe2d1b235bcbdc9b9632349eb44ff5443698c6196eb01077bd5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5a70f9dc5d00fe258a0264d384dc02e3add83fd851e9b653ad866dfb92a69e1d
MD5 08a6d84b8b66ccca1d294ce7dfc6f39d
BLAKE2b-256 1dc2a2f0ed09d14b783ca32c719d0be0a7961277a8c7d870abe1d558d8f8ad60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db3f430116482bdd1ba1fcbcf823e0673b626ffe257c7aa1c229bc1cccf590e4
MD5 65bf039a539f670067ea9500b87bd491
BLAKE2b-256 af970729c39433adb4480aeefb726899e3ae882ef7265867d04166a4ebe2dc87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 860139a473eeb14119ccd016fc3cc093320eec5822ec1cfc9b51c17424798ca8
MD5 88492a942126975216fe849ece129d23
BLAKE2b-256 955a41311384774ffe876b93bf4341aa0b478c14cc78e1d0724c9ea8ab313bb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d902a83babcfacd3c1822570b48bc62f1005fc2e33d2d357ba026e628299b866
MD5 0800be5206a733d8f0d62e5e754c0e3d
BLAKE2b-256 5cd6a74a706fc7fccbddf9003e6f560bfb0bd38af79dc82e8733733cc8754e9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ddda855cb5c32bdc098e3e106cf483680092296e39da28a889d4ad3efe00cd30
MD5 2f73af475f1d0529429833ae6ea43b43
BLAKE2b-256 daff59c929fee70847800e043ba90d260bffb6f706e41c881be6e1a9ebf5daef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01b9c828777d4d212b10561918f092ed41b32fbece72e25b5eec676adb239ec7
MD5 ee4b77c7e1e5166edd2f3ea095b488bd
BLAKE2b-256 592f7d488bf92beeb6e33340d5c944cc12a5a1e58b9c2f3672a06582d9dc23cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cee0a45e5e5bc32a9d381a4cccce6cfdefb27aabc59f7975355e99c539058901
MD5 f3700cdb02c121e4e16546d41fd629dc
BLAKE2b-256 0b875b631c1887007c0e83ccb4b7844564fc1e4bfffe8162892ce176e2528030

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d9980495dea96230f2af00486d7c96f53d7ae8990396e36445e083c982de2a02
MD5 6776c24ae5dfef2e53170795cd6ccff8
BLAKE2b-256 fb6377dbc5bfd1d1f2a100833498923558038f400c4487b0177b1f6d7ac33a52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c345037e3c188cc8859005cec5dcc282407938e39db5b6c4e0d7fef0a4d77b85
MD5 b778e0309e50a87780af535c82fa1d5c
BLAKE2b-256 42e9a119750bfbb5bc9835e7d718220ceecb1aa6f7e692a87d2271aeeef2f380

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64a839214f1a87d1c5a1be691df436dc26274b18700a573e6b8aa06e9d81104a
MD5 a51ca115fa0f849c868a9977c7fccff0
BLAKE2b-256 2aa18f97561aa629fd8231449a298a02b4334bda486798d518fdc8248cfc5224

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3dd329ad80622df967c5151b28fb75c032dc936d2d9ef3d556de176b9a89791e
MD5 f6153aabf4a8d908b29379df795b5910
BLAKE2b-256 bdc4b4eb1076dad5c5dc62d92f054270b4be98f6e8ded07a0fbe4de25039aed0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b89cc584de9dff27705928788bd1e32019e976d7a0a197f22f99d19e1b5af428
MD5 bff80c43ceea797a65c994b1baa945ec
BLAKE2b-256 13176ac0e1e9a30ebe2db60199dd3b29ec640296c2b273d1f08143221d6cee01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f57994ee5eacc8d35a9a573aedeefa4ab84121cbef43bdb4207065f169daf5a1
MD5 cf725f13828f6575ee51aada45e16af4
BLAKE2b-256 2f4e2dcd1f1192e97d8c9bf11bae22b57322f17e8e4118bbc3f3c880a7e368e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8e90ab5b594810a5dbdcd79eb2633bd9d7c937702942dabb49f7b83b644ae33b
MD5 b12ebb298de2bd1762fd425fb13728c1
BLAKE2b-256 9fb70e0feda087012c49292218771fc7776d1d37206c3e1df70737a3cfa83e53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da6f4b84b48dbf7dfd30b94d6ccffea8263f7fd2c8f189f77c7e7934915fe10c
MD5 2d17358936fa9cb50259a4b2f286d83a
BLAKE2b-256 752878092ebda69799ea9e30b0d6885e4c3e97d48482888e8289ffbc30367e1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7ccb6fe45cd3422770cb0fc870c36cd3d0e121eb4d3ac7193895411400256ebb
MD5 6a600734221fe72e808441939b93011f
BLAKE2b-256 4cb4f7a78a05294101c660f6d38054cc321f72f4a29085c6249e18b834391a2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a393008274d5c47db522dc5b775e4f2bf290c335d969d89f22a3aca8c53b8841
MD5 13a0ae55f291636f7fe6839f4f531bc4
BLAKE2b-256 17971ff344a622b94bce27f2a759eb9eb05bd8fffc55aa463dd3dd791ea218b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f5696710c59e1c7b059b5f1152a4f893c4bf3027f6d168408b7624baa9388247
MD5 b20e8095e18104f20a7a89f709c55af8
BLAKE2b-256 00b0221f1e431b9014af8573ff9f1d46a1922472f0034cbe64d8194cc590b916

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6b840dacb1f8031c341d97c3bac679313fc5ec0851b77b8551affd88ef0a11f
MD5 5d8acc239ae0bafe2a0f9577738e710c
BLAKE2b-256 38f22c852e0c2d385013c33b56880302425dd9464cd2ed8ec55dc9e52cc95400

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4185352e03a1685776e34beff660a51d6f392c60ab5d01fad388d51036f09251
MD5 c43e26a777646c4543820913585ddd9f
BLAKE2b-256 87a1eb042d28a27d39d14ab985aaf39be2a93820d76cbdfaa58e2186a29feacd

See more details on using hashes here.

Provenance

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