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.5.13.tar.gz (141.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.5.13-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

aerospike_py-0.5.13-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.5.13-cp314-cp314-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

aerospike_py-0.5.13-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.5.13-cp313-cp313-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

aerospike_py-0.5.13-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.5.13-cp312-cp312-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

aerospike_py-0.5.13-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.5.13-cp311-cp311-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

aerospike_py-0.5.13-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.5.13-cp310-cp310-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.5.13-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.5.13.tar.gz.

File metadata

  • Download URL: aerospike_py-0.5.13.tar.gz
  • Upload date:
  • Size: 141.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.5.13.tar.gz
Algorithm Hash digest
SHA256 4c88e0636786669d12d81fc3663bd7fd106462e36e25f74acddfdb3914e70ae9
MD5 d0337ec86521d50817efe019870f8dce
BLAKE2b-256 3c34feb8e60cd2b7ef3e4c4e645be21d93feb2dd6a6b6dd931e877079a312936

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b85b7a771951f4cdb3e56cc9acff3e557e78f99adc6a12783dabbe65a15481b
MD5 570002bf38db0996b489c9ca54a9eecd
BLAKE2b-256 0528ba2ed7db29474d56b20593ab8cc13c08a2d02639b810d4945ac49762d586

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 50967246dd3305ba53f5a681f319acec32f877a91b53fba9eee984ae209c696f
MD5 b1acd8c5021d7c58e98f4f383b2f8739
BLAKE2b-256 13942f36bbafe3566a2f3434fcc66ecddc3acf1ab5b5e3c80f80498e99388ed3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 33280ebe595e2c6f9f32d877446d6a860d3fd351874349b5fc70ed962a2b47ba
MD5 a9689b11acd1234c9f46365ee5078357
BLAKE2b-256 cb2eabb7de42db87785b7869c7fe8e6b94beb425eec87e7c4a96c294f5be7637

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 696aa60b35edec0b2f42d045b04c397cda4b6e7691e59a955f3dfc2e7562fd79
MD5 2498541d5d38820afa3fce8c732e66eb
BLAKE2b-256 9c7c65807d1b2cd1d3ee76f20689a261c6412488274dafe1918b6922358d375a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f16f9ec4c765313a7fc0c781dd80b42ee9a42c1a85afc641f3f55a2fbecbd4bb
MD5 55a895bb4c5ce5a1cdefde8fa5822823
BLAKE2b-256 94886b11362c2ae31dba9e70910b8b0088c6c4ab8e6046d66272c06c1a80f1b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b73ef630ba5ac6e3ea99e7e819c8d4f68123e6de3129579fb36772249069e4b7
MD5 6ba9836b2ddaa090fc350c9971651fe4
BLAKE2b-256 34bb17cc9f497afaa45f98a9bc3bc359f0f7b0e9fb52d37b03e818393f466498

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c18a65b6e4d27a1a16c1ea60d87f0077db25939d7eec4151a70d789d51264923
MD5 399a5497ed0c30debfe2ca841bc4350c
BLAKE2b-256 893184c913e4c8435ef95d2a38bd6509e727bc597b4742f450156606e0c0a5e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1679f71509ad5b6791e33f5400d113b62f04bb6a56a489228dcea3994f0b66fb
MD5 01898bebcc7ac98247e5038a6b1712ec
BLAKE2b-256 ced27c2d985226e94024df5355025de098157da7f9899e8fb4928c32d8dd6180

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e6dcf9277246066edb46343815550cc097b2a77d0261ae798f4c88a8837574e
MD5 2409a0c6840ee6f803eb434a76d5aa65
BLAKE2b-256 5303bc69919462be0529d79ba1052fbd555fe85ab2516540cfd97ced4cff102c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a8652c878368dd0b84029a58c9a47ce90edf94c493dbfb49d5c7e03eaa6a93eb
MD5 a4b18a019779d647ff5a0aaff9f2d47c
BLAKE2b-256 fbc77567dd4fff4f9c07f93afda916180160895a568a7cf4d60bf8557cba31a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 892342f9aa27b81e583c71d72c51d81381b6e1ce4f591d2674591fe0d3c22eca
MD5 b104db2c6d50a95d90e68b32c6ec2e65
BLAKE2b-256 80a32d18d9a017a5070c38e1aa95922c9f6245dee2845989473e418c7fea2d8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2efead4212bdd16ff97951cd2d489770cee0080074e64a4bb215912aebf7044
MD5 cf99452e4a3e2157b0883720cfe01969
BLAKE2b-256 7ac5f1d09a0c98375fd19f029c8c3d4749fe8a203fc33d86eb713c4e167b2b6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2be9ac4b38a545d577906822a5bd2d0a19b144ec22655a2a2b9388d173a0f9ab
MD5 ecb7d40c1d40f410d5d825b803b6ef6d
BLAKE2b-256 bd858ca8951da2d765649ac1fa1efb672dd730c4ad2bc21d22de114ad8e6786f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 252d99c16cb095c32e7306093a90534d73ecf6848c6f3a5fceb586540ba9b28f
MD5 b63451371a6a06022d46a3ce752166f0
BLAKE2b-256 4a04aa2a025a96c6a41b0b557c305f816d42122c2a8e147bead43c08aab0fefb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c55f3ddc498de9a3eff0780aea4388cb58a46ccfe9c1fd5f89d6c6264c8c5411
MD5 201a44893e337ddea2d8ec916fb62f26
BLAKE2b-256 8cdf6ddc50d68a5dcef1c1dcb30890782d7f1b11f9b4070983682d7b6b190edc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f39fead857153eac89208ed8abdb8ac48c04075ddb6a1159b8b312a25d6fda8
MD5 5b43b20ebb06e70199fbd3f4cb74d6ea
BLAKE2b-256 af7e0c5473dc1b1df4f4735edda8ae6682ebf3618befb158f05044a89b4f8894

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 464a8a118fe05681245afa2a3de505fdf295d57b2e762f796983c91ef5758759
MD5 2afb9d5cf2dd39126b40abe8e4a2a844
BLAKE2b-256 59457f7d3c211802ff992ad95098cf55d8be561628f6e9d9480876cf3a20dfbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e685b33ecc4ec2e6b03d9c71301579c32cfab2ca1562b18a116c023c074a114
MD5 e69cf5d08206d17d4c63c6a895399482
BLAKE2b-256 52dfba73d647dbde30e2ac0ec263e83fec2a3c80e5ccb7573f4a368e5e053238

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc3b3bf3379323398e3d3a08401749b9d54cb6233c948ca4f386366b6112aee0
MD5 91f20aa7db0ab177440529b1361d88bc
BLAKE2b-256 84d85f04e96d3c811fc126da51d0cc7cd3395c68072efec45dbdffe3713c9ebf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66bb6666862cfca7a6dfe475f3f9623f7c35ea267bb44ede0a9d7ecc65182976
MD5 5da2f07d64c9e2db7c578bf1d61e6df5
BLAKE2b-256 ddaa2ccc89fd0c2d217d806a99a25de777cde87ad7f8ee14c16d06bf632cd3b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 21fb5658bc3f52356c9040fcd509faeb509a495675bba0e7a343bba8982c24d4
MD5 b2bf2a888fdec23ee13931499e4ffd6f
BLAKE2b-256 9b9f2fef29a787d59eab6953f5017bc8ce762093cf6cfe258d2055d8afae81b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f15f2bf68c7a9b3dc5586848e92795b538799ee2f0f2d5e20900857be5ded3c2
MD5 34e453a4d0726e11c7c1a74c9b2c076b
BLAKE2b-256 b5de7958a0abff8212aff15b06dc6a41ad4bb090c4bc95ca7b2b306838bc7b08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c08bc2384a02b4a9b82d6532f7a346df4af593c8400dba19b008963d7497c24b
MD5 12832d4db0eecbd2e76f23292e9915a4
BLAKE2b-256 12e2e5a67250b415fa9074d1b9383da99b9ee2c6837a0e7588f0ec619f20e3d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e260316b5777d3a2c9a2894189974dfd09884958f450ddd2199756b7a2a1134a
MD5 f6930fd60620343ccea552a6710bda31
BLAKE2b-256 088555cc3847fb830c10651e61b4e420be657f2d02f4158b90633ce258eb15eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.13-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce05230f5d97bee7ea7edc36fa30fd262584cac915297132725cead4dab8758e
MD5 a24e87cecdfc197a856008fe5ca42b46
BLAKE2b-256 945d668c01c951dc21c20386164f747257bff5ce5e04bb6f69c7650da2784eef

See more details on using hashes here.

Provenance

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