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.

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

aerospike_py-0.9.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.9.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.9.0-cp312-cp312-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

aerospike_py-0.9.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.9.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.9.0-cp311-cp311-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

aerospike_py-0.9.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.9.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.9.0-cp310-cp310-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.9.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.9.0.tar.gz.

File metadata

  • Download URL: aerospike_py-0.9.0.tar.gz
  • Upload date:
  • Size: 168.3 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.9.0.tar.gz
Algorithm Hash digest
SHA256 2ceabb9a989295647b19eaf2189665f19c89fb80bda1a109158095ac76a2ff05
MD5 2a3b97bd24b8c57a4e84c9cbc26ce4a0
BLAKE2b-256 348db92e73082c034a6e9c0b0ce3d253c3550a4c4514bd1e456a1da44e223a6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e401e195a6b42e42098c692055cb4d126493b4c691ed075a4c18cb3e9f1834d3
MD5 a2648ba378dffe5435b1c72b06bd52e0
BLAKE2b-256 0862ab1b666977203c430f8274d302a52d8de4f8502e24bb5e4132bdb57192b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b0cab7fd4024b86fc2b46aa675ed62aafd4c2df35102eb3ea35a75c19197523
MD5 18be25af6ad7b61b62c9983b68144575
BLAKE2b-256 6d471ce23db579d052ea346bda2a3a0dd8559566402853890415cecaa5c80b19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab093c73a7a69e3aeb82d7ddd2fc136445ba36ab7e9dd6804d2ddbdbb3f2de40
MD5 647fbd202618addcf7ab0bb502bbb503
BLAKE2b-256 15c36cbdd78c9834700e0f4b5cc6fd69f073394f9758684fa711bee4cdeadb7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3907c082029efca5fea2faad8c9cfea8d284bfbbb1c4cc4f0afd2855d38caa0a
MD5 7cc38ef975a6aac8b62142ecf840b2f9
BLAKE2b-256 268bb8f99e5c31f863dde00ab23c3320fdaa5bb91501f1a6e83fd1f43701b505

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d1052c648bbbd95ad3b9ace6e5791d2bd801f08102f76af17ebe6bf5287c7ed6
MD5 7a57439de3045555bdde8fd35b94176c
BLAKE2b-256 4f96f01b8a3085a50c080560f3754de3cafa7b79ad6236d15d7a0142635dc82b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 44d762773d227890befc0029abe4ecfbdb7d9139a0c2a72940536891ca156946
MD5 344584a7ab304b3dba8b4083ea2b090d
BLAKE2b-256 db4d0c4246f884ed8e78593d326ca3dbdd2cea4832503ef75aa6a4c93f6441d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5f1a7e4c55c755385d5bd7c78d4e82f31ea2085007f75a5d2e8db8110cde807b
MD5 baaab6aed94dc928b7e3052ded1d50a9
BLAKE2b-256 e67a8a8cd6e5537976043d4a6aa285b43e145cb473ed24d1a2c80a84b0bf94e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e915d94680b09d83d086b04e269a10de82dea79596a264e0c39466eb1a25c3a9
MD5 ceb3d313054803db4d027023d10faa8b
BLAKE2b-256 b4995734688f8cbce4f80fa8617412ac6420fe7297cb7472578ca66fe9b3b137

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eda56b8fed2831e4535557d3f75322d64e92381c3f04a7a65e43b29746e69297
MD5 d770a0dcf6661602a69b885b00906951
BLAKE2b-256 2dbcc167c257b69c34456baa2ef4e52c8dd64b7ceb73bfc3d2843bbd53ae6458

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 04524940f208a31ba426eee5a86d3bc07f089733b5cb5de127d0e0a240652807
MD5 ad45b820a08ff0a542aaebf7a3bfe519
BLAKE2b-256 2511111185cc3c1a647c009efc602883183db5c0565d5865035191ba095784f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bc7b871057644fedb9b2df6c67af8996f1df69bfafffc61f7590e60aa0cd9ad9
MD5 5ec43703aebe3ea2e1a61a1691fe2cdb
BLAKE2b-256 565908e4bc2086d06dddf46b722282fd5f0880b1d7298aef6796480f0331067c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a118ac44780219c2ddd1f93ee129c6de75f1e30644a4ab292c7d927d1f195dc
MD5 acc0649313d448832360a4289a850668
BLAKE2b-256 2e92ff6ed088e484c6d97e9a46e091a8b14aeb9cf13943171268345c15389d1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd8192b9ed3e07517421c350ace674450e106a85174256f9f2b9419f2e471115
MD5 bfcbac57f7bc6ebd59d3b780c525f4ab
BLAKE2b-256 efc26ebfef8455e7eda960f5e48401c9c1d99c0a14de4052ac513dc27abf9386

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed38a9e75e946d6a533b9daa251ee16aa0d6445b1a945c5117650c4f8a90e9ce
MD5 edb04c774e125310ebfd89ed54f4a0ed
BLAKE2b-256 aaf780882cb979c4f04a9e1d630b7a367b9079e44f7d767b1b0425c731d650c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f946a2580a26cdf5e03548011e7c027ad2b49cf495363ea0a1c9e0ce90e82f9d
MD5 1bea96b0fbcfbce346cecd20fa45eddf
BLAKE2b-256 be9f225618423aa93001f0ec317bfb5472be18ed83b3face258e5657377b8886

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 263ccb52608739f5e4fd083fc8c7b90f8b3d2adad6fa53e28f061d06de416228
MD5 694cbcb7d73ac48e65bc09cdcbafb27f
BLAKE2b-256 04817a240b94d48df2b118efec6b28e47d75616248894d177b78d554803b9ebf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0161086b7ceac788d1acbb461184b3255aeaca1415be688ed5a4b18c39221bc1
MD5 cef0c972ee4de7ebe9b9301c72fed45d
BLAKE2b-256 b3d67d3fefa98faf8cfb9320ea058ea66a4f0b528616d8ea3fe1dc64754980cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 da39bc5506e62bef67319c22d084720755ff91ef84dd385466c14275c3a7d098
MD5 b9a5ee3311bdbc0ab6cb864528390f3b
BLAKE2b-256 04977ba950a10fac4b15e2678c9f2523af4195c9c500f60dd62b5aa46e2c5ed3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ebb913282120733111ddfdfb406f19a1c7ccb53d05eb68e55624a91264822ae
MD5 c4c42129e0d99079b4882014121cc1de
BLAKE2b-256 bc7bda62d1bd9336596ec8c5832d41d7dc973883e386c027dee267a3af68e23e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a87c40c08838aedb37d3ea3fdbf17d0ffebd256040543018a571e8adfcd46e3d
MD5 86ba9b47a275beaefc515a6fc36f9412
BLAKE2b-256 98ce655ef27fc866054c9fcc2add850b0ec817eb604d3b6a8d215a1930c18cfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 88760c54d9eab8dcb0133e40a4d4e75a3c03f0948304108f97f14fc6bd901ed0
MD5 174f9fe05eed47af37a1488a40cece60
BLAKE2b-256 7efee81add0c58869e1069af1c2e27e9b604fba5d97845bc37546aee5c61693f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8f1db171bba27b9f627aa704ffefe2dace6f6ba4f320fe548ca68a884588b5c
MD5 ca9fc70e74937e3b15247357e2776ce0
BLAKE2b-256 7e841e9f5cda1fb8eab7cf67a2d5ba5adb3c38b4b008b1c30a7f6216a593b173

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3fd71006317a375e8e3f667198cbd74c9a9cb26e14aa9f65a79d838dd6d02048
MD5 9b9980b59bc641bd893b2d5cd866d898
BLAKE2b-256 236c089cb302fe3c2b4248a7fa31ee60bac9923354a5ca2aab439f409dbab21b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f18143971680a2f989e47d02edb343294a53485ebeeec6e932c31e4588c0bf6c
MD5 d5cd7cde488be27bd8dc66038e3bbf45
BLAKE2b-256 702ac7267635a095e0f5ea288b15a3e2d24206aed9dce8ea8b339881dcc6c572

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6bdd3b25e8b5f3aeb526de871a9d01d439f2e15da6384716a68eeb709d121f54
MD5 dafd87c0df29646709df972dafc8cd60
BLAKE2b-256 1cbfe5052f991d3a1c2c94f9471f577cad2e170c3938ce30a98a6ac4b3792904

See more details on using hashes here.

Provenance

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