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.6.3.tar.gz (147.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.6.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

aerospike_py-0.6.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aerospike_py-0.6.3-cp314-cp314t-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

aerospike_py-0.6.3-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

aerospike_py-0.6.3-cp313-cp313-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

aerospike_py-0.6.3-cp312-cp312-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

aerospike_py-0.6.3-cp311-cp311-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

  • Download URL: aerospike_py-0.6.3.tar.gz
  • Upload date:
  • Size: 147.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.6.3.tar.gz
Algorithm Hash digest
SHA256 99ce6031f3546cd612c475fdb7fdba7c9522a0f7a8b517616bad36e930e8a643
MD5 9abfbeb7bfdf2d62273732614bffebd1
BLAKE2b-256 642d26e7d1f287864f7bdc714e835a0fde32c0fa763a7f28e3ef1db27173e699

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7fac13b459f8f1446d091fe8756e0b5fc91d2d5fa4915ad9868ab1a521a7b813
MD5 c06d32b6afd5696b13b4437940436ea2
BLAKE2b-256 c79f666bea73abd0044ef93ad35c2ebb274196a8b918412196d53f38df64ca46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5a49908ea011926da3761789fa44086a09094ec2447a9fe319577704e47f33de
MD5 6593398d1baa36a6708597a600954e59
BLAKE2b-256 6938fc6ff6a22cca659c22bfd8d654cd6501641b727189061bd3639a64ff8142

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8402e67cf76c8568187634eee6e769f0b206b81c0a90410a377a5ee1bdd70f64
MD5 9c39be13bbf3400fdc23b3cb9a2113d6
BLAKE2b-256 d2a6952847994a0f7369fdf33e5f247978c68b1ef4eca8a0c29b8d0b6bef1e5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94c242c46feade775a8a833c76e0f1f34f5fb84f8518cf1129178cff0e097af5
MD5 b6277cfb22128af6e726f7e15ba3e4b4
BLAKE2b-256 0791628fb5570fa1bcbbc5aa3b344e1761296ce7891ffa05b21d3ec38ef90d23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b6c946a913664a3f18e95ecbc02dbb2f84bfb7c8d3813f187f2244330f3f709d
MD5 24783ea67433f431f65d2f31569d4b6a
BLAKE2b-256 fbd168eefe80fd9176a723fe524b7935eaa5bb7db76e9e6a55dba09281f0b71b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f57d425670554793c0063cd5077af875515950f366bb692f4442e8a3d22c6001
MD5 a291bfb1178f8d818a52b7eed8eedd4e
BLAKE2b-256 7fcdb2c751090a9dddc1023524de226835812cf8d5b4090a2d3c89a6e830ce46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ec49d964a6b7ce4d3d7cc43ba516aeae5ea550dd748722af74bb9bb4ad658d3
MD5 e66120cb1602156b3906897bcb999e5b
BLAKE2b-256 1df58bd54e720d7adc8361d90220b9e0431fc1153074dc60265f18ac12584c6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 af0e3ce5bce5074ebeaf677cf5eb647056d426b30317dd93d614b62b7f3ef016
MD5 ff725a22a742abfbe463f7ae7c7cb2bd
BLAKE2b-256 4520e891c85480f724197e2ad798fabef72b9ed840a9b2cd8c0d4327a1f43307

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cd0d6139c2c911242c7ee88e92ed3c27f1b108ec98df87d1bb87846014d70e95
MD5 ac22c703fe8e015090d462cdf698d4fc
BLAKE2b-256 13fdc760a71a050c71d5a20313ef8ce45ecaa28efb0b4967b122c7f0637117b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f858c26bc601b9ad10e97804fb66593b629be0a66eff813f766a9c85ef899f56
MD5 8b7acc704edf9c2735ea9b1fe12a20c7
BLAKE2b-256 ee612d8a8e397b63dbfb730d5d7cf36d6f0c4e1eef73c7cf7d97b951d829bab3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db2163d7fbefae31e7bd69de4ec0e00e16cede41a58a5767b5ab9cafb9a77fa1
MD5 3f48f3c02032c210cad1a2c81ed5e95c
BLAKE2b-256 906870eacf1437ec44f9612fe0ff38a8f7757c125807bce4ad2a634980402050

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd1e572c61c8adcd8eed956c8a19c9bf0194bbb46f433e234cf133ef60d40e3b
MD5 1294c67dad892ede2357d92a902d050c
BLAKE2b-256 bd60b70f119cfa8eebc986c06d52d42877615b40f0d8c622db14136dbda6e71b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 27f21f958b1a1c44444d20cb362192d58bb6dc03958ea2709b7cacdeff691eba
MD5 07695294b5b351f595e86d47600894e3
BLAKE2b-256 ef0e7e54f4275ddce576ffce70f70bd05cca9c136e2f4a1a6adf2e91ca1be900

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f5572998beae6e849d45cf58da284c691aa1eddf751033fb6f7f86b5b5a3b21a
MD5 77309d118cce8ec7b9e88714f0de67de
BLAKE2b-256 97de5a9d2cf58f4aaac25c6106ad6daa2eca707948bc32e4a166d689c69ddba3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48be945da83cf5ba39e5abe74cf6036fb3b291b2c5d0cf2f6e86c6ac8be35213
MD5 708941c50b35438274f6576ba0b70099
BLAKE2b-256 7da7c295a1c6ebaad9f586a7e1b57dcedc11fa3e873f049573a3eaa845045925

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84f867477c134847ab0313c0a77c5664a0d71739a971a566805c1d11c4cefa4c
MD5 07609cdb7708609baa80d253a42cdbf7
BLAKE2b-256 b16789cacca8c5429ecae6c8ac563c56bac1951f977248d26b24cf56e1a887a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 098c7b1e6246b681b76ad5caf6e0d5a859a68135b2093d7c6b366a786d4bb15c
MD5 3cdbd1fd1c8c049e2733190189cc0cf4
BLAKE2b-256 12839c773e6bd3b884d2506173052d571b7e2f99af099ffa58ea800c66a34d56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9c99f630b7aa4bcf3b39ddf828456a38f1f46edab139ce46771dfd70b3efea85
MD5 24832c9a9b63cda25c0294f28c92ce19
BLAKE2b-256 9133b17cc1113d9dcece03bbf1e48cf04ed3c6b52a3c47fb862a8f37b9a4dac9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c11c404da8ccf7621e27cacb44368fbdd8a2ca1b07ea332514500abd346ef4a0
MD5 f4db8c7ba3a8cd8d72865a9f4f7e16ff
BLAKE2b-256 ff5f2782af59673723b213d709746a6fdcd9db7a36c7a7b3cc45b8990b46be90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a1ae492597b2ea5f52551438a44da7f5b7a86573875e928bb94058ff5f00de1
MD5 0fd6d5fd560fff0034fc72b5bdddd57a
BLAKE2b-256 759710fa0bcc46dbbcf80a5b43e812fc7d5646b29fb00e81dbee9593e801c010

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 97b5caf7c72a2463292332d101ead4d5dd4b222ec81960d0051730a29e47da80
MD5 c0ff3032f73592d2332dc69dcad14322
BLAKE2b-256 8a168ef3d5e068f5c93c36dc2e9279b01e0b95aa344793491a421f557f63fafd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 091a4d2d8c6c9adf1ce2c12a6a7f15b5ca48f32d62b9ea393d51e766bc70f05c
MD5 faa1ccd6bfe18af47d9a88aaa1abdb15
BLAKE2b-256 7dd22e9cf16d89f229ba2caebec2b0a63dfe3eb9c38937b53353b09c325a10ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 129538fd291531b6a55971d65f7fe4250ada29aa78f9ae2a9ad50ddfff61d3ab
MD5 24130c01dd5af6cd6133c0caa1348d4a
BLAKE2b-256 9a48c7002b8f37255508894a864843231caefa4e7f112e3e53d9a9f3f14f7301

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0c73c5cb9e083e52dc48901b59e042dcce5c592c6d8d3deaca04ae12bfc1b8f
MD5 831818306d10e8c08b9a06e4b9188997
BLAKE2b-256 709545a2e95826c9fb90b345c02c96b68696a2e38ce54d68f7bc8ac23d5746e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.6.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 082ae7714d7c31f94f715b9747e75331f69b5b84acfdadb234314291d01c2e9f
MD5 987e62a23ef722a52e0abfe8d280dfc8
BLAKE2b-256 126f17d3f2f261f63b998893ec58fa057edb571a90946f23359bf3740fef14ed

See more details on using hashes here.

Provenance

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