citadeldb
Local-first encrypted memory for AI agents. Raw conversation turns are stored as written, with no summarizer LLM in the ingest path, in a single encrypted file that lives inside your process.
Install
pip install citadeldb
The only runtime dependency is NumPy; embeddings are bring-your-own.
Memory
import citadeldb
db = citadeldb.connect("memory.cdl", key="your-passphrase", region_keys=True)
mem = db.memory()
mem.create_encrypted_region("chat", citadeldb.MockEmbedder(dim=64))
mem.remember("chat", {"kind": "fact", "text": "Alice's cat is named Mochi"})
berlin = mem.remember("chat", {"kind": "fact", "text": "Alice lives in Berlin"})
for hit in mem.recall("chat", text="where does Alice live?", k=2):
print(f"{hit.score:.3f} {hit.text}")
# 0.850 Alice lives in Berlin
# 0.200 Alice's cat is named Mochi
Recall fuses vector similarity, keyword match, recency, and importance. Nothing is summarized or rewritten on the way in, so a date or a number recalls exactly as it was said.
MockEmbedder needs no download and is enough to try the API. For real recall
quality use CandleEmbedder with a local e5-large.
Forgetting
Deleting a memory destroys the key its ciphertext was sealed with, so the bytes on disk stay unreadable rather than being marked deleted.
receipt = mem.forget("chat", [berlin])
print(receipt.cryptographic_erasure, receipt.algorithm)
# True AES-256-KW(RFC3394)
SQL and vector search
The same file is a full SQL database with JSON, full-text search, and filtered vector search.
db.execute("CREATE TABLE notes(id INTEGER PRIMARY KEY, body TEXT)")
db.execute("INSERT INTO notes VALUES (1, $1)", ["hello"])
print(db.query("SELECT body FROM notes").to_dicts()) # [{'body': 'hello'}]
MCP
pip install citadeldb-mcp exposes the memory engine to Claude Desktop, Cursor, and
any Model Context Protocol client.
Full documentation is at citadeldb.dev; source and the Rust API are in the main repository.
License
Apache-2.0
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 citadeldb-1.15.0.tar.gz.
File metadata
- Download URL: citadeldb-1.15.0.tar.gz
- Upload date:
- Size: 1.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ea6f465df88b95207ac5991d616f6013bb97c35151747e36b902f97cc8b7846
|
|
| MD5 |
58957127ffc110f66973a436f9032520
|
|
| BLAKE2b-256 |
b244af0481cff6ae43c2db201f8e58ddad614f4b43e1a129193053cf490bd1a5
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0.tar.gz:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0.tar.gz -
Subject digest:
1ea6f465df88b95207ac5991d616f6013bb97c35151747e36b902f97cc8b7846 - Sigstore transparency entry: 2408521906
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: citadeldb-1.15.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 7.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2f843e774b1f7b490eee919fb06f5c5f6e1042e5e081f97f1e1d3ec4c01c4eb
|
|
| MD5 |
f47416565d038b92ff94d79d7dff43c9
|
|
| BLAKE2b-256 |
3bbbb716f36eaa880233f7338efdb76efbf240a53b9caec4c6e6e5420ba01012
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
d2f843e774b1f7b490eee919fb06f5c5f6e1042e5e081f97f1e1d3ec4c01c4eb - Sigstore transparency entry: 2408531924
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: citadeldb-1.15.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 6.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
584b4aafadf3948e065354f12b96d2422584b7035ea3b5ff7623d0e34b7629b9
|
|
| MD5 |
06cd4fb75302ac942dca626d23cc2d85
|
|
| BLAKE2b-256 |
94e98f1b8126fc5772908a8270f42e4e3d0cb60d4f83a55a1871a65be92db9e7
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
584b4aafadf3948e065354f12b96d2422584b7035ea3b5ff7623d0e34b7629b9 - Sigstore transparency entry: 2408533320
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 7.0 MB
- Tags: CPython 3.15t, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbf234d5fd3a65f8c0175bc3cdf781851a013afc963cf62bda243b825ca50223
|
|
| MD5 |
c3d295cd0e1c87d8c6fc6a0be153f9da
|
|
| BLAKE2b-256 |
06ea20eb2e7689481be2e953f36b754732d346bcdebb23e988309983ca412ad1
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
bbf234d5fd3a65f8c0175bc3cdf781851a013afc963cf62bda243b825ca50223 - Sigstore transparency entry: 2408540093
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.15t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9cdaf77e492158a1c02ca3c5c551672545f4e88c6ac9d9f2e01e052c2524f640
|
|
| MD5 |
7167d26b96d6705e356ca6950aedc5ad
|
|
| BLAKE2b-256 |
6c1704357c7dee88ab1ad8e9cbb2478dbd3797a3fce15fb0859a537ad6c1b6dc
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
9cdaf77e492158a1c02ca3c5c551672545f4e88c6ac9d9f2e01e052c2524f640 - Sigstore transparency entry: 2408541182
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 7.0 MB
- Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d226253357de7d5a6a4f7494f77cfddae39cb4b2c24aed2696b41ea38c1e1210
|
|
| MD5 |
8f14d7c6f8bb6870c46f255559ac4622
|
|
| BLAKE2b-256 |
6106763349f9ce8fbc7afd37bdf1bbfd7cdf50386d9f539a5b206b6d33c2db6a
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
d226253357de7d5a6a4f7494f77cfddae39cb4b2c24aed2696b41ea38c1e1210 - Sigstore transparency entry: 2408529901
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.15, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
085ba98f28b9e2a7abbcb9da37cf3adee19cae5ea04ec6f425284094049ee0f7
|
|
| MD5 |
f3c8f316872a7076c71ef37d16f9b204
|
|
| BLAKE2b-256 |
e891216a859bb7631603183cd8e9ed7b164934afd50c7dde63cd0ac34fd62d94
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
085ba98f28b9e2a7abbcb9da37cf3adee19cae5ea04ec6f425284094049ee0f7 - Sigstore transparency entry: 2408531167
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 7.0 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77d7aa21a2b80d475e5742f6090516c02867577bd4706f14970bc2ef09f6a9da
|
|
| MD5 |
e5ba466661a4f3642ed29435b736f61b
|
|
| BLAKE2b-256 |
b3ee86e9d7a5fd04f1ee00e95714dd7bfc0ec8bd11001c85c7c34a0f8d539bd9
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
77d7aa21a2b80d475e5742f6090516c02867577bd4706f14970bc2ef09f6a9da - Sigstore transparency entry: 2408530483
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3abee8252643bb163488639a63fd979fc279bd31ac0c263aeeb58f75e96a1a2c
|
|
| MD5 |
f3ecc77fe6fe7202a0bc33c8ad8bc771
|
|
| BLAKE2b-256 |
dad8dac5422c7e04884867dea16ae345bef8277ce834c327279d3d8d16e4ba61
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
3abee8252643bb163488639a63fd979fc279bd31ac0c263aeeb58f75e96a1a2c - Sigstore transparency entry: 2408525481
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 7.4 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
749d6dd75218ddf239fe42a94e7c1ba01425399fdc663d75ca99688b489ea3d9
|
|
| MD5 |
96ffa0567aa28009e32dc8e0845441d6
|
|
| BLAKE2b-256 |
37a923e873b220541977698369545523ffb315d18f03e46e8a448b82b1251266
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp314-cp314-win_amd64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp314-cp314-win_amd64.whl -
Subject digest:
749d6dd75218ddf239fe42a94e7c1ba01425399fdc663d75ca99688b489ea3d9 - Sigstore transparency entry: 2408536322
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 7.0 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
323523d75d00bae4485f71d5c5bb1a5666a70c310d185a0d6bf72dcbc1670b71
|
|
| MD5 |
5384ecfff13d759721a5fac90dde9ace
|
|
| BLAKE2b-256 |
c21a422ffb61534769ad816b19a4e6fdc1cf8ace8c005134138e6f17600faa8c
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
323523d75d00bae4485f71d5c5bb1a5666a70c310d185a0d6bf72dcbc1670b71 - Sigstore transparency entry: 2408534983
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
440536afb568c76be6b2287a6934ee1315dc15a44da567d6f8d1a2ede8d7c5a9
|
|
| MD5 |
97eb79b8ce41f7c50a1d100d5465206a
|
|
| BLAKE2b-256 |
79cd5314f30f631f67ab4220da1c6400612156611374db3292017971b3014d85
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
440536afb568c76be6b2287a6934ee1315dc15a44da567d6f8d1a2ede8d7c5a9 - Sigstore transparency entry: 2408529087
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.3 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b18c8881160c13d21ce6d0990c1f536727d844c3b5ea8cf42d3d96c1fe089235
|
|
| MD5 |
a5efc19b3852be8a723a481cb7128f3c
|
|
| BLAKE2b-256 |
4c76594f4f07d87dea00098797693abde0c80bedde35930613b6e63b7c64a605
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
b18c8881160c13d21ce6d0990c1f536727d844c3b5ea8cf42d3d96c1fe089235 - Sigstore transparency entry: 2408548160
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 6.9 MB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e16ac042656b45fea81e43edea170a2a409f3e1ecf6858110991481671c4f2ab
|
|
| MD5 |
b8dd5522b846c93e1eecaae2c036e564
|
|
| BLAKE2b-256 |
56cbbb80d9ed76fc719ea0b61a7520315f33317bf922279f5b53705280bb4be8
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp314-cp314-macosx_10_12_x86_64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp314-cp314-macosx_10_12_x86_64.whl -
Subject digest:
e16ac042656b45fea81e43edea170a2a409f3e1ecf6858110991481671c4f2ab - Sigstore transparency entry: 2408535549
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 7.4 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
487111ca10245caa18d8f8d293785ad7daf22fbeae138988511e79da0dfbf99b
|
|
| MD5 |
273c87db77734a0eb351caec572d29e1
|
|
| BLAKE2b-256 |
607e98fbf88be75742c7387d8d2569022c37521786685150294b0099c717eeed
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp313-cp313-win_amd64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp313-cp313-win_amd64.whl -
Subject digest:
487111ca10245caa18d8f8d293785ad7daf22fbeae138988511e79da0dfbf99b - Sigstore transparency entry: 2408538513
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 7.0 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4dd1b04fd6798a5251642fcbab2d7be1a68b5d852723bade9ccd3b940069b5eb
|
|
| MD5 |
44be4a422cb92c4882b7ca3289801709
|
|
| BLAKE2b-256 |
9a397f9df23ed1a11f6a9ec2372bb92c7e36b4a1d137404b490b1109aa48c9c8
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
4dd1b04fd6798a5251642fcbab2d7be1a68b5d852723bade9ccd3b940069b5eb - Sigstore transparency entry: 2408544513
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c11e9c6ab532d9f79c46e8ed583f3819e9704907c6d4977aac4ef5506f7989a
|
|
| MD5 |
45d1d97f172c28e3f0d1cc4bb60bd385
|
|
| BLAKE2b-256 |
43858c27c6bd0673525e8c6c7292fbff533105ff57c7d10ccbbedc423e3e53fc
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
7c11e9c6ab532d9f79c46e8ed583f3819e9704907c6d4977aac4ef5506f7989a - Sigstore transparency entry: 2408528141
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.3 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db16aa802504d345a6566fff513040d57a6fbceea32f1f9dd86c757cdd158085
|
|
| MD5 |
e35f420fc4cc6a52365c3d32cf5d4b42
|
|
| BLAKE2b-256 |
387cd92ab443d7ff7c4693a9916ebbd3dcfb33b104b5b9dc6823ff85c6cc5aaa
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
db16aa802504d345a6566fff513040d57a6fbceea32f1f9dd86c757cdd158085 - Sigstore transparency entry: 2408537755
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 6.9 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
434a6e1fcfd69091b16243071ea5e6479f889d2c419174f31f52f33b68a6caff
|
|
| MD5 |
8d5a16ffc39e73ef691ac7853c304f46
|
|
| BLAKE2b-256 |
aedac7198d22411ac843a67ddc8e4f8328b724511f06eabf0239ab6e9266ac96
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
434a6e1fcfd69091b16243071ea5e6479f889d2c419174f31f52f33b68a6caff - Sigstore transparency entry: 2408526210
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 7.4 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
663a5364bb370834d1faa36a75029e5b5c48b46850ac91c6cb73aab64f849439
|
|
| MD5 |
55935f1cc8ed808607bf0e0d79e964b4
|
|
| BLAKE2b-256 |
0d68f38e356d9e42536426b927fe4a9190e7e8665c042c9a4e8474d52e6bd274
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp312-cp312-win_amd64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp312-cp312-win_amd64.whl -
Subject digest:
663a5364bb370834d1faa36a75029e5b5c48b46850ac91c6cb73aab64f849439 - Sigstore transparency entry: 2408534293
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 7.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e41b4773e711bcc627623089565e35016a47e13dd721ab50eea00974bed7ebda
|
|
| MD5 |
300c5f00e8ab3c93f6b2b60fd55ab124
|
|
| BLAKE2b-256 |
9f1af7312a78348a4c34ceb6432bd3cb5901765c94f415a67f33a13abff3b18f
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
e41b4773e711bcc627623089565e35016a47e13dd721ab50eea00974bed7ebda - Sigstore transparency entry: 2408524710
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6a706049fa377a4c34c39e64fc1b313e20d27fc879b63552d077383da65c93f
|
|
| MD5 |
f07cfc5fcace88bd5e5ca302d327dd67
|
|
| BLAKE2b-256 |
f576ae78d69aae98b2faff3340fed688b4bfe7e9f91e25ea43c323b124a934ff
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
b6a706049fa377a4c34c39e64fc1b313e20d27fc879b63552d077383da65c93f - Sigstore transparency entry: 2408523678
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.3 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59d8573d3939c429cc7ca728c85db497f91445073ff421c5ebe8baf8f1252a02
|
|
| MD5 |
51f2974b3b5ba3febaeb99d03cf78aad
|
|
| BLAKE2b-256 |
9999f2400e187ed0f433a34f108944fcbb13c6653b81cba3d7a1e8596a374c95
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
59d8573d3939c429cc7ca728c85db497f91445073ff421c5ebe8baf8f1252a02 - Sigstore transparency entry: 2408547568
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 6.9 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1760c70f745cce54d56ec0a51a3f87b119b76b5e2a197443f2b15038fd77744
|
|
| MD5 |
d43ca281db466c26f0a8ef5cccd1bd75
|
|
| BLAKE2b-256 |
77b938c8ef94a6b5c6b0e20cd52aba767c543d5758a47c4868a922092d168c78
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
e1760c70f745cce54d56ec0a51a3f87b119b76b5e2a197443f2b15038fd77744 - Sigstore transparency entry: 2408543268
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 7.4 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ce56d572bce0125dcaac21138f6f08a592ed320a2d1285d31ba12a7f36d44e3
|
|
| MD5 |
c8dfdabb1dc8c789b5ed60922df96e5b
|
|
| BLAKE2b-256 |
78996153893b8510a00c5ea7aba4ba7568d09b1b549421b2584a69fe9142a57e
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp311-cp311-win_amd64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp311-cp311-win_amd64.whl -
Subject digest:
5ce56d572bce0125dcaac21138f6f08a592ed320a2d1285d31ba12a7f36d44e3 - Sigstore transparency entry: 2408545301
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 7.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7cfe3794ddbed078f8e186f6443ba445be5d6fccf462782e41c6a5240ef0d68
|
|
| MD5 |
4bdd2b37933cd636916ad8839684114d
|
|
| BLAKE2b-256 |
9e6147d9dc3dbc6e1d4e0c3f7da1d2e3013272bd162ffd347c66de24347e3fa1
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
e7cfe3794ddbed078f8e186f6443ba445be5d6fccf462782e41c6a5240ef0d68 - Sigstore transparency entry: 2408522641
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9cad4f9811329ac5e8d727c9b48ff744a693f3b02863ed5e9638691bb9bc1210
|
|
| MD5 |
a499b4b67cb7c5852f93d4346cb2f166
|
|
| BLAKE2b-256 |
85948ccdbb19940c196ebc8737c6dad0b78b87e7a3362b0ab8d132a0b1ccff62
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
9cad4f9811329ac5e8d727c9b48ff744a693f3b02863ed5e9638691bb9bc1210 - Sigstore transparency entry: 2408543999
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.3 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fddb786a128b830c9cce55a28c954b108cee379a9e381d3490b713a1cb487ac
|
|
| MD5 |
9b863bf8762191818cce286547d3c81c
|
|
| BLAKE2b-256 |
b9e5ad26f1724f8d909f150cf79799c837a7604db240d584f2356db956052783
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
4fddb786a128b830c9cce55a28c954b108cee379a9e381d3490b713a1cb487ac - Sigstore transparency entry: 2408527035
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 6.9 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eeb4a8b155db487c0b3322a0e3e7963b52908b561a12bba92700b71f7a8f377c
|
|
| MD5 |
e5ec351e8238aa8a3a15c1119ed82e9e
|
|
| BLAKE2b-256 |
39ac1760a6dd2fbf002ef3d9c2ed0547d109582971d1267a755d8606ecaced61
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
eeb4a8b155db487c0b3322a0e3e7963b52908b561a12bba92700b71f7a8f377c - Sigstore transparency entry: 2408541759
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 7.4 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3a6347e2edb0309bdca855e957889292c16acf16e875e28e4f1c164d42b7bf2
|
|
| MD5 |
34f21179e24d084b5d6e8f27b15b1e52
|
|
| BLAKE2b-256 |
377e01508b43f0f48ee35cda2e975220eeb96135872d13ed5c5e81297ca75dc0
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp310-cp310-win_amd64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp310-cp310-win_amd64.whl -
Subject digest:
a3a6347e2edb0309bdca855e957889292c16acf16e875e28e4f1c164d42b7bf2 - Sigstore transparency entry: 2408532631
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 7.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
644a62f32b2287e8f83f8d461ce8d17cb0b0f66e32313b204c74131e5e420962
|
|
| MD5 |
3a9b2f9f8e8f54a3ff44506c008aba91
|
|
| BLAKE2b-256 |
8bad99bdddfb25f8edfb950b942a1011ad001d7d53418476c954e16e3896e64e
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
644a62f32b2287e8f83f8d461ce8d17cb0b0f66e32313b204c74131e5e420962 - Sigstore transparency entry: 2408546789
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b9c124b9abcfd5f6d3cbcbf72edf98869ca0f7b87ea677d5d317200d7229a71
|
|
| MD5 |
2558656a8062b3a54b037b54b7f300a6
|
|
| BLAKE2b-256 |
e82e41a46eec83aa7499823f5934f0da48f69e9e348036c0f5f51b2419f860dd
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
8b9c124b9abcfd5f6d3cbcbf72edf98869ca0f7b87ea677d5d317200d7229a71 - Sigstore transparency entry: 2408546014
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.3 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cec8dcb097db36430ffed62026c1090194fc19e5316d6280c38baaf0659da1b
|
|
| MD5 |
2487af9f0da7c8c9897f4f329843cc3e
|
|
| BLAKE2b-256 |
33c017b4a18425677141a043b297e842168a57d26a15d108ad828b3123ec7eb5
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
8cec8dcb097db36430ffed62026c1090194fc19e5316d6280c38baaf0659da1b - Sigstore transparency entry: 2408542654
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type:
File details
Details for the file citadeldb-1.15.0-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: citadeldb-1.15.0-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 6.9 MB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5933ebe2d1a605534569a69d63fa75e1f4411ad400c9b0b4ca6f4c0aceaeac51
|
|
| MD5 |
25dcf013c87fad431f9b0e2b4a459cac
|
|
| BLAKE2b-256 |
6cf67a7e444ad1be1c649ed1b22e1828fcb07ec5b611e5045039b5645d73092c
|
Provenance
The following attestation bundles were made for citadeldb-1.15.0-cp310-cp310-macosx_10_12_x86_64.whl:
Publisher:
release-python.yml on yp3y5akh0v/citadel
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
citadeldb-1.15.0-cp310-cp310-macosx_10_12_x86_64.whl -
Subject digest:
5933ebe2d1a605534569a69d63fa75e1f4411ad400c9b0b4ca6f4c0aceaeac51 - Sigstore transparency entry: 2408537022
- Sigstore integration time:
-
Permalink:
yp3y5akh0v/citadel@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/yp3y5akh0v
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-python.yml@cb558ba4bd02d5c45d66ac1d9913b2aebdb0862e -
Trigger Event:
push
-
Statement type: