High-performance Aerospike Python client with sync and async APIs, built with PyO3 and Rust
Project description
aerospike-py
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
- NumPy v2 structured-array results for batch reads (skips Python-object overhead for analytical pipelines)
- Full type stubs (
.pyi) for IDE autocompletion
Documentation — API reference, usage guides, integration examples
Quickstart
pip install aerospike-py
From a source checkout, start the local Aerospike CE container with
make run-aerospike-ce; it listens on 127.0.0.1:18710. If you start
Aerospike manually on the default service port, use 3000 in the examples
below instead.
Sync Client
import aerospike_py as aerospike
with aerospike.client({
"hosts": [("127.0.0.1", 18710)],
"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", 18710)],
"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.
Repository Automation
This repo wires several automations that fire on commit, PR, push, and schedule. Knowing they exist helps you understand why a check ran (or refused to).
Pre-commit hooks — .pre-commit-config.yaml
Run on every git commit. Install once with make pre-commit-install.
| Hook | Source | Purpose |
|---|---|---|
trailing-whitespace, end-of-file-fixer, check-yaml, check-toml, detect-private-key |
pre-commit/pre-commit-hooks v5 |
basic file hygiene |
ruff (with --fix), ruff-format |
astral-sh/ruff-pre-commit |
Python lint + format |
cargo fmt --check |
local | Rust format check |
cargo clippy -D warnings (--features otel) |
local | Rust lint, zero-warning gate |
Claude Code hook — .claude/hooks/
Active when developing through Claude Code with the project plugin enabled.
pr-perf-gate.sh—PreToolUsehook ongh pr create. If the PR diff touches any path in.claude/perf-hot-paths.txtand the conversation transcript has noperf-impact:verdict (from theperf-impact-revieweragent) or benchmark run, the PR creation is blocked. Forces measurement on hot-path changes.
GitHub Actions — .github/workflows/
Build · release · docs
| Workflow | Trigger | Purpose |
|---|---|---|
ci.yaml |
push / pull_request to main |
full validate (fmt + lint + typecheck + unit + integration matrix). |
publish.yaml |
release: published / manual |
build wheels + sdist, publish to PyPI. |
daily-release.yml |
nightly cron / manual | nightly release pipeline. |
docs.yaml |
PR touching docs/ |
Docusaurus build check. |
docs-publish.yaml |
push to main |
publish Docusaurus site to GitHub Pages. |
docs-version.yaml |
manual | freeze a versioned docs snapshot. |
PR & issue automation (Claude-driven)
| Workflow | Trigger | Purpose |
|---|---|---|
pr-reviewer.yml |
PR opened / updated | automatic Claude review comment. |
issue-planner.yml |
issue opened / labeled | generate an implementation plan in the issue. |
agent-implement.yml |
issue labeled plan-complete |
execute the plan, open a PR. |
Skill & docs follow-up notifications
| Workflow | Trigger | Purpose |
|---|---|---|
skill-impact-notify.yml |
push to main, on skill-relevant paths |
open a routing issue in aerospike-ce-ecosystem/project-hub. |
ace-plugins-pr-notify.yml |
pull_request opened / reopened / ready_for_review / synchronize, on skill-relevant paths |
open (or update) a follow-up issue in aerospike-ce-ecosystem/aerospike-ce-ecosystem-plugins so skill maintainers can mirror the API/docs change. Idempotent: re-pushes append a comment instead of opening a duplicate. |
Both notify workflows reuse the
GH_AW_GITHUB_TOKENPAT for cross-repo writes — rotate together.
License
Apache License 2.0 — see LICENSE for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aerospike_py-0.10.9.tar.gz.
File metadata
- Download URL: aerospike_py-0.10.9.tar.gz
- Upload date:
- Size: 173.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1311b52c7ad992250c97e0a22ac2e922f0d63fa0358ecb266d26482192c038dd
|
|
| MD5 |
b8d1886031c516407f73d92d16298c61
|
|
| BLAKE2b-256 |
0bac6529ddabf1398baede0c3078b8077d52a140b941408038a1a73e0f7c5765
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9.tar.gz:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9.tar.gz -
Subject digest:
1311b52c7ad992250c97e0a22ac2e922f0d63fa0358ecb266d26482192c038dd - Sigstore transparency entry: 1596034285
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: PyPy, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34fa2053fd0ba52d3059c41288f3a17241b6e06f87632fc091a1752a0ab72945
|
|
| MD5 |
bf88085e0e02671434c7b6931204a7d0
|
|
| BLAKE2b-256 |
62624dbd1f63d0428868efeec1b172e363995f147f297428814e0bcc9962dd32
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl -
Subject digest:
34fa2053fd0ba52d3059c41288f3a17241b6e06f87632fc091a1752a0ab72945 - Sigstore transparency entry: 1596034841
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: PyPy, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
524401857c640b4f34e5a771d6d3e232b5aa4d4884531623dd0e302c230beee2
|
|
| MD5 |
20028302a2e3428c6a780c78b5b5a8f6
|
|
| BLAKE2b-256 |
6c2e91f2330746b2ab80ade6a510bbaa3261f620443b975f090194431c5dcd0c
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl -
Subject digest:
524401857c640b4f34e5a771d6d3e232b5aa4d4884531623dd0e302c230beee2 - Sigstore transparency entry: 1596034776
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp315-cp315-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp315-cp315-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.15, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
354ac16552b64b5135cd29d594fc7ab5f3804f45a3a0d0e2390362d00bacd01c
|
|
| MD5 |
3c324f75cd98309e7ab921c5cf420446
|
|
| BLAKE2b-256 |
898a97b2def5078fe3eeaea433342f9c19d9fae0d227cbc409eb6545b09ef347
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp315-cp315-manylinux_2_28_x86_64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp315-cp315-manylinux_2_28_x86_64.whl -
Subject digest:
354ac16552b64b5135cd29d594fc7ab5f3804f45a3a0d0e2390362d00bacd01c - Sigstore transparency entry: 1596036104
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp314-cp314t-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp314-cp314t-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0654a1a30da6d36f35e5e91a24eb8b2bd7203c83556aae47ffc1e99f6108e919
|
|
| MD5 |
cbdd0e59990b01d8ff48a504cb045e04
|
|
| BLAKE2b-256 |
0a12908f79b061767eb790491f8c8076dfc801071dacd974aa7e78e60dca1b3b
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp314-cp314t-manylinux_2_28_aarch64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp314-cp314t-manylinux_2_28_aarch64.whl -
Subject digest:
0654a1a30da6d36f35e5e91a24eb8b2bd7203c83556aae47ffc1e99f6108e919 - Sigstore transparency entry: 1596035262
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a67779ec62e24e8e27322f83abab23bd1b6cf5f7f6ebf5af4bca5dc3ff8f4072
|
|
| MD5 |
cf3a4f77a1ed3628391fe9b3c37f4396
|
|
| BLAKE2b-256 |
f9c35c8fd602b4ed40bf3f3d73786343dea4a03951f1885dd26df5cf45bfbf41
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp314-cp314t-macosx_11_0_arm64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp314-cp314t-macosx_11_0_arm64.whl -
Subject digest:
a67779ec62e24e8e27322f83abab23bd1b6cf5f7f6ebf5af4bca5dc3ff8f4072 - Sigstore transparency entry: 1596036425
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp314-cp314t-macosx_10_12_x86_64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp314-cp314t-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.14t, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf28057174929cbca842470a6b9c26a87ac9a1735f9d3149a9e88edba710029d
|
|
| MD5 |
58054831653ea4dee92c6c367e0489d8
|
|
| BLAKE2b-256 |
ba1a4d0931aad6024a5663c263903703eb030b09d9dde21adb09b262a74fc810
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp314-cp314t-macosx_10_12_x86_64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp314-cp314t-macosx_10_12_x86_64.whl -
Subject digest:
cf28057174929cbca842470a6b9c26a87ac9a1735f9d3149a9e88edba710029d - Sigstore transparency entry: 1596035325
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0df9c0ce145b0398f354dffeea7afe467b2f9af0cf579c4d61e2ca572b067dc
|
|
| MD5 |
374ceaa90f468c2531ad9f5783ef3ae5
|
|
| BLAKE2b-256 |
11901cb27c47050a2e1314dd827e000ac32d972ad1faa12b6da34961e0f6a32a
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp314-cp314-win_amd64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp314-cp314-win_amd64.whl -
Subject digest:
f0df9c0ce145b0398f354dffeea7afe467b2f9af0cf579c4d61e2ca572b067dc - Sigstore transparency entry: 1596036176
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp314-cp314-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp314-cp314-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b29df5c708d2a2e1618ba48d05c9c72d2686e340a92a3a2f8df89d486f1b53a
|
|
| MD5 |
d50b6f828ac6f1e33dc7d6b2817b04ee
|
|
| BLAKE2b-256 |
6ba50cf2eac5e22a2a8c2a08ee124be93e40303eee2531d8116c8cb63d3a57b0
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp314-cp314-manylinux_2_28_x86_64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp314-cp314-manylinux_2_28_x86_64.whl -
Subject digest:
6b29df5c708d2a2e1618ba48d05c9c72d2686e340a92a3a2f8df89d486f1b53a - Sigstore transparency entry: 1596035018
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp314-cp314-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp314-cp314-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f544eeb3e3b7c5d269a046ec6e9d14c307652fd27d05cedc1928807a9910f8af
|
|
| MD5 |
f971ff79d843ab59d7fa60ea096d0281
|
|
| BLAKE2b-256 |
e11a183b98b42775b0e97c3bb567c485933761003e2d81acd25bfc09ee1a3cdb
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp314-cp314-manylinux_2_28_aarch64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp314-cp314-manylinux_2_28_aarch64.whl -
Subject digest:
f544eeb3e3b7c5d269a046ec6e9d14c307652fd27d05cedc1928807a9910f8af - Sigstore transparency entry: 1596035396
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp313-cp313t-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp313-cp313t-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.13t, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ed14e55dde2805e2731b4dbe3b2545967fa661f5bc1b5696ef6c400d48b945c
|
|
| MD5 |
76cbf7d399748277e659688b20e08528
|
|
| BLAKE2b-256 |
099febfda0729896fe67b32fdb6269f6684939cfe1a156f1a8b05087b18e5608
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp313-cp313t-manylinux_2_28_aarch64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp313-cp313t-manylinux_2_28_aarch64.whl -
Subject digest:
1ed14e55dde2805e2731b4dbe3b2545967fa661f5bc1b5696ef6c400d48b945c - Sigstore transparency entry: 1596035486
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp313-cp313-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp313-cp313-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52889572c2fdab75b6f0cae60877aa8b43fa780b841d3589b18b75a277894cec
|
|
| MD5 |
89bf878b6bba7cd4cf57830d335f604c
|
|
| BLAKE2b-256 |
5dc87a9cddd8ed7e5b73ba5e04593131085531dadad68d62dc6c3f99c62e3ff9
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp313-cp313-manylinux_2_28_x86_64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp313-cp313-manylinux_2_28_x86_64.whl -
Subject digest:
52889572c2fdab75b6f0cae60877aa8b43fa780b841d3589b18b75a277894cec - Sigstore transparency entry: 1596034409
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp313-cp313-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp313-cp313-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd246b07ec7e5994e9e9e2a476ba127520a1411f9119f0e2287ba73fce645263
|
|
| MD5 |
b497449d2d3cbc76dd3a5989576e0d20
|
|
| BLAKE2b-256 |
b52333e0f1cdab91404a647730271587434987cc7f4ef71fd38f6f5c08b5ee99
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp313-cp313-manylinux_2_28_aarch64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp313-cp313-manylinux_2_28_aarch64.whl -
Subject digest:
cd246b07ec7e5994e9e9e2a476ba127520a1411f9119f0e2287ba73fce645263 - Sigstore transparency entry: 1596036264
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dda6e16506b32886469e70851fd3a2e41b168ee682ac659df8aeb9c7c7ac23d6
|
|
| MD5 |
5f2333a18b391e7e60032a3c5f874738
|
|
| BLAKE2b-256 |
b90045bce6664db49933bca7bc6324ec89f23fea5f997a183b3ff39afd66249e
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
dda6e16506b32886469e70851fd3a2e41b168ee682ac659df8aeb9c7c7ac23d6 - Sigstore transparency entry: 1596034511
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8a692c07c649242e07c65fd6b52ac1deb3efd0d8f6363b11d2880a76a60d8c8
|
|
| MD5 |
9c335bf91ec8ef2e13187a2e2aff904b
|
|
| BLAKE2b-256 |
e064870add4003a339444e51fb6c2c81e93352bf5323f6d6e401230f85b505e6
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
d8a692c07c649242e07c65fd6b52ac1deb3efd0d8f6363b11d2880a76a60d8c8 - Sigstore transparency entry: 1596035967
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dad9e78309d1a0ba2a164243b6a9f6b72674d02c9037a872fca4abac79df22c1
|
|
| MD5 |
420704829ae3ab34368df33d870b4d95
|
|
| BLAKE2b-256 |
686c38cf95383eca750a229dba94db6205cbdd24b67f9782db7d0c21f4e39cbe
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp312-cp312-manylinux_2_28_x86_64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp312-cp312-manylinux_2_28_x86_64.whl -
Subject digest:
dad9e78309d1a0ba2a164243b6a9f6b72674d02c9037a872fca4abac79df22c1 - Sigstore transparency entry: 1596034923
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp312-cp312-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp312-cp312-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce638d4896a6620f8f8409825ff1ab422d6e720547a4fb84f2e5538084cd3409
|
|
| MD5 |
70af433d1ed145f180c81d507514237b
|
|
| BLAKE2b-256 |
00e09d7cce105fe2b62f10337cdd1ba1cbac67cf220bb12aba6aae6b1b853b8d
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp312-cp312-manylinux_2_28_aarch64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp312-cp312-manylinux_2_28_aarch64.whl -
Subject digest:
ce638d4896a6620f8f8409825ff1ab422d6e720547a4fb84f2e5538084cd3409 - Sigstore transparency entry: 1596035185
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16b0c59c518fdb6af8f052d034c40f691a9f875ff2e28506592de66601397132
|
|
| MD5 |
6540bbce0d42afe746c2f96f978e4181
|
|
| BLAKE2b-256 |
dc22b6936229cd71f077b8012f1e737f06ee2f25d181b2057fba6c7e21c2f7c4
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
16b0c59c518fdb6af8f052d034c40f691a9f875ff2e28506592de66601397132 - Sigstore transparency entry: 1596035892
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
590f47d6eed0b3ad152849692e2082df0f874a75d523f98595fd809a689bdcba
|
|
| MD5 |
c437d0e796b4d88a2f4799b5a4a85879
|
|
| BLAKE2b-256 |
f6a352ecb334cdd358bcd54beabc5d37b45addca04fa13063651a19bd9e63164
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
590f47d6eed0b3ad152849692e2082df0f874a75d523f98595fd809a689bdcba - Sigstore transparency entry: 1596035111
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e25e65062e274c1f4bc3a7c8a36bcb9be684fe33fdb50f2b063673f11927ee8
|
|
| MD5 |
0c4929c45ac3552a22b8f9ce5b430d30
|
|
| BLAKE2b-256 |
7bb3c8e7e4dd1e3dc1b7c34fbe0497fbfda28be5fa2ee7d27809db06f3ade6b1
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp311-cp311-manylinux_2_28_x86_64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp311-cp311-manylinux_2_28_x86_64.whl -
Subject digest:
8e25e65062e274c1f4bc3a7c8a36bcb9be684fe33fdb50f2b063673f11927ee8 - Sigstore transparency entry: 1596036335
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp311-cp311-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp311-cp311-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6bc1761eeed34dd36b6f6c9f9f3ca5e1d86b3b016f2db468d5c105f8f2e158d
|
|
| MD5 |
e99ba0d7797cb4daa97fd73fb1afa1c0
|
|
| BLAKE2b-256 |
62fa813ff0dd4be476a503636c02f6f2dd658ab57d07ea4d63d97f0c74c30813
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp311-cp311-manylinux_2_28_aarch64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp311-cp311-manylinux_2_28_aarch64.whl -
Subject digest:
e6bc1761eeed34dd36b6f6c9f9f3ca5e1d86b3b016f2db468d5c105f8f2e158d - Sigstore transparency entry: 1596035736
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15f6b1cfb02d53da7688d012c336d1320049ff89130dd6ec9e8dcba62a7683bc
|
|
| MD5 |
d75e26e0e20b91231e92649fcc28b774
|
|
| BLAKE2b-256 |
4084723aea3ed251b22fc63ce3d6c83baa632a8da7074d4d74bd2946aa07776a
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
15f6b1cfb02d53da7688d012c336d1320049ff89130dd6ec9e8dcba62a7683bc - Sigstore transparency entry: 1596034604
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80f00951936cda5eda06a025c409577a271d1a9d28c221ae5d5894855d2bfe16
|
|
| MD5 |
9c1ada56e36a822b39a69b4c8d5f0115
|
|
| BLAKE2b-256 |
c6708b20fb25be7f42ed359eef3679eab3c29d46edf5f0e5ab5bb32a5534fed1
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
80f00951936cda5eda06a025c409577a271d1a9d28c221ae5d5894855d2bfe16 - Sigstore transparency entry: 1596036039
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp310-cp310-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp310-cp310-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e39cb32a2e7a99fd019de3f493df2ce5d808ab5489ccee799f5eaa3b23abf26
|
|
| MD5 |
b426ccc8eabae11485a56a218aee5f9f
|
|
| BLAKE2b-256 |
f33a9789788403b4b9f35b3e79e4f0e70a29858d598287d687f8e84c0e442e37
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp310-cp310-manylinux_2_28_x86_64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp310-cp310-manylinux_2_28_x86_64.whl -
Subject digest:
9e39cb32a2e7a99fd019de3f493df2ce5d808ab5489ccee799f5eaa3b23abf26 - Sigstore transparency entry: 1596035825
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp310-cp310-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp310-cp310-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8aaef3ec4bfcda77235167688ebc26627c44059505fa01db03d3ff1abe7cf20b
|
|
| MD5 |
fb8711e4e5cdf360a6ad930248455e13
|
|
| BLAKE2b-256 |
5baea9cd48c1e36aaa67cd9285ee5619b1399cbd8a1cdcb6f401cfc2e70d4712
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp310-cp310-manylinux_2_28_aarch64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp310-cp310-manylinux_2_28_aarch64.whl -
Subject digest:
8aaef3ec4bfcda77235167688ebc26627c44059505fa01db03d3ff1abe7cf20b - Sigstore transparency entry: 1596034694
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
035fd56c61780ecb3cd41dd304af9f915db12246942a93b485fc00b4d6d42ce2
|
|
| MD5 |
db5f62fb962318f5ff0289b543dd4ee7
|
|
| BLAKE2b-256 |
0e27ac97d4187eac6c39290824f46c7211790933672de3870bf253a052a50bac
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
035fd56c61780ecb3cd41dd304af9f915db12246942a93b485fc00b4d6d42ce2 - Sigstore transparency entry: 1596035640
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aerospike_py-0.10.9-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: aerospike_py-0.10.9-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fcd2e36d85eaea3301e44ea2faf7a5b5e7721014e553d2840e24af0076c0cdb
|
|
| MD5 |
7124baa5d9e2f41ab391c828bfbfa3d5
|
|
| BLAKE2b-256 |
f5617e3f84640097f5f07a1c963fd9828256ce95f92cf66363cb640685f830a2
|
Provenance
The following attestation bundles were made for aerospike_py-0.10.9-cp310-cp310-macosx_10_12_x86_64.whl:
Publisher:
publish.yaml on aerospike-ce-ecosystem/aerospike-py
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aerospike_py-0.10.9-cp310-cp310-macosx_10_12_x86_64.whl -
Subject digest:
8fcd2e36d85eaea3301e44ea2faf7a5b5e7721014e553d2840e24af0076c0cdb - Sigstore transparency entry: 1596035570
- Sigstore integration time:
-
Permalink:
aerospike-ce-ecosystem/aerospike-py@82aaf61123539c353a056dbc1a9e59d477903c13 -
Branch / Tag:
refs/tags/v0.10.9 - Owner: https://github.com/aerospike-ce-ecosystem
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@82aaf61123539c353a056dbc1a9e59d477903c13 -
Trigger Event:
release
-
Statement type: