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
  • 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.6.tar.gz (149.8 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.6-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

aerospike_py-0.6.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aerospike_py-0.6.6-cp314-cp314t-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

aerospike_py-0.6.6-cp314-cp314-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.14Windows x86-64

aerospike_py-0.6.6-cp314-cp314-manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

aerospike_py-0.6.6-cp313-cp313-manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

aerospike_py-0.6.6-cp313-cp313-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

aerospike_py-0.6.6-cp312-cp312-manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

aerospike_py-0.6.6-cp312-cp312-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

aerospike_py-0.6.6-cp312-cp312-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

aerospike_py-0.6.6-cp311-cp311-manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

aerospike_py-0.6.6-cp311-cp311-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

aerospike_py-0.6.6-cp311-cp311-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

aerospike_py-0.6.6-cp310-cp310-manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

aerospike_py-0.6.6-cp310-cp310-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.6.6-cp310-cp310-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: aerospike_py-0.6.6.tar.gz
  • Upload date:
  • Size: 149.8 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.6.tar.gz
Algorithm Hash digest
SHA256 18a2fd6c0a4599fae1c72a8ab658ad6a5ab4555a8c9330c65cbbc7a544f72acd
MD5 190e093ac19b0a9b85e18c61b73de28f
BLAKE2b-256 77c216aade0087205d5ea934136e4c675ae78622680e555747a75b3e4bc3cba3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6.tar.gz:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c68d13ef62696b9e3db95bbd07a46406fc081caf9c9853e34c2c14fc15ac7872
MD5 40d9d90a0a022149dc8410708fa20803
BLAKE2b-256 8726fc22bbf80a71ec2de45e67493632d67f8b56d70a8b077a64a274b4dbc6a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bc8aaf648bef71c435490eecc464e5ce98426846f6106589da4b03fac52edc68
MD5 ed65b83a3c362aecc4b5e9fe575fcc92
BLAKE2b-256 7f4b65336a59504a8d2d915b27966103055d94e27e62e65da9969ec1f805701c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db74643de5bbfc2094168c4312fb44588a61cc59c64d0111963b1d841d9ab58c
MD5 f3cd07ae32dd35114ba1eb3b7166273e
BLAKE2b-256 b9f2ffe1d6110c10b0dbe0b1f3cceeba14640bb268a0ca38caf00da10f43e42a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86d614e9fe24582f4cbc71bee1eb2663a13a86c6ef6f9c7748a2cfba3ff1e645
MD5 cdbbcdc39072c92f7ec6871992a2b4bb
BLAKE2b-256 7e0212e342921040e09a9d6e1e22532e5251545d535ecc601981b9c3abf1719f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 148b37f214e5df97bebe838db372a534f57935793c1d6f465600d5a273d3edaa
MD5 768928504090851b17bcf0e5401b9795
BLAKE2b-256 892f2b643b888c0cba7b8c02d3f4ec746a94382e74c35849c20c673261eea881

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp314-cp314t-macosx_10_12_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 eb3cd35bb9a14a932fd473fe51c797d78ed842ab62e57cc88b818b349ffb51cd
MD5 5c1c60c5bae68e3f647c22c6177118a1
BLAKE2b-256 629d050687e517c006079d2430af077469f7d6394ed37850ee5014a106875e73

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp314-cp314-win_amd64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 021da0230ce758db42011e7c4619069450bdf604f45a3f7d351c2561c53b7782
MD5 fa59e180e41f67c236cf8b94cc60c049
BLAKE2b-256 4bf3d453daf8b66486f9809cdc99dc9c3276b7b9e273dd94df272c6ed8666bf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8bb59db5d5192aa952c5597f41a59d3d2985e057db5c2df0a18fb1734e85381f
MD5 de4d6696f6b17930f250f7736580c0ec
BLAKE2b-256 c8743c70551d5eb5b2ffeeec751391b74c28b92248b87860e3c6122575f04ab9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c789b2860ddb9fbbc65b29dead98fd3c61e734ef91813ec7a200ca63dd5e13f
MD5 dede33c881b2c02c2d22afddd0d2165c
BLAKE2b-256 4ea8164a1dc8d76e9e2cb5e14dcd2da8e6dbf58c1ca8e74f589b2ca1530a618d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp313-cp313t-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 69cf05e4069e7dc9244e85df97c89c8f118338c21f812ac4e56c1346d9c3f26e
MD5 f31325f972d62d8b82393080c4a34cc5
BLAKE2b-256 2e59e425fbe9aeb3bad801cadc9720def457f7875c1c281b1c307b1efed7f75e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3c36d469cea077bf73c0493c3930d8779e5d3443a30c8f5ba97474d777c90a53
MD5 a3b90d01d8be309d5bde5e5384975af3
BLAKE2b-256 2ba627b8e439eb7a4ee694ea99d0bd8494ed2d35eac9a73829fdf2dc391a8fcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99de1ea33ffad02f6f9f441a184b6de6f55d33393cf39175d0a9d98947589a2e
MD5 d05b62d5efde63710ed23142257b3b17
BLAKE2b-256 7e2cbfbd94f49bda246827d34d60ac3a9da81f7276f08eca45f9affdd5e4e558

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8d29a6b31f9b7a0c468661268c336cd411d5a62452aee10d96e5b3becb25539c
MD5 081ba39512bde46f2c52790f0f8c20e7
BLAKE2b-256 7f945ba84bc07aa7c1bbe21fdb4fdac46d05f5755db902aba80cdebf0b38b286

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 22267309d96e5b2e802eba1304eb649add8ed0708a0b2ec095a39cc8448deae9
MD5 dd4ea8d66062dcc4e15bddfd354f57c0
BLAKE2b-256 8484686f96dd903f4f053fa6a3872a80db3b5dc5b528487ab58bdbe725d2feff

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 afe938a7cdcca458b3ec57b563e9360777e46450be342330652224e2ea38f4a6
MD5 9afc5f65658293d5edb6273ab3d40f66
BLAKE2b-256 41c9cbe7842c75afc7f1d997a8f8779eb5624e0ab231b0cf42a05e2b6c847934

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2086bd1088cfafdb3b4da783dc8be1e8bdf13c990283f56f3c38ad90ff4cf32d
MD5 9829cf1db2ac8e9627bda514021da524
BLAKE2b-256 af5354d08693e28bfaef58258f8b934b756eaf3ad63ecb214455cba61d1a64da

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8419efebda9c4a2a3f73e911049a496458b6b687c68f8608231a598c4d3c7946
MD5 46f173d789d30bd8d2d8fa242e22931a
BLAKE2b-256 ba68c420ab9c5347c7c04b0971c4ba11fa4f113d308135f8abf868afe71e5750

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7b3bc6105aa99b3a05c9c94cf20b75d6a59856611fb2524de43597005916eaf3
MD5 d600d04b85f7537baff704de5ec5e2b9
BLAKE2b-256 68d8a3d755e7ff604ef2898c7d2da912bf67cc4ab19de413b036d01dedc8ff90

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e55de1daf40e536f9f54e2822fb7a87592e29b326f07ce4926d9b38ae55067ea
MD5 42ed023e52b035eb0162e6cf4e18e9cf
BLAKE2b-256 1ce386b67b564ae82b2cf9bf42d89ee540824d1a2898bbbbcf77415233cdfabf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b88fdbecc001e2e99ff348a0446383f99a303ce4c799e95fa21ba202666b26a6
MD5 22e41b190e1ac6eb4f1c66afc1b0d3ae
BLAKE2b-256 4cabd5e84fcd312ebfc9bc9b343fbc775ce619bf98827cebd0134154a6df4b28

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 54e328ca9874014b94ec3821e89d447847f010e94307bb0b6eb88ade0dc26036
MD5 ba650df8d61c535e2461b2901a66c073
BLAKE2b-256 30e54544a494422949b0fe81a57acb5dc8b2c9cbb1e0fa0afc0c830864d9f596

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 64cce089a0aee09b64b5c21125649347462ce82133bda3be47d66f5cd6fb5f24
MD5 27ec0bd3419f38ee4f0466538fc41394
BLAKE2b-256 bb6c2615b0bf3af9360d33a92479496f2dfe8acb63ac499148eb3dc1818668d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe45cf3d4bed45abfcb9ad17c992d12d995db9df0da47076c500aa7e8a6d3dad
MD5 c8696294f31115d3792ccaeddc9faa49
BLAKE2b-256 d7c622790b4a795d18e9d3b25de5f93959484403e412f6d1fe84c8beaba84183

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 517445724a69dc46e644537e9802d943c1b27fd16d1231f077faac0e6d3ca001
MD5 9992a014a7793bca3847930773492603
BLAKE2b-256 a7b61cb81a5866228d6f42ded7574e9bbfdb55f4ad4d78d31d6fc0a7b24d1681

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.6-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 87594948470261ce94cd35bb5e18031aa9daef75635192ab23bd1c4756abc9af
MD5 79c5ee7bc5274157045afe077970dd48
BLAKE2b-256 3c9fa01a34fc278e04449aecf49f883e1bbbed77d4728df23bbda2097e7bf550

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.6-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page