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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

aerospike_py-0.6.7-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.6.7-cp314-cp314-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

aerospike_py-0.6.7-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.6.7-cp312-cp312-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

aerospike_py-0.6.7-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.6.7-cp311-cp311-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

aerospike_py-0.6.7-cp311-cp311-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

aerospike_py-0.6.7-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.6.7-cp310-cp310-manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aerospike_py-0.6.7-cp310-cp310-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file aerospike_py-0.6.7.tar.gz.

File metadata

  • Download URL: aerospike_py-0.6.7.tar.gz
  • Upload date:
  • Size: 149.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.6.7.tar.gz
Algorithm Hash digest
SHA256 536158f165d40211c26fb32730e3266018c6b3435538e8890b659caae3270fff
MD5 7c21939aa9c141c76317798ccd768ad1
BLAKE2b-256 39af23b0154e88fcfcd6a3e9d24401a62b72e4b905d0755d4b3249a466b11e4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7.tar.gz:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ef71de8cf06d05a7306b28a3d4e28954420efe3a809f21897ea99f3dbc29b51
MD5 1f5cc1b1c81d8d6e5a89d3e53fa263d1
BLAKE2b-256 f758385fd0e37aa35577ee77d4678cd66326c5c82381be16887321ce6b8e800e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d411cf8cd7070323746dde49a8b1e96b9b60a7e63bab7acd48a91fb3d82ac63
MD5 ca8e4ea824e472cca47d65fdfe6c36c6
BLAKE2b-256 09eda202c9ccfe42dedfa3a7e823545627a75f662197be6a88b0a3a1e9a2ea23

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6f211f1bdb7aa17552093254ac6c71726e0e388a430586651a6feebc8b1556d2
MD5 a07628408832329730a8d9dd7eb0bd0e
BLAKE2b-256 246567d3d7951cdeef35f8f04d9dc291cd9f7d61a5345e5ba70e9645b69ae7e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48ac2fdb7e7809f7989a3fef0abe3ca0bcd86688ac89f8dd1e7236c42a418288
MD5 6676fbaeeeea3e260e93a0a5632fd925
BLAKE2b-256 6db01f1930b569871ec86aae4093b20fe22cab38bdda9ea6ac0ca97158bca2a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee3758fac493e8615f34993cd412664bd5f069df17b074ce0aa0ae9d7f0cdfb3
MD5 5298195e89d6b335fff23126e1e2dac2
BLAKE2b-256 3154dbed3df87bfc6a16db6b7d78b8f1c623ee80238c033d64676cd5100149b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp314-cp314t-macosx_10_12_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 435f553059c3c00a0f24b134d9e6b1cb6285fa746ff5ae0ab510ea0f1f2af27a
MD5 fd6b2192f8218e8c2c264c103ce2c81f
BLAKE2b-256 78beafbd6823e4e2a0f12eb332414b79908cbb0db1892eb4487f09f5255c017e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp314-cp314-win_amd64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0c3e66a95d6878fc88e30ec93e266dbd8a216df53f473db59d70ddbfc514c03e
MD5 534601d56b9764272fc865ba8b7b0abd
BLAKE2b-256 88f6b44172f335576b6de9716fa2820bccb2a724cb948322c3b36ce99324adfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ad7888f825d02cee27aea0227876e6270c9dc7cde6a2b9a9ac0c14efd5221ca0
MD5 5cd6d3ac2c724b6f4dffcb044e2f3f64
BLAKE2b-256 abe1b1658e87119b36641c08bb41633038b24ce4837067c6263feb0c6197656c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 81770559d567e2a006ca858e011f3eea7b27909459e2ceec81b6059eaea3c471
MD5 4a445fbd2fca5bb5b9ac5673f7fdf0aa
BLAKE2b-256 2dc33a5bf87730b5c78c6d5c9bb60eb70d99836a370aea469ab0e06623311b48

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp313-cp313t-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 acc879f504ed35d66ca9c029962439eb1fc37db609c7e29d53b6d4a8f0d40834
MD5 723471adf736f01c2ec9df557e7cedc1
BLAKE2b-256 acaf1cc59449e4d09254f9b686cfb84cc3a258be59c2b158cb8a35d76f37ced1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd07e4403b33ac89b4c53aa5fdc40918d9fc6f0616068ffc8375c62fcb7b1f63
MD5 2bfb1c58aadd44236d7c7a22ee4ba1ac
BLAKE2b-256 f705cee569dec2f3dc9b956280f3ae42e57429ab4d21bd3d5ffc16d4375d527a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51d78d0bbb8a4be03d25179941822e87b89e715adb17f1be22db34532d1cea7a
MD5 fb127bea88870c8beee5777e887fc46f
BLAKE2b-256 b0c12204a44131491b6571a6faa07e1f72e9b4233947d692c334ccbe919b8d34

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d1380d5ef14fafa69de4fbdbe83ac8835578e22afa1534fede8baba5c4d34d2d
MD5 362b6ad1e6d85e3f8c395e7bdd1f58f7
BLAKE2b-256 16477c83a558ebd1d9c3a0d062b549bfa2e4ba53716b1aeac85dd6d766757d29

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db3ac4b74df4a902a7247a326120d8dc8e77e02ecc834fff27651c8946f5072d
MD5 362dcd310ce49a9e6bf172c5f2baa5f2
BLAKE2b-256 92dcfbfccb65f2c5404f9f10c00b3b8fea2e11bcab83625917de619bc498a885

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1195f8fc71fd4b6e3cf76a41e5db00ccdf0e2b460b7dfcb3f060578339e87a18
MD5 0523aeb9d2da81e17b89681cb946e2bc
BLAKE2b-256 7e7dd61a8a9fd1b794ed0c8679df47df40295a095310b042a84940ee0ad7e73b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a0f37d8bac9f1cb3c3877bba1789abf9609c813c8049c18c366cd3e916fbbb7
MD5 bc9a0de1391609538adc4b6d7635c5b0
BLAKE2b-256 f6c357015a7e4c186ff919b1fdbcb3f42e2befd3e81b98ad5a27222574295533

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ef0c2b5db81155984c1ef77a0e5600f2633ce73418f1ad15578ff3b1dce60218
MD5 fbfc40245f7fd64bb88fcfa63387eab3
BLAKE2b-256 c8c047dff43776e3474d6791fc94060bb1a839a35100938a7fa8328618b444db

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 56381612428c70938cb82a3d104ef4e14d42053de49cf4b670ec0ba274805d43
MD5 ef93ab6138e2463a3b5a92f5038b840f
BLAKE2b-256 4aa149f72e49c60e23b298f6da3b3d730c4a3f78b14a6afdc72313cc4e113941

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b42fa7538d5d92e7698054c2ec4e83cfd2d2f474cef7445373a6e8ccb647f10c
MD5 2e348b080795044c3b8e28386ba22f0c
BLAKE2b-256 07272bf6d1dd0ac12e2dc1a766753f6ef25f381b387175c00a94609a5779df9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 245823bf03bdc25daad993ce070886353871d70fcf785dc11466d40b7478d91d
MD5 93fa441effe1a3bcfda9d3f32ef3f496
BLAKE2b-256 7337168fb4a8ae0fecaaf4a24865223e50f686015a6ff0a8a76b3d5dd0a45ada

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dd9214c9c17d7163bfde6c6f3caded7eb0698efc826309b50be1d52ea21ab8f7
MD5 abd0fc30c61cb08db72678a2704c3a11
BLAKE2b-256 d88ccef0241b937ebac3d989a39baf9330937de3d96de73c7dfa585c99b52eb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 40e62b24dd30a9789c9313a45519475c39751804a8b9fdf6b042d8e77a205ad3
MD5 6a16412b46f9659c8f51cdfb10fcff79
BLAKE2b-256 f2611fe4c6a3e2e23fa00e08f758427e36196fdbc4be4a9f055c1d36ac90b8ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7575ef7667559b17d4e55ee38a684781999795ba27664e3f2b3a22432f08f804
MD5 ad0bcef036a53c09ba3d15ecd07905a5
BLAKE2b-256 42edb6b1eb9b5da54bacefbe90d26a11bbadb2e718f192950b5d7129a0bcebad

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 885bf7d553b0d02d8323934b3fee49e1891dc6abfdd7df0276cf0546c1f96583
MD5 6b79e767380ddf290e1b727a3e9afcdb
BLAKE2b-256 bbc658b5152821cea9919c091f4c0660005b804ae5fbaa38e301058c2b4f42cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aerospike_py-0.6.7-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for aerospike_py-0.6.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 65e85ded7ae5ed744c9b429b12d75b79a527821a15ff85e352fd6fc72fe1bc33
MD5 38d545ba5fa7e5d6615be78198597984
BLAKE2b-256 136b0b2568c94d94bb6ceba6a468d921c63593d87736e6785cd07d064f252253

See more details on using hashes here.

Provenance

The following attestation bundles were made for aerospike_py-0.6.7-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: publish.yaml on aerospike-ce-ecosystem/aerospike-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page