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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

  • Download URL: aerospike_py-0.5.7.tar.gz
  • Upload date:
  • Size: 140.2 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.7.tar.gz
Algorithm Hash digest
SHA256 9b770e7888f189aaaf9b91fb5790da6b5f30ee88caf16fdb190709d80fa67e02
MD5 e864b357a21a5bc5e1cac6feae3e850f
BLAKE2b-256 8b697e20e6a2814731416e88e1836c45c1ca1e5ec8cdfd01041975d848e021fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e05e8b8ca5bf091812fd85ad0f272c2354eb4d4d824fdc8a5731cbce25da475b
MD5 d7e23f2641708630495cc09eb5457c58
BLAKE2b-256 84873c03586976b9b8bd6c5c90e8ddacac0b7a2d6ae37be4c792bfdeb7464a23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1d06e0bc881f8a24a870ee920bc09b2216351d97447f9a74c761fad021f8f02a
MD5 1c3ced075595720804fdeeeb46d66f69
BLAKE2b-256 c86bbfc8ec54de5abd00045a410f0b496e8e28fbcb898f59ed1cdbb0541df405

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab97a75a2986f99338df6ecdbf23e242803b3880097b0b3d6da81e76a35ff12e
MD5 6182cb1d1fa6cb08aabdbf0f0e6d0963
BLAKE2b-256 732938a9a7eb3b1f2663f8b49f527f21b8fb36a3432b6e6e43ba8bfaa88f2450

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1362b7807a07cb90639f2c4bc1cdd0215f40bbd8ce947eee7c846adab3ae0a8c
MD5 b915d19cbc174e56fc846151cedae4d6
BLAKE2b-256 13b52fcc46eec77bc353b06697888663994ae7734eb12228eb9af3df91efe96e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dfc5e69bc4fe109761e3fa97b5258a7d1eb9c4c8e39e037cc3885d8b4b15b02f
MD5 84bdec21bc8bfaf5b89588dd56f81277
BLAKE2b-256 4639292f8753554d6c3a00c47075460ea989151d6938bd316ae4670447ab56d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4d49e0497560ff6ae7a91b7fd547387ad0043b33609f2d213b97a6b6d8eaa5cb
MD5 c24fea41b059aa5ed7cff2a4bfb04f25
BLAKE2b-256 e23189ac622d47580cd88a9316d69099725eeb2099aa4fd8f3085feb6673fe95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f0718741c8618eda8a0267443fde0f2116cb3e069b1bc19bde049c8c12fa7a40
MD5 b65254b38d54ab8fee6d293933ed258b
BLAKE2b-256 dd5ee672ad50caa1adffdcfc5417da5a6f4a0027154ad8f575570adc9bcec1cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ac0b2077ce0232c77928eac4b1d8901cdcaa3731a24c727d589382aba3bb6efc
MD5 d675b1757124dd5144b6f49231d6350b
BLAKE2b-256 a3fe61433e4846a87267fd8c2031e5021722a0f8e0a1db99f89d0817755cd7cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 226cdda18f11679cc9bac58eb2786d7999972d62b6c80d436b5736934adfb500
MD5 f179ff3dfda1ea76fbdf9f9af0afdcea
BLAKE2b-256 dd5ab5f012f83522b0d8458b20087029a33034beec6c3e3684eab8bdf3c3db37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 152b879bf05b6d0553b1703976728fa515cfd05d407e0143572e1337bba36d62
MD5 c15e290a5d2d890cc3d78182f3cb163a
BLAKE2b-256 1b8bd7dd7064b8b48cf318a025ab0ab2338415732918b56bdfce67c7adee6de5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9ea7a813337f08f05207ef150e0f1ab7c37814dae0329dec0174aec52800ac8a
MD5 7c4e81692dc17c8f72cda5c6a07337d4
BLAKE2b-256 5ffa0256bb8a470f70de76fb3f0e5862c1f53188523d9fa9aa2d9cc3e3b690fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff3fc3327315520556de15a09a0dc96465b81e31b78f51b9727c8f3fe379204c
MD5 1169dbc5fa293f5b2480f1a8499184a0
BLAKE2b-256 263ce4f979447710efa6293b8592c6d01ae57afce4551d04e0b80d1958770b0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 800e7be95a4428cae02c2772c814c9c71e032a50587790ee79f19f263d9feb03
MD5 12763038f403a59a4c38ad43ef851667
BLAKE2b-256 1f04c8b3bab6c6c58e63a46406b15c1b187ae9392c38212b201152673be1989f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8d5d67034521cdf46003bcd65f8469d664420ba7d10162971b9acc7985c0b36
MD5 3f911d9cac340fbd2bf8bd87d6af357c
BLAKE2b-256 6dd116b994bea830a6d83dfffd81209c1f66a4f827552baa08d5f9b7b88fb245

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ae3cd1eba4a711bffc9e5abd435b70d6ea8ae9de16fc525da7376c9418a2377f
MD5 5f660f243261f64195f16444c6dc8cd1
BLAKE2b-256 3829b1b97524cfc0898afd57bb0ee13e5609deb5fd817c4268d58d48d8c53f01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97d9d78833959ff8817890370e7192efab8fe3bc28030360174a71551b35fe53
MD5 20dbcef3345014806704de1cb6fe264d
BLAKE2b-256 9f357457872cc02e41ed7580bad72640a939b53548d9c79391203f9399d803cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 edb3bb3c6f82eafe6310e2eb88b864dccc8e82551031872ec31814b90c5713b8
MD5 a9bab02ca6fa353a0e28233a0fe50cb2
BLAKE2b-256 1bef16ea9f1dbf4fe6e05b0a46c7ce6858c0c3cb8536b3aa2085814c4e9f9701

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e093e34291101dd2f6629412d2b504d0e827d624280d055f049e9c192b22576
MD5 803ac1158988c42664b5958f6aa5e58a
BLAKE2b-256 9001b5acaeea1101f3111b18282b9529d6b7321a4d3a5886306450b44f1a77d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e216f33ff05e2acc73cca6bba159d8c1e1bc8001f591dbbe49c3cc1b35c188f6
MD5 c78a363dd3a19fc3905af0dca67b2177
BLAKE2b-256 e5045e25590223903a7a439e1634f7676a042402913bfd0247601f75c296e4d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a0afdb6d0b8564a5de8726248b99841ccda9b8a8835ba1dae2d8d43377dcb3c
MD5 76305993cea60584325bc1e32bcfdc3e
BLAKE2b-256 934cd5fb76aee450a717ca13445986b50d3275ec27340d4d2721e04c8c2c5597

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b0d79fca57427a29d7e0743bfef5e71d1e2f98fcc78b81be8dbdae844853f412
MD5 3b28565f234700ad230258159d48c974
BLAKE2b-256 3a5ee1097e2e523d0dc0e6bd9a2c75ec485f836419e0ef74330223515d9a61af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3ba045ed79f47b46e8844c23a8b0e0a37a9cf9c76e1966d807a05af95bee7542
MD5 d27826f13c94a6bfba12e28e821b4d9e
BLAKE2b-256 dd6e4eedc8dad4de5db25c771a7458ff31f9681955283953e939b12cfadb6325

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 40ab5ba41eb7850f45041fd5ccb11b3e115a93af2f82dd2a0b6169a3b49f5f54
MD5 c8b9341061de63df921a71d3e227f8b5
BLAKE2b-256 2ee8e5701a9d3dea065a79beab986e9240a7c0d7aa5a278345aae28f5d793007

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f0b307ccddf47275746fefec6f92a7bb0ddd9915128fed60d3792f77e4fc408
MD5 a06fd014a811aa9ddbfda51b1466c862
BLAKE2b-256 b28371f4ddfc8037668f338313a1ec3890e00963c944f8da6e953815f47565b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 07e3c669a48c9ea77f0d15b10644a933df17b919357489c44a751a748840fc54
MD5 65dc9d400af551db815c01935b336155
BLAKE2b-256 80e07a19fea937319aa6fbd378f56cbdcdb5ad479e132469c35573cdb611266d

See more details on using hashes here.

Provenance

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