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.12.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.12-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.12-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aerospike_py-0.5.12-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.12-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.5.12-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.12.tar.gz.

File metadata

  • Download URL: aerospike_py-0.5.12.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.12.tar.gz
Algorithm Hash digest
SHA256 92a767d210627c9de819680c5b73c2134660a067f7f96a0885906b596b66d542
MD5 1e42d053ebf9e65522ae5a156d58bd19
BLAKE2b-256 b376c78a880252e582a53331544bed22afc7433e01389e4e44b9b9930f5b8749

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f3887d85b64731708317dcd0078a3a0f4dbd445515858624302281f3acb90d36
MD5 1e31b7244ee85bc9a17588bde3361cc9
BLAKE2b-256 90fadc5ae6ed121b8a995fe2534c432dca962957099dfff15d439e7bb26f6384

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f9bdc63b683b6f49af70e900aeb9412ae5ca873a04bc9fe4267e6515f2a5e464
MD5 b3b986f7f4a223905b0a8badf35bcfa7
BLAKE2b-256 fcc9aa38b11719fe134651f6e1e60e391058ce6d0274eee6d82bfbca7106d429

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8285500f0744cd41144f0f9e8171445eabfe88e1560e87858279064d2c514e27
MD5 8b71bcd83457b80d7f78a2021e418477
BLAKE2b-256 81b0c1d7b1696be0b642067a154d4e70a4179a831ff3f308cbb193b3cf2357ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14127e78bde645c4986bbf9fd06590023f46b266eaa9d2775c81046337e6e787
MD5 742726ea3f8f0ce21023fc2cdc93f823
BLAKE2b-256 119484d53d9443a8e420c2adc6e47722be2a6a55bb1c6a0f387df14412095e99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fbc823240435fe1737dbd32284fc3bf8068ef974056986a25195302c771ca3e3
MD5 014cd4d31b20877ca8de458c3b039033
BLAKE2b-256 940421be5a1082e6957bb1bbc15902bdd15e93d8a036c0b963bf294e9e06c643

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 67cf7a19b19be399d7fe13e94538919d19b6a481326f427b9398b0b04bbc2bdc
MD5 73e06df186728f1ba9243e6e7753a74d
BLAKE2b-256 8229095b19b983be6fa13410a025327372374e23d591cd2b56d9faf50ce848fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be5095f300b84c79a9013aaf17f0f0e7d6d6635b5e53af174265c86174b14ee3
MD5 306738776835fb6b5bf0914dc1d2cc86
BLAKE2b-256 5f1b677fe289b2c2fa57da518bd8721797916d1aabe58e62d8ab43b7c8445da4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ce932e8f0899012f8591e5941587ca9db115be55b6845133d49c6441d6b75db
MD5 a5c29cf1f6a71dfd5da8d28e016e5f03
BLAKE2b-256 9cbc9a58d68bd773604b978a0870f42de86405b148463244978e269f3baee0fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e0bf8b63b08ef541bfdd17dee3ac645f61e94b830f3a75f34d0858231c998522
MD5 34ebce39ed355632820761ab63e025fb
BLAKE2b-256 355357853bc767ff434ffd7a16d8d13d09b5b9365a4d9431848a3f6ed0e767c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dbd6397d0307ea303d553c1e3fbdda04290c8d60f8aac0f80b60892bf7b470ef
MD5 4fdcbf3210363f76a212d7b9d1937312
BLAKE2b-256 75cc716e925c50c6ee08842ee5fc30a9cc38e6de098e64d6d1f6ab10b0d6e0c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4135c14bb2f5492dac1aa794280ed69eefd7c85b65aacaaf8107ab8a0c9ecb29
MD5 6ba72ef45b75b260b0dcc166269377b5
BLAKE2b-256 efe1a35a89c2344ee2a0c7332223d5f9c8cf2b4003d5c7fbac42702ec147957f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12ef3b74f04d8fac148c605d99738588312d6ae9b4de396d7539b194380b09ce
MD5 bb46392a547ecf247a5b6aa56de699e9
BLAKE2b-256 ef1abd395fef2c009c8941d82a064be83fcd10c18dbe7b2f8f1c135e9d044cb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8cc4000a31bd8a2a45d712b7376099c33f02cd83c769003c25196384dd456d7d
MD5 817a0bbb60b995f8bdb4515b0f18bddf
BLAKE2b-256 f80d1986ddb6b33f2c3e74c24e2778096f3b6a438fd5b74c054c5607c9dfb86c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f5995680cb8c2c6d56a870dbdeaa5cc45610981561a22b0397e93c9f344eb104
MD5 a7007956987b03bba4f72fca05089eef
BLAKE2b-256 637d363bf98e6514ecedf02334981254471a2e77a0be493ff90756a4a8f16152

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 18d4e85b889088cbcf897622e5b6f9584a0992809c695badb46a3253239bd0c4
MD5 45e765f7ae9ffa3f8421cd72ceb399c8
BLAKE2b-256 0c3fb7a4a49bd318ff6718cafaa55bad7f07466fc721d2a17936f1e757327d2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9f8aff47329e88a9d1bca038b2cb4d14b4a37b2fbad06fb5ea76eb294102d71
MD5 bd48b85611b526dc34ff5bc613f02ed4
BLAKE2b-256 095c4b82975369ba3d9fdd0195ab863bf2213524bad1559c7b8f4a1663e6c24b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9c796a9f4d22eb21be286dc707e8b1cca5ea9c1ef759303cba3d2697474e6f1d
MD5 8049c4ce7ed7dceca96cf592500806b5
BLAKE2b-256 c3d283dbc7a7958c5c48b8fcfa2d117b01e7ca209a36680121dad91ccf84f0dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd0ec17fe8a6107270b5ceaa9b12a8d6fd2d055a0c08e016415e2c2918ecb757
MD5 6b00ea169bf74244855e128c38a4165c
BLAKE2b-256 5dc4fa43efc6e364f5167f2e713487b7b1d1fa0a5813bde51d94f2d74e68a59a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 65033768bbc1aff5f224c4fb040b1b2dea1beba7fd0121c15f00d6088f7723f2
MD5 f684b67bb1e84db8e529f5f5d5eb1de4
BLAKE2b-256 4e9e518d3297423bafc3e58ffdec3a747ee7690b57725b27a29df546ac4e59b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6acf8525cd5a44509bc3565401a97f7a36059aee3fbd6d8092a81ffe473835e7
MD5 bb1b2f054fd7ef8a8876ebc14d897d1c
BLAKE2b-256 a62a4d1b1a352e6b408eb3a36589d4fecbfb224f4c941d5f9ca36c933a7eda28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7109f43d2dc7831823e70e9a5b3d9e59a32d87b9bbb8b29203a651d67d6e3af6
MD5 9032037fe106324bb24af347c30307b1
BLAKE2b-256 78d174b1407f6eeed4827482256768c8f73baacd9efe7efbc1d3aa32d84ca1d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a4f9fd76a11ed2d70ef3a1346a2985eb36333a36602304ebb1857d16da9377a
MD5 611f15b940eebe8cd088ddb2262507a2
BLAKE2b-256 b30fd47250bd1bbe3e8b0a43a6bd5fcc67a9b981ea992a0beaf82f4483f04f37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ffc73f8a4886a918395f6585b10f5fcf09eb426e467cf621387c8c2c1d71641d
MD5 e2d7e4a48fc071698f7edca889b438c1
BLAKE2b-256 d667098a1d03bb2dc75e57da0a71a260f7e8732ef05e65e4a6820b3314fefa47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 299a0364eb406533498f84cd65415ae426cb0bcbdbe7c0ca9ddc969373afa844
MD5 373201b96dfe0d8822e85c34a5b79083
BLAKE2b-256 93e908a8f020519a377dbf10abb29bfb9c8d4fd935167c93ea01c5e9fc02b878

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.12-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c960819b3ee71c639bd93c6cded198df729d54e236a909267936642d7356f7d5
MD5 302d9bc58776f07c6b7b8d6e8985aa4b
BLAKE2b-256 711b6c727ce58f994e813ed266c3c13733baa328bbee6999dbc49c38cb108ee4

See more details on using hashes here.

Provenance

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