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
  • 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.7.1.tar.gz (153.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.7.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

aerospike_py-0.7.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aerospike_py-0.7.1-cp314-cp314t-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

aerospike_py-0.7.1-cp314-cp314-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.14Windows x86-64

aerospike_py-0.7.1-cp314-cp314-manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

aerospike_py-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

aerospike_py-0.7.1-cp312-cp312-manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

aerospike_py-0.7.1-cp312-cp312-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

aerospike_py-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

aerospike_py-0.7.1-cp311-cp311-manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

aerospike_py-0.7.1-cp311-cp311-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

aerospike_py-0.7.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.7.1-cp310-cp310-manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

aerospike_py-0.7.1-cp310-cp310-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

  • Download URL: aerospike_py-0.7.1.tar.gz
  • Upload date:
  • Size: 153.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.7.1.tar.gz
Algorithm Hash digest
SHA256 8c1554d11a975bb7d13db51bc624dfc37fb519e073ee6697d51ff30caa9283b3
MD5 04cc114fb7bc9f121b0e287226d91329
BLAKE2b-256 147b10889bb0429ccae4cf4689977a8c8827b1bb372266cd54be42049b3151e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13e75334a6f23bdad1c884e6bc180be2b59eeff9500d455f6fb4e559a49a6efd
MD5 358d99ee519d7bc8bf7ddaf1290b5e74
BLAKE2b-256 e10901889cfd4945074b1c3c85f655f49e794e823277f27c13309507e06f860f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5c79258f9c4d532f6a63f321669403b63c3b9218c981a84ad816208e9caaed2a
MD5 4f744670e69c3283038318e24889f11f
BLAKE2b-256 e931ddc3167ef0e4404d18b029225eb81a113b717a6c5c48e32c0fd33e7188de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 628c2c97b2a89cd0275ea9e5d9638cf9904c11246a6dc43d2dc73530f947afb8
MD5 437963a6890456b1a0bbff73b37895ae
BLAKE2b-256 58961447804a6d8d70fa3cbb36e6e6af53d753f3b9b0b9760d4928971b22bcce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63d01166f189f9f1607846bd41c316392e7986dd28b38fbc7031a24c6d632286
MD5 badd3bf5cac227136fabc7a5dd47ff83
BLAKE2b-256 b6f60939d3e69c47088c34628ff001225d8363ba23a8937fea110b832681e677

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 268b02676248da7529f94613c18aa47779c379e0b197a930e9033b766d14b9b5
MD5 d0952617442f354196d3b7ed5ebb0d58
BLAKE2b-256 161f0ecfd5fe57d977f780a1c1d2704e56388a52aa575d76c3a7d71169e06688

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 52ee26c2b48f62b829111b10f73bd15bfe0f6f41ae7c98c4dfd09fcda6f87d19
MD5 7095b6ec67c4ebaea313a85a0f98081b
BLAKE2b-256 c8a1a6ed6e68e4d933e00098dab9f8f779e4eb0c5b1ab5a5b350baee1dfe5681

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3cf60c7b1f00549a6709e3e9628296baa3eb8e48a39cfc94f455f1868433e164
MD5 12df7f54f0d8b001a6a4232d83d4c982
BLAKE2b-256 8f27d5d477f80e5416cfacdb5b37ef2e51bff2b24aa8300c7bb1028ff7d3d6f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21e982465bd1231cb187ed150a8f1ed66a47271d2485ac36f19dd3d396d75235
MD5 38fa710ab99e334dbe7a430a632a14a1
BLAKE2b-256 6c0543b940c46b71cb2a4b11693f1b783674d5794b88617c4ea3cb2c735d3a79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8c0fc43eb26e001d2614a7db2a726a27f7dba1751f6b14a6947adbb2317ff17e
MD5 ef9cfeef7789705123780f9989d552f6
BLAKE2b-256 ed994ffb0329bdf477b123d33bbb363418ea87b53f53b5cad4ba2bcb9323e268

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a9204e5cdd8d9543df702e52ff1a99353abac3543b925a5210794c197fe9a6c8
MD5 ad0590a1eba492a3250749ce5f4a25a9
BLAKE2b-256 a84edb70d71710dc79983f20fa32f4a760cf4ffe82aebd58f20b7a99b56464e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be5bc3fb77ecc503e1f24f1e887f0c978cb778f1f2b4a23ef933895ba072453c
MD5 dfc90c9f4f726f8c85f030db9bb15cc0
BLAKE2b-256 ab344c01b53cdaa43ccb6ab2aa6130a8fa78b7ca08eaf0f573eb565603ef87b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e56086c6d25b9cac0ec7adf34050cc8651f4862e8b19f210477b96a9ea70713
MD5 095d70c78c584569d4a194a10cc8e1a0
BLAKE2b-256 77de99fa09f5088981234078df2c173dd4ec60cb9556c465de9473f83bafbb04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dd10b1f36d029c83db9033ec9649879fe8a9d54c0cb83b666466aeb0e5130ca0
MD5 7b25fe6eee8835baed53d537a8a3ec81
BLAKE2b-256 bc8fc3c8e3bda335abc03fdf075b9a4b3b3dc1a13a9f5053cd1ec0ecc6a4d774

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 05a996fd255001df3967c550f685567a619ef8e9cab023e3ccc979c884d75031
MD5 0ca160d044bc41828d3e980f9a55955e
BLAKE2b-256 cc5550781255edbf13426f8b842730d8044bee3d62b0143aedfe68d433fd6cbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c2aaf6e6be170680c5bc01e6c32d540e7b6974c76b398f5d1a10c75f0f3bf561
MD5 8f5c3bab764f0a8b45c7a07e58f67011
BLAKE2b-256 4e0d8c7058b2a132521fb810e72ad79a9d8b99981891debc87560cf3b55890e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5802afb7e9b0184a0142bb0c494e658363941e5577ba4f8c034c35671bfa8071
MD5 46d9f4f1cd71d414cebdb7f7af856dd3
BLAKE2b-256 e03129c16ffeaabb905a523777bfc2d804bcf70c18ae723e042ddc168ce357d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 865367e1d80e1628b60384ae5bf94bb50cfb052830e4653f311cd6b719b76ee4
MD5 b9c98623ebf7b422353bb6ff21c1fec1
BLAKE2b-256 51e63e2a42a611a5874ce9b23bf856f23fb5b7df366199d113161012fecb4dd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fdb44f4dc08564aff90b85feb44645dad6137bece5ab974ab7d34d07c280f243
MD5 1ea71ac3de75a3573dab588bcb503a7c
BLAKE2b-256 ea24567d8d01ae7b17d6d29b823efc53c0874a90e0308de340d7502a6f27d5f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 351d681117d4f746035869b3a37285da41d73ea60d2bf924fc42050cbfd4a378
MD5 669d88019e89e959d951645c49263e72
BLAKE2b-256 c71a7f6dbad6a8375307c52847754b92618179fb1d522793cac31003e019413b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8954585ca979d6a246b5b86f9870fd3ace17e362684d7c297e8bf069952ca640
MD5 651844f5ba65ecf0302bc22a7698a7b4
BLAKE2b-256 f59bea992313f164fe902f03c7fc087c52fbad49d73def84ccefececd5e454a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bc6fc45f68b2da6adf1b96d2448d49285a376745d17a2f46b57462fc1b26ecdf
MD5 fafd167accbef0d147c4d40de9b16e22
BLAKE2b-256 3f44dd43c2b8c0e67eb25b47ed7809564be453ad9baa28007fb2612fa59c0131

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d2e56e8b71af83f1964311b2a1717eddb820c1a1ef04588163b11fd4ee6c7dd
MD5 6d568c16c8d421f8eb97d191a2cdd18a
BLAKE2b-256 e2c299c0d4dda32933e8fbb453f924fe4bb92da64caad6df6a37352a86131884

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 70ea8f170832bd6f08bf7aca705ea2891a36efa3f1f24c7f6515699e73e1f9d0
MD5 48e189c4214cecbe61b27e77cda19a8d
BLAKE2b-256 9cb750e528aacc09b26f92cff81d86e7dce4bc77e6f2eb60935defe88f2146c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48faa5eb048fff238e23a35d3580697ca26b01d05bd92ba038e83ccb59404afe
MD5 7530557156f63e4433a98eaf082eea6b
BLAKE2b-256 b06c2eff60428b61b8c4f3211a0bdb09e87bcf8d6bd713c102598c0a9566acf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f7d7bd9082775370a83c5ad546e4e814fa5678e780d9783249abb67af1d90d5e
MD5 716e5193019ee617943a6835ffb603aa
BLAKE2b-256 39b578d53639b190ea068d291d0c083974fc74e146c3a37b219c0cba244b66f9

See more details on using hashes here.

Provenance

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