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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

aerospike_py-0.9.1-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.9.1-cp313-cp313-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

aerospike_py-0.9.1-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.1-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.1-cp312-cp312-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.9.1-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.1.tar.gz.

File metadata

  • Download URL: aerospike_py-0.9.1.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.1.tar.gz
Algorithm Hash digest
SHA256 13a217b426492ffdc3f2a0f34dc5340d60a0d099a839044c8ef0759185268ce6
MD5 fda5e92d76dd5f2fcee06a335fa1817d
BLAKE2b-256 ab762f14a3c62d633b8b9e83898ce3efa717612778da46bb3140e450607cd597

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f48c24f4066dce29c810441e3433e9bd37655a0a938de17627f35ee1190c0c8e
MD5 5e4a3c23660e5e962129c0234810bcc8
BLAKE2b-256 9e3f87f499c8bd8aa4a510c9fdbb898b3a93e3a3b36ab8620348a305a31f767a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 663c9bf30b0e0c9fde0ac56e6621c4ffe3614d5c4ad3dacafd95c651c71895b5
MD5 2e61e8666dffffe42e9f9752be73c835
BLAKE2b-256 29d45e72c45fc8c3c0e7c160ed5e19722e9c5c5e05d37feb8b2459ca85a6f750

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f075353bf707d99020e65d27db2b2cd966e054eb0e1010341b90cf0cdf21d710
MD5 b998e390e3049a75895f1a65d9c1fbf0
BLAKE2b-256 441fd904a2018fc5670498a45e5f10bbcc6f406b17d4002643ac37643a3fb129

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad51c779473f7c6ae8129e98aea934cc67264db70fc291b9b97a78166ab6b29e
MD5 6d105759a41968fecb1e300d1903b2a4
BLAKE2b-256 7880ec8c6ce1f04ba3a923be6f102ac11151c2cc9505222c003a3eb41b8eee9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 34d6ff57c2cf9e8b3bba1eca18e38eae649e7a2a16bf09b230bee8437ca0c8af
MD5 515b9a4789053f3d63fe64b32aac7132
BLAKE2b-256 15f909f586ab4dc0613ff3cd8950037a74b3ba7ae567fbd6797b9f43103bfe84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 df81ed3ec75285c5ee8f26ba7755da7dc9c0d261881711205e432ec3c896aadc
MD5 c8249fdbfc02c23fa0987ccb73abe6ad
BLAKE2b-256 e32b876358b254ec191918136e0681daba9bd2bc148681d7f2549088f736dcd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 577753bb5601b1a72dbcf0e01c47b2b88aeef22b4779e5ae436adec6d5912ce1
MD5 d13c1af71b3baac2821c243de28a015b
BLAKE2b-256 b9889e7def0afc9d9981d780051d5e6df9a26e08776c6981717118d6c1929036

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c7b4e9a7324bdd180915f72579773182cdb37c5b285329cf694e98a5e73e43f5
MD5 272fde63c3fb6a224ee5405a2c55d89e
BLAKE2b-256 2967cc2e3deae7e325b8cfcbf4e68d7805defa79a7cbe81a86ca1661c8af2c62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4621a78a7adf40496ce3262a2e366698befc75979df182464c24799a1405982d
MD5 bfaf938f740520f435eea7c7aac57ee1
BLAKE2b-256 7bc0c89ad711a64c17111c1046dc077154fd3f4414a94b4139328cb5d35f2588

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8afede90b5447178d26684aae1fb0f1503de31e9bc37b3f3cdde43eb2ef36f8a
MD5 1e79783fda134de02ff5e35f4e10d8cf
BLAKE2b-256 bad4f22c256f01f257afa51b4d7f1c236628f65f743b6dca2630f21c97733fa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 725b5d1ede08bfbacc3306629f7d3a09dac12d033c3128ea6adc773b278a9778
MD5 d85a18928c6909620cb2591955f34895
BLAKE2b-256 1c8bbe959c3d88e5f9d7bd9141d49f0e43f093f3af773a9136e368cce3a17cb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f20cc4dbb3fca478973daf3445f9c59263a8d1b9418b9c696d15aee7928fade
MD5 90110c256f7ec753ddf44d3c8e6df539
BLAKE2b-256 7c8f955346fed1506660d8afc27077dd799377da483a97fc0a5680522635c685

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0eece12d488493bcf14e0888bce3a83f55db8255b0b85400552ab7fc3f7986c8
MD5 13bde0778ab9697a9cfcbba034bbe76e
BLAKE2b-256 28297ce5f9c93964d3830a1799d2742a97c8cc0c3998aaef12e3622eb56941d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e65c1550ce80ed073024a437cc302764d4d5aa8f61589db9c2632fa7ca4dbfc
MD5 20f1e651aafef927959550fd3de6d151
BLAKE2b-256 62fc5c8e7d857af4c4220700c7002c56462118bc0b9000c95852b62d64c9d713

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7f77b61b8344689279cae4cff074b9ab5951e55852c7a454f32e04df56bf3ab1
MD5 177515cdbb48aa9a5f05ccdbd78d9d89
BLAKE2b-256 4b4cb1fd06a77395c6a3d2a11b69cedbc35542c59a729c61bff85a4201d2153a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7b718a31b9c62b7837dddfe0027fbfe7b909e71be6e14c1b2c2e97b7d83f901
MD5 3c437a275552395b9e4053ca989024d9
BLAKE2b-256 6135875d18468d6c9efd39c9badec2e696583d2a8e732f54f360527f6343393b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 de1e4063716ae1a28595c1c30e08fa8cb515f5eec2aea0e4eb16f2d908e36c6b
MD5 9eafbd320c576c51f3c0d276565614bf
BLAKE2b-256 40eee41e9b5fd3192eff7335b3e5de72987528acade56e27f023a6c6fc8e3519

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a4022d64f746e6e288d9bbf3bd1771ec98b9ee30f448cedb5716d9cfa55fa145
MD5 babf3f1d13e22fbbcfa4550bfae0862e
BLAKE2b-256 d4262ce82c82f582c4770f890e4ff5296b95b6083058cd8c4a1650101f759253

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe696ffad6d847ad56147b42a4c5f6b409087834804ad9a4146c9c4d1421f8cf
MD5 7c4ea897c283ba13ffb67235fa516527
BLAKE2b-256 1aa3ac5c53cccdbb972221390e7eb2e0520da187a16fbe15b8c3f18a2a24f579

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b807188ba0bfdb62821f9837d1af3279394b7573a4e19b96b3e60a0ac7fde2e0
MD5 221cc79c45b09d196a6c1b16c6b27d7e
BLAKE2b-256 4f3c3570b89126cd6061229ef60c86e5a7d0164a0cfc5d526d05969dcd661af1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 db918b825aaee23969ea396550d7f232957a29a0e1aebc474bf05b0b9a774207
MD5 ce33c58c447751c076f034bafc6dbe14
BLAKE2b-256 dcbea5677b75d1e79874b8f7ddd894dd66872cb5178e014e2394c9566fa2b245

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e38dabb3bb619154ac8bd37c0fd1819ed3d1ad6331dbbf390a10b0fda83e423
MD5 48db6b73197af70ee80ab8bb7465be0e
BLAKE2b-256 6b05a83d2f75f01fa9d0edf22e773d24a8ef87e25256ad586d1d7f31410da9b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 75a77caca82cd6a288c850434fa6df655c4e53e1196d96333242d5fca124f131
MD5 90475bf90a7e7ba2d88ced660b03204c
BLAKE2b-256 812275d18b03c612d7132a3f1a1869ad26ec84026517207cd56b12e59da21c97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1ca88cbd24242c68509c0ae92a2f7b7552397dd62c436e5115fa508f48f3c3a
MD5 917eb6cb00ab0841d973cc2110125aee
BLAKE2b-256 2ea2ecd24c3cf95813d065be6e39bc8f5d2b7da9f613eb7b7b6cfb1b2856a688

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.9.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ac76398331c4572af282d313b05686800a245da249b1179aa225ec2c00a00da2
MD5 2a222817332d3a395160738c6de1843e
BLAKE2b-256 4353fb011bce2de24a5f9df297d4b294663e8927b1f3724336dece1bf26c963a

See more details on using hashes here.

Provenance

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