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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

  • Download URL: aerospike_py-0.5.6.tar.gz
  • Upload date:
  • Size: 140.4 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.6.tar.gz
Algorithm Hash digest
SHA256 7a8edf6303652c261a496bb1bb6c577a817085e8ada0e10775a57c1f0cd81231
MD5 2e5d4049962c7a7792766e60729d8b60
BLAKE2b-256 45bf569ab57b7c2251e1064869db411c5c000fe7859e9e0ccd820f4508dee1be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a61d18a582a1d544f3b8d5e9b8fd54de888cd05a0249e2f782a1a679f0b680aa
MD5 abe9f7560d6164b193e3a59da91f6dca
BLAKE2b-256 a05745bec6bbb5708d94115fdde0706b63313bd1a45bdb4580ee4b36d132ca19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94fbadbfb5addd0a97ea13ae7de98ffee7e46b618046234bef17576ee4833c7e
MD5 33dd723fc32bd1496287cb069c75b83e
BLAKE2b-256 1de2d7f4ae6e987262eede5b97931e9437bb74ac5f04550548278d85613d6fc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 856ef4ef8a58e415e90a0a214c845b7435fb5a1cfe97dca4562a015b500163b3
MD5 7b84fee3c02f935fbc6ae8d00e1500fc
BLAKE2b-256 5d3e870781bc488b776d81f4a4dd2c0111c258bb48d7340e3d87095c9ecbfacb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c401cf4cd8c29364d025fa9c210cc51bb36ea9e5f782519229a6bcb2710e059c
MD5 4be36cd8bfdfd50254f9762be8f08ac7
BLAKE2b-256 1375af4da94e948907034d77a1a78a819a5a9ebbfac0d56750fb771343570431

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aeaf97db3c008ecceed2dbd5edd3700db2ada053c556b1e96406f5769b2c942b
MD5 6a87b63129eabffdefb1ab14db93e1cb
BLAKE2b-256 001c993676344b16c98140e353123a8080989c0f3bec2dde4a5d7b3e4de3e8b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bb3fd98213ccfb366813690b98d755ccda1ae467b64e1b7522a69ecff3a9687e
MD5 55c4bb817a1e511581e73ad116c8fd2f
BLAKE2b-256 9f4e9672c179f006cf324c1bce91c516220cf09a41536615e985646ed38a1668

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bbb102125571e5ea891995bd22ed2e609a91005e8ec97242022ebc6db9f9cac8
MD5 fc3749bba9abf42679be2585f8650967
BLAKE2b-256 6357427b4ec913c8761e40c53d435b8e338fca52e769cf685e8f76c69f681ac2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 55108aa69f892889202698a916da0215002a3d17e02cab843defaebf325a4428
MD5 af07cfe356a43fa92168772f1dd1e4e4
BLAKE2b-256 7974b4164b4c03da2067be95a1f95119f2d406c1c2139223c1fbf32822389cda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 930362e56b403fb86d746e16d94c4d9addd5622654590bdce310f6588f42d38b
MD5 dc4b2041bc18f58be42dcb1ac575736d
BLAKE2b-256 d0ce64f6ee264a08e8d35e1baaba422e087648398bf6e05e55fd290ce29d6d6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6d0056981561e33e799ba0c0ce71d6459f86c960a2711f49c241c441dbcfcd6
MD5 971a146a7099df692b185e58389fcdce
BLAKE2b-256 4559ea058e54a57595491e4841971cdff052d90ce0f8526d6535afdcefa6d8d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dab85af2743255b85c3a5d00448e2e6e9608aedd2fe3b39158acbc9a7ee787f8
MD5 1071404fc132a715e549f92509398e55
BLAKE2b-256 549ee2250b4fb709113fec75e7f5d12f1957be0571b2f7a920502ca66604edbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 accaee4b08834169c0a905530238e7561b49abedd2171b4f89949d0af7ad3bda
MD5 d448d7a98c9f4ab59a83c2d3bef6983a
BLAKE2b-256 5ea9531ffcba218b7297b0db66173cd16da02519a9a54061ba03565aad9cb91a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 525e6f8fd96dc66b5d1a9495133542423feffc40a4d89f7c98da544b94273257
MD5 cd7fec32fbc856ad90c24f844a19ae54
BLAKE2b-256 8fc3235b305b55006492f4b5b182f3abc452d8fe482ca273e7e397afe1b494fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ef3cc61f3447118ff44c74e29ee78f061e8de34a022716017b3de7078ea8b0d0
MD5 836c8b19a1ee02c72a554b94a851afb4
BLAKE2b-256 cff7a0244c844001c6003d582873e3d44adea3f7e24af2c50b669a3cb53f3b38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7dfb7bdf29077ddc6284fffd284d56aa076deb6ae789ae05b15b3f6b3c37a8db
MD5 2bdaaa65e3c55fc8fa71ae21c377e060
BLAKE2b-256 e93c509c221899e9fd1c2d5e5a5fa2a2608d5a041e2782876604060ff19a1b4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9c67661f9d03eb4d46ca77c24a5fb79e0683434e1a3432311ec9271489e953d
MD5 756e116bf819a296577d3d4c1626a21c
BLAKE2b-256 7d8dac8d75e8778c8d830a382afa4ea0477247dc1be95f17a21dbae300cf00df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd98dc5638415553589d5be5e37e882f907753ef7249b4b90fb904923131c2ff
MD5 e4d6a0d6394f1a9a67977b8833ae8be2
BLAKE2b-256 8b48be325a5f6a7da77319939df3c36e9bfa0a8d627005cd7c767e605d9df288

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a7ed9c1f0794719c8d3240a17c5ad4a48f59840d144bd7dd7ca36beb5a264750
MD5 a68bb85cabf8fa23a5b33a0ce9168c50
BLAKE2b-256 ac2586245b3f4172ee1ecf1fb81bc551b64974d4197d18be21687d3d94478bf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 12b373c6999c00c38fc83df146ebd80c9e77a6a7dea30e5038a036852edb9a09
MD5 1d5e1c3fe996f41f689801b30a8a16fa
BLAKE2b-256 ec73c2f4a6b81b6079f956bdebec4aa14d011328b8323a47dbdc18f29e0e0222

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10dddb57ea4aa1442dd6c91be968d50cd6a961162c5a84d291eb12eab7311807
MD5 1d95ee708702d28819912e55daca081d
BLAKE2b-256 b2147d20b00df49fdec6f541fe00eb81e7f8f5a3d980201b9df953c881c50a04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f8e2b7caa34d99c8de481dddda417fc8e659101dfbba02ea9a637ee57107e6c6
MD5 3ddf053bcec46afef5459cca4b80d379
BLAKE2b-256 abc1ed39bbcef5732b117012458bc26caa5c1ddf80fbf0a42f4d799249543bb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 202e29ca315b444c52ded5df958fe1ff837ecc5dad42ab1a763ed64ea7132cb9
MD5 2725688d89256dd27f2baa93c3356fd2
BLAKE2b-256 9142bb3f876dfd6e3cf67f6daec6d18ffecf35bc665a1d91889a96a83d45dcec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a4e58a54bc5af5536054e1bca6c5c7fda63d948c6f1c456f7ece33738518b09f
MD5 12a2d93a567120a9e46b6b2e206115e3
BLAKE2b-256 a905e97cf44c75f6c32ac186031fa8974e883d1ebe2a1c3c7fd73c722ddb4252

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e38e120e425daee7612f400e7b428d27389de6149db714a3ca8489b57f24cf56
MD5 a1aaadf525152c84468c14a62f1594df
BLAKE2b-256 7f80282ee98b6040b7bd6b97ada1a56f9a358d4b07ace67173048c31b7301821

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e7d8f643db3d4559a0519fd76414f0746cde84ff49193c4d4f5d21dc88aded6d
MD5 bc9dd398c484e91f3d6dca764dc63760
BLAKE2b-256 2e966c77486e0c51d1b91f66e3d7c6cc07356d11ed269e872c13ae5ab5cb199b

See more details on using hashes here.

Provenance

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