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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

  • Download URL: aerospike_py-0.5.9.tar.gz
  • Upload date:
  • Size: 140.1 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.9.tar.gz
Algorithm Hash digest
SHA256 2f5dbf891d05033b6e52f7f1261dda056dd7513cfac7784ff1d95d956761af3b
MD5 9e97c4f364e88842f5c6ec04032e8a73
BLAKE2b-256 2be9aaff901b74ebce85b9bb0285e7e8ff41234e7b4cea7db6024c70471b500e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0e8146842ab0c32690625ffe244e1af42be2522a4fa283c2f0900367b334dd0
MD5 c966f58d6723da121317a07ac6ae74f3
BLAKE2b-256 fb33d80707b021ff8ec16fc02af2484a5ac4d5f8060abbe48fc82d276da2c945

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f953ae9a33fec376f2fc4e0b4d3046cf60347ca82bd0197b482f451ac8e72038
MD5 a8e3740d779c34866a2e0db4fee0de3c
BLAKE2b-256 07eb6a4bcfe4ea2add7bcccf6fedf8d35d5445baf1a7603b0e3571af571e3951

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21ed4786480fa4361aacb6d36529e84893324a6c1cc1c89ecef43eedb44035c3
MD5 1263e716e1bce7523cc53187504e24ea
BLAKE2b-256 761924734cc9da28e9370e486423cb8a11fb3545a1f3e176598727b0377887c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0372071b5a75b73120be48e91e40aeb311f28601e8f9b7813d66a0e717ea895b
MD5 7e74fd03d401c84a02552fc3b14d4a36
BLAKE2b-256 be869e4761cb391456faadfc7a63408784aeaed6747dc585a6e21c0eaf3fffab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4aab16bc83f825f95ce699825c843bf43a5b57f403c6376bdf1f9167dcd13238
MD5 f62ac9e97e62c7135d05220f2c9d77db
BLAKE2b-256 5287ad1ad1e027839ba4558f7ca90660a8bdc8dded84d4f0cfeefff263f45b4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5e088c96fea08ca787b6821e104d0101ada9ca1671666b57c9f6af29f6a0c807
MD5 b00486a0bf71c0072285475a1d747db6
BLAKE2b-256 d5286319a93d11c08e8b8ba07015599a720f271cb0849bad90a429c3bac7c65e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd59b05b3c432f049d96d294921d90b8660263c8abe3f17034a76cd57cd7aa46
MD5 129088d9d61b961ba280c8be3b50976f
BLAKE2b-256 22db29c78f75fbe6ed24ead0bfdc6ed5d873611b37f8e86bcaa0b24e93091238

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 726fb1ca05bb89008142fb34df578596ec9ee320c139c48b5fa08d97c4f0ea9f
MD5 4b7aea20a75eed7cb7573a59e94cfd93
BLAKE2b-256 56ee674ada213fccbb9b5d0a951267a38271a5ac6575b4b6314d3148d3737abd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 40e79dfeb9b3e26c53478d7822bddcd0907411ea1ec24ed9f95d096de06c88bf
MD5 28f4018f5f864e114a945e3acfd253c6
BLAKE2b-256 505c80a23d9b73965fc64202da5f9c43d2b3ccbb641b2247d9918fccc3655b83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 328ff095f1212c85bf41a4bc65a89ee790ee9507de19376738ce9136eb55a832
MD5 179ed193cd09ed4a35c45a4d59364ea0
BLAKE2b-256 06ec5b6ae4128f3fb6ee92ee92240ae763c35d74e12f061af47762219746279b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 210387d482907217981d1aa7cee78eacdf99c682e971844c3c35fd8e54cec828
MD5 de5dfc9dc26c004fd4adeb04cd3d9e8f
BLAKE2b-256 52cee86075daf4950cd86505f20070203e008a4e3a2ccf3f425cb0699f216fda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64f562d92495319ccc4268de48ecacb665870fa3d19ac54d67deccc28d20c3b9
MD5 dec684399f040bdc174f03a948d2cb47
BLAKE2b-256 00dfdc22501a7d69d70f397dc414832c8da5fec1511da089edd5b933cb64f935

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2e2a3810e22bf36fe41294d736dc4b9ae4e63958d9487fc1cc221d3fbdc7399e
MD5 46d16a8686663bd7ebf87953161e5ab8
BLAKE2b-256 3ff8eb2c2ee704f8fac2484cbeec7238a65382070048cab1fe77ff3b79a294db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 edb201369cb7753504f6dc43c39b9f83daa40f5995aaeb84732ddca8a7dbc5f3
MD5 c09845ac88c4b810f7520453036383d7
BLAKE2b-256 e8b6ff3818c45c89a6523b0bc50a31672d7c5b1c038b48626965834e68d4cd7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 33a6f109c0f63637789756a519a4b52b62ac7d7e17a9c44dc628681c6d10657b
MD5 1fa38a9e406ba25c4c5c227de4ac190a
BLAKE2b-256 76fb28df281148b27fde6bd538dd4788121c7612b0c98daf7f7e750febac07a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2748ed84dbd8dda274b91a59814300c81ad7d1118f63d97065e6debf79b7106f
MD5 7c4ef16cfae1527a5b8edd077fa326a1
BLAKE2b-256 5fa57e42532e92487e608020c6cd63e64625444ee54306cd8ddb9800e6a17a58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 70d1636d9c823f14987537da4d6a06ea173e415dd63f52ee5c5b8dc246a8ba00
MD5 014dc22e24e53634c3a6fdfc93870b24
BLAKE2b-256 16fe7791e933874f32af72d6e806e7974aff0743c10d02cd247ced9e72cc1ec4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0dd1e77cce75e3ae992fb25dd5a56dab6e68f305cd9b647ef0ed28229faa05e1
MD5 e389116f90b582376619aafd473c3c5d
BLAKE2b-256 31bef0f241b3775e7c4881d950f58d59eb779340f6050f49d98b6069e457db26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2daac596ad67b10429d26e4f89c5edaff51d979c37722f916d6d1303ac1b6c54
MD5 f7e12d8a8c04380bb7bef0b9e3669b2c
BLAKE2b-256 a351ff6e6bc4bb9f7b7b671e089639f19dbbb588d1abede5f20c6e7967409144

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b799c338d3a8d52686d26e7b40243dda49b7552915c3630a023e21bd4e7a40b
MD5 4348612c5df11136620147fc29b9a9eb
BLAKE2b-256 c9f24d467fea16a7515bc62ba5861505ddc5a6709ac83a53b997687d26504082

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d23863030b0ad13633b7d83920fd78faae50c840d9b828ec2ff3a977954a79af
MD5 4fbfb238401f5db956b8ec018c8d0b12
BLAKE2b-256 7a0363b7bff5de2c5c4ee1c098b39fa3661a1545e93674e1fa1a4c95a6be3d81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cce7d8f6721a4bcf6e60eb0abfe610c83c527033689619eb24586b93022bca42
MD5 929a0744dad65d1de6833d0dfca976d8
BLAKE2b-256 0a3806fc0ead50bd17aa7f051ed04dff931782d52e9671f1ee347493832a01cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 75d4e1fbc02a4847a5d9de65abefa1210258c8a306dc757252abfb326a4aa7ce
MD5 d86b087fa0b5e452e0569f3226a3192a
BLAKE2b-256 02c7834427cf5aad6ad7ca09b4d87382e63a1c5609d196278ceea877e3a8d28a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7051b198f9a0d25bc4896921daadc1a0c943310c3294d006fbcc0eeaa3d67cd
MD5 9e546676125bc792fcaaf19b37ba6ddf
BLAKE2b-256 23a8115adecd422c5e8bc944a8011d2f40d9789a725fea34f2b49bcdb800ad64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aerospike_py-0.5.9-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 63fe147b3e57f5e35e2e1f10a18bcdddfde724c2cd392a5bc314a0e94fc9a66e
MD5 2e77c234a8d820fc397e0d437a9ad895
BLAKE2b-256 ab4c0d8fdde9f1b3c97b83db98aa54e0856c07aeadcb6314bcd9f4f7982a8466

See more details on using hashes here.

Provenance

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