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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

aerospike_py-0.9.2-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.2-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.2-cp312-cp312-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

aerospike_py-0.9.2-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.2-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.2-cp311-cp311-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

aerospike_py-0.9.2-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.2-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.2-cp310-cp310-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.9.2-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.2.tar.gz.

File metadata

  • Download URL: aerospike_py-0.9.2.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.2.tar.gz
Algorithm Hash digest
SHA256 22fb9839bf7615fb8a0304c365b3b6f7eeb3c5d61df737275957f68a8e3d25bd
MD5 c3ed3494b79cc051c9f455d0e66b58ae
BLAKE2b-256 9acf141fbfae9e3f3e3db82334823b384e669dec192749e17f8b8a0a251c9b7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 644040bfc438f58bb5fd8f8f181289f140afbd27ab720a301debc8769ab43b95
MD5 1b5695a88760f0c630bf8f26bf4468f9
BLAKE2b-256 bc6bac5e52c6def23c6427183ce237034ce005a193750080bb3398f6669cc178

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 69a1f9342c5f78e6f6d3afd3124f61413d38b191ea010f5a275d0908e7951d11
MD5 5c1053c897aab504328987d8576a9df5
BLAKE2b-256 5eb7806dc0908715ee94baf9ad1a3823e26d809cebf1bb84da070794e4699856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 38d9d6e371b0a01da0d4d138c8e89ca7ec84f66cbb6e15a4e80e04347974973d
MD5 9ecc1785aa3b38c0a6bbc0924199f80f
BLAKE2b-256 85a9f2083cb3ec6f17676852c799dab6d7554feeaef153b864522b5ff120dde7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec5df0fbf1bc93c381820eeb01ef7f66da2b1c4a62ccbbb5ffa13d73c74630b3
MD5 ffb4a0eb1cf6b4ad2f77adddcdba7c7f
BLAKE2b-256 2915844339710474433738123b2ef6f5cc0d40ffbf32f71d34a9671d81db951d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9cdd290aa68977c4be5bcdfcdfd38a530b1f55d06acccd9fc5c68ae2186e8e50
MD5 b45e22166820b67c54b9fd637a7315be
BLAKE2b-256 b1894e6c4b0d1f8182d99b48ebbc5b028cdd812ad647adcd16cb3be3a230390a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2b2642c978b7ab1ce4e2cbced169a755b8a3dc50699683014725893b5fd19738
MD5 34dd3430f46b8ec10231de90c5b0cf6e
BLAKE2b-256 f3a73d58c487bd9e96fcd9b56d01812647b8f432c8bab6307531e58f65714a7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a9e4a1ea0f16310e252a7a2c7a8e41d2ca9c521fddda7a685a10655514eb4d62
MD5 f253803d951ef55155b9f3e5cd3fab11
BLAKE2b-256 bd3b8e7d8481ff66695efa260e1a619bcf0c89ea03839aa84de467e89cd6e7a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 daa2b8ed5c26cee7539efc801e1e4fb5574fde67401f720bceefda4c2c0d465c
MD5 1242994385859e2b7e313737be8218e4
BLAKE2b-256 339205129d23090a1476312cbec31eeb8ebd29882fc8ac2d5906b957389d81be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 71209f5a8c06210389a7d75a56dd6d3586a57b1b17b333ae9e99f76a0ab51c92
MD5 c9930c091cdd00ada36b5d4d71e8c871
BLAKE2b-256 e040ba2dea74dec10f7096b8796364f4959839a60b55cf8b8c7b1c168dd63077

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 89e0652411980a44e93985ba3552304703c013a6dff57b8e8b7ac847e1e116db
MD5 ad4ea9d662d478c3042094048fe17f0e
BLAKE2b-256 13193a2dfd7dcc25181591cba78d86256b8802bcc8c2f7d8eca8178b2d26fbc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 44edd2df648cbed273529c4b0a2572cce9badc2d590c9bab201b7dd2cd4a8e39
MD5 f8d42799b84969722f8bef7720cadf37
BLAKE2b-256 0f087dafa5cce6921b012c5642551db0fcfe42e6bebd540626494feece0152b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7135e02e847205deca2d581a4daa0898bead95b6b67045b5d0a22402c3ec02e2
MD5 0278c5d5a6d25e7a60ca408de71eb6cc
BLAKE2b-256 903bd8cf45f3a7321509442bb697ddbcfc25ed41c4cc4ec16a711af0f977199e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a579c9bfc91948c1fc7a1308141e803d24da1175a08b6ce4788dfa8b313c5481
MD5 7bd699b6a82922ed3865d1a1ceb3ec1b
BLAKE2b-256 890f2d7b055a698a1037af4ee76f756a5b4e68c93bd5553f5d4baccc85bfc3e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d0e47b46086d1d269cc5156470c0740b908d55606f136e79c0392817c1da1740
MD5 b28d47ccec72b294f8b1fb707089e971
BLAKE2b-256 63b044819af9778471ed0040d2252a65e99fef9f26a4f68ae9d25070f4c99237

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ede14f1bb45ee4f0657fb294058c87dbf81405f39b4775c49f64b7aa599d6ec
MD5 ed116142dc4fc176851334ac0730e79e
BLAKE2b-256 eed65bca57c57519f96c3c4ecaca439646b1016a95db83f6d3affc142e43ab5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c127b959f15bf5dbebd4781cc8fd180dc5abcf6003994d4e250a9da835d6ca0a
MD5 8deda53b185628763c262ae5f2b147ac
BLAKE2b-256 ff05187ef0272068c107e76ae6c0298b7294bf59885f4a6d7bfb0e145bea27a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f62abb81caa5855fb284d8feac5bcd91f236ba3ded0dadafe9307c3ce8507104
MD5 7896aed8f6c4fbc9bc4d04b1163a4c8c
BLAKE2b-256 bd778d41ea46972501817b87a491900a3f7479b00e7b4682b56e92bb7d6bbb4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f7ce2f448692bfef2d453a46c50eb173128e69b199d40fb1f5cb1532083a1a0
MD5 1c72994f5eab7d6c5fbc6ed07c82b88b
BLAKE2b-256 fbcc73d72f7f51836b2d672b7763e601a162dd5e0c7e66447f4e1744ab9c3160

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 784d4c554cbc13b3266b14a5dd6f92b569905679a91ea91e02758bcf7b8a349a
MD5 97ddf926a478da95c27588132f45a432
BLAKE2b-256 bd3c7a223307728433a2354b8dfc6e6942a292e9d14ea29cb897fde6a2e00e40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0cf2f5f226faaa3f47ea4b3aee0534a36f78c3f1415fb42eeee873743afc2381
MD5 7d1a6bde88ef3f01a0bcf4eb8bfa2b03
BLAKE2b-256 3360d824548e283f363357c1306edcb3d125ad2b2835958de721cd153b2aa967

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3d6e58aca94cccd5b7cdbbd18c4ead50115af5e625eb6c53bdb5bedefa1f161f
MD5 5112359ef57f539197b70c25e2efe13d
BLAKE2b-256 aaa88dcf878efbed9065bc71a19a89f6e58a1578a9754a1d66dcea5f5db3da21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ff6f22ce5cffda148c326fb6634f10627b7550e688443c9c3d64b090943e39e
MD5 6a9177d00126cd96362436bb4f2dd099
BLAKE2b-256 4f1e18421ab1090f154f02c8d8de6ebf985d78f0a77de2f5a094c5d499dbecdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d136a56cf1cd2d8e896a8195e88c0bb2c6f4e2f7140fe37b35fbe6369fb086e4
MD5 4b9e1c3c08e1c07e1db3f12baa979d17
BLAKE2b-256 3284ea8e9d678f398009483172f0ee2bef948c28c22185962175cc4311039bde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33786e8459a03cf7cdb074b4024c93214c1dceacdd64280dad9282ee2a477cee
MD5 7fe1700ff627ea4ef251a68fc3dbe4b8
BLAKE2b-256 49dc014c2f50a124362bd5d8eb2c29cc6d683b822ae0297433f3cb3eb0318e66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e1a11d3d3488ccded8d39da3e4e7a9b5d45a5bb28ce30e898fce0fded0a3eec7
MD5 4b03c7997813a6173fdd53f5bb62c740
BLAKE2b-256 797cdd0c4c510c1759a6c5781cb29062c6cb33efa456654a38dc3d670d2c09a6

See more details on using hashes here.

Provenance

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