Skip to main content

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

citadeldb-1.15.0.tar.gz (1.3 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

citadeldb-1.15.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

citadeldb-1.15.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

citadeldb-1.15.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

citadeldb-1.15.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

citadeldb-1.15.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

citadeldb-1.15.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

citadeldb-1.15.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

citadeldb-1.15.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

citadeldb-1.15.0-cp314-cp314-win_amd64.whl (7.4 MB view details)

Uploaded CPython 3.14Windows x86-64

citadeldb-1.15.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

citadeldb-1.15.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

citadeldb-1.15.0-cp314-cp314-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

citadeldb-1.15.0-cp314-cp314-macosx_10_12_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

citadeldb-1.15.0-cp313-cp313-win_amd64.whl (7.4 MB view details)

Uploaded CPython 3.13Windows x86-64

citadeldb-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

citadeldb-1.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

citadeldb-1.15.0-cp313-cp313-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

citadeldb-1.15.0-cp313-cp313-macosx_10_12_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

citadeldb-1.15.0-cp312-cp312-win_amd64.whl (7.4 MB view details)

Uploaded CPython 3.12Windows x86-64

citadeldb-1.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

citadeldb-1.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

citadeldb-1.15.0-cp312-cp312-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

citadeldb-1.15.0-cp312-cp312-macosx_10_12_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

citadeldb-1.15.0-cp311-cp311-win_amd64.whl (7.4 MB view details)

Uploaded CPython 3.11Windows x86-64

citadeldb-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

citadeldb-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

citadeldb-1.15.0-cp311-cp311-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

citadeldb-1.15.0-cp311-cp311-macosx_10_12_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

citadeldb-1.15.0-cp310-cp310-win_amd64.whl (7.4 MB view details)

Uploaded CPython 3.10Windows x86-64

citadeldb-1.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

citadeldb-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

citadeldb-1.15.0-cp310-cp310-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

citadeldb-1.15.0-cp310-cp310-macosx_10_12_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Hashes for citadeldb-1.15.0.tar.gz
Algorithm Hash digest
SHA256 1ea6f465df88b95207ac5991d616f6013bb97c35151747e36b902f97cc8b7846
MD5 58957127ffc110f66973a436f9032520
BLAKE2b-256 b244af0481cff6ae43c2db201f8e58ddad614f4b43e1a129193053cf490bd1a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-1.15.0.tar.gz:

Publisher: release-python.yml on yp3y5akh0v/citadel

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

File details

Details for the file citadeldb-1.15.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2f843e774b1f7b490eee919fb06f5c5f6e1042e5e081f97f1e1d3ec4c01c4eb
MD5 f47416565d038b92ff94d79d7dff43c9
BLAKE2b-256 3bbbb716f36eaa880233f7338efdb76efbf240a53b9caec4c6e6e5420ba01012

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 584b4aafadf3948e065354f12b96d2422584b7035ea3b5ff7623d0e34b7629b9
MD5 06cd4fb75302ac942dca626d23cc2d85
BLAKE2b-256 94e98f1b8126fc5772908a8270f42e4e3d0cb60d4f83a55a1871a65be92db9e7

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbf234d5fd3a65f8c0175bc3cdf781851a013afc963cf62bda243b825ca50223
MD5 c3d295cd0e1c87d8c6fc6a0be153f9da
BLAKE2b-256 06ea20eb2e7689481be2e953f36b754732d346bcdebb23e988309983ca412ad1

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9cdaf77e492158a1c02ca3c5c551672545f4e88c6ac9d9f2e01e052c2524f640
MD5 7167d26b96d6705e356ca6950aedc5ad
BLAKE2b-256 6c1704357c7dee88ab1ad8e9cbb2478dbd3797a3fce15fb0859a537ad6c1b6dc

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d226253357de7d5a6a4f7494f77cfddae39cb4b2c24aed2696b41ea38c1e1210
MD5 8f14d7c6f8bb6870c46f255559ac4622
BLAKE2b-256 6106763349f9ce8fbc7afd37bdf1bbfd7cdf50386d9f539a5b206b6d33c2db6a

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 085ba98f28b9e2a7abbcb9da37cf3adee19cae5ea04ec6f425284094049ee0f7
MD5 f3c8f316872a7076c71ef37d16f9b204
BLAKE2b-256 e891216a859bb7631603183cd8e9ed7b164934afd50c7dde63cd0ac34fd62d94

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77d7aa21a2b80d475e5742f6090516c02867577bd4706f14970bc2ef09f6a9da
MD5 e5ba466661a4f3642ed29435b736f61b
BLAKE2b-256 b3ee86e9d7a5fd04f1ee00e95714dd7bfc0ec8bd11001c85c7c34a0f8d539bd9

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3abee8252643bb163488639a63fd979fc279bd31ac0c263aeeb58f75e96a1a2c
MD5 f3ecc77fe6fe7202a0bc33c8ad8bc771
BLAKE2b-256 dad8dac5422c7e04884867dea16ae345bef8277ce834c327279d3d8d16e4ba61

See more details on using hashes here.

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

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

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

Hashes for citadeldb-1.15.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 749d6dd75218ddf239fe42a94e7c1ba01425399fdc663d75ca99688b489ea3d9
MD5 96ffa0567aa28009e32dc8e0845441d6
BLAKE2b-256 37a923e873b220541977698369545523ffb315d18f03e46e8a448b82b1251266

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-1.15.0-cp314-cp314-win_amd64.whl:

Publisher: release-python.yml on yp3y5akh0v/citadel

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

File details

Details for the file citadeldb-1.15.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 323523d75d00bae4485f71d5c5bb1a5666a70c310d185a0d6bf72dcbc1670b71
MD5 5384ecfff13d759721a5fac90dde9ace
BLAKE2b-256 c21a422ffb61534769ad816b19a4e6fdc1cf8ace8c005134138e6f17600faa8c

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 440536afb568c76be6b2287a6934ee1315dc15a44da567d6f8d1a2ede8d7c5a9
MD5 97eb79b8ce41f7c50a1d100d5465206a
BLAKE2b-256 79cd5314f30f631f67ab4220da1c6400612156611374db3292017971b3014d85

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b18c8881160c13d21ce6d0990c1f536727d844c3b5ea8cf42d3d96c1fe089235
MD5 a5efc19b3852be8a723a481cb7128f3c
BLAKE2b-256 4c76594f4f07d87dea00098797693abde0c80bedde35930613b6e63b7c64a605

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e16ac042656b45fea81e43edea170a2a409f3e1ecf6858110991481671c4f2ab
MD5 b8dd5522b846c93e1eecaae2c036e564
BLAKE2b-256 56cbbb80d9ed76fc719ea0b61a7520315f33317bf922279f5b53705280bb4be8

See more details on using hashes here.

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

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

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

Hashes for citadeldb-1.15.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 487111ca10245caa18d8f8d293785ad7daf22fbeae138988511e79da0dfbf99b
MD5 273c87db77734a0eb351caec572d29e1
BLAKE2b-256 607e98fbf88be75742c7387d8d2569022c37521786685150294b0099c717eeed

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-1.15.0-cp313-cp313-win_amd64.whl:

Publisher: release-python.yml on yp3y5akh0v/citadel

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

File details

Details for the file citadeldb-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4dd1b04fd6798a5251642fcbab2d7be1a68b5d852723bade9ccd3b940069b5eb
MD5 44be4a422cb92c4882b7ca3289801709
BLAKE2b-256 9a397f9df23ed1a11f6a9ec2372bb92c7e36b4a1d137404b490b1109aa48c9c8

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c11e9c6ab532d9f79c46e8ed583f3819e9704907c6d4977aac4ef5506f7989a
MD5 45d1d97f172c28e3f0d1cc4bb60bd385
BLAKE2b-256 43858c27c6bd0673525e8c6c7292fbff533105ff57c7d10ccbbedc423e3e53fc

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db16aa802504d345a6566fff513040d57a6fbceea32f1f9dd86c757cdd158085
MD5 e35f420fc4cc6a52365c3d32cf5d4b42
BLAKE2b-256 387cd92ab443d7ff7c4693a9916ebbd3dcfb33b104b5b9dc6823ff85c6cc5aaa

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 434a6e1fcfd69091b16243071ea5e6479f889d2c419174f31f52f33b68a6caff
MD5 8d5a16ffc39e73ef691ac7853c304f46
BLAKE2b-256 aedac7198d22411ac843a67ddc8e4f8328b724511f06eabf0239ab6e9266ac96

See more details on using hashes here.

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

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

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

Hashes for citadeldb-1.15.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 663a5364bb370834d1faa36a75029e5b5c48b46850ac91c6cb73aab64f849439
MD5 55935f1cc8ed808607bf0e0d79e964b4
BLAKE2b-256 0d68f38e356d9e42536426b927fe4a9190e7e8665c042c9a4e8474d52e6bd274

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-1.15.0-cp312-cp312-win_amd64.whl:

Publisher: release-python.yml on yp3y5akh0v/citadel

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

File details

Details for the file citadeldb-1.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e41b4773e711bcc627623089565e35016a47e13dd721ab50eea00974bed7ebda
MD5 300c5f00e8ab3c93f6b2b60fd55ab124
BLAKE2b-256 9f1af7312a78348a4c34ceb6432bd3cb5901765c94f415a67f33a13abff3b18f

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6a706049fa377a4c34c39e64fc1b313e20d27fc879b63552d077383da65c93f
MD5 f07cfc5fcace88bd5e5ca302d327dd67
BLAKE2b-256 f576ae78d69aae98b2faff3340fed688b4bfe7e9f91e25ea43c323b124a934ff

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59d8573d3939c429cc7ca728c85db497f91445073ff421c5ebe8baf8f1252a02
MD5 51f2974b3b5ba3febaeb99d03cf78aad
BLAKE2b-256 9999f2400e187ed0f433a34f108944fcbb13c6653b81cba3d7a1e8596a374c95

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e1760c70f745cce54d56ec0a51a3f87b119b76b5e2a197443f2b15038fd77744
MD5 d43ca281db466c26f0a8ef5cccd1bd75
BLAKE2b-256 77b938c8ef94a6b5c6b0e20cd52aba767c543d5758a47c4868a922092d168c78

See more details on using hashes here.

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

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

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

Hashes for citadeldb-1.15.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5ce56d572bce0125dcaac21138f6f08a592ed320a2d1285d31ba12a7f36d44e3
MD5 c8dfdabb1dc8c789b5ed60922df96e5b
BLAKE2b-256 78996153893b8510a00c5ea7aba4ba7568d09b1b549421b2584a69fe9142a57e

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-1.15.0-cp311-cp311-win_amd64.whl:

Publisher: release-python.yml on yp3y5akh0v/citadel

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

File details

Details for the file citadeldb-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7cfe3794ddbed078f8e186f6443ba445be5d6fccf462782e41c6a5240ef0d68
MD5 4bdd2b37933cd636916ad8839684114d
BLAKE2b-256 9e6147d9dc3dbc6e1d4e0c3f7da1d2e3013272bd162ffd347c66de24347e3fa1

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9cad4f9811329ac5e8d727c9b48ff744a693f3b02863ed5e9638691bb9bc1210
MD5 a499b4b67cb7c5852f93d4346cb2f166
BLAKE2b-256 85948ccdbb19940c196ebc8737c6dad0b78b87e7a3362b0ab8d132a0b1ccff62

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fddb786a128b830c9cce55a28c954b108cee379a9e381d3490b713a1cb487ac
MD5 9b863bf8762191818cce286547d3c81c
BLAKE2b-256 b9e5ad26f1724f8d909f150cf79799c837a7604db240d584f2356db956052783

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eeb4a8b155db487c0b3322a0e3e7963b52908b561a12bba92700b71f7a8f377c
MD5 e5ec351e8238aa8a3a15c1119ed82e9e
BLAKE2b-256 39ac1760a6dd2fbf002ef3d9c2ed0547d109582971d1267a755d8606ecaced61

See more details on using hashes here.

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

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

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

Hashes for citadeldb-1.15.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a3a6347e2edb0309bdca855e957889292c16acf16e875e28e4f1c164d42b7bf2
MD5 34f21179e24d084b5d6e8f27b15b1e52
BLAKE2b-256 377e01508b43f0f48ee35cda2e975220eeb96135872d13ed5c5e81297ca75dc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-1.15.0-cp310-cp310-win_amd64.whl:

Publisher: release-python.yml on yp3y5akh0v/citadel

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

File details

Details for the file citadeldb-1.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 644a62f32b2287e8f83f8d461ce8d17cb0b0f66e32313b204c74131e5e420962
MD5 3a9b2f9f8e8f54a3ff44506c008aba91
BLAKE2b-256 8bad99bdddfb25f8edfb950b942a1011ad001d7d53418476c954e16e3896e64e

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b9c124b9abcfd5f6d3cbcbf72edf98869ca0f7b87ea677d5d317200d7229a71
MD5 2558656a8062b3a54b037b54b7f300a6
BLAKE2b-256 e82e41a46eec83aa7499823f5934f0da48f69e9e348036c0f5f51b2419f860dd

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8cec8dcb097db36430ffed62026c1090194fc19e5316d6280c38baaf0659da1b
MD5 2487af9f0da7c8c9897f4f329843cc3e
BLAKE2b-256 33c017b4a18425677141a043b297e842168a57d26a15d108ad828b3123ec7eb5

See more details on using hashes here.

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

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

File details

Details for the file citadeldb-1.15.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-1.15.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5933ebe2d1a605534569a69d63fa75e1f4411ad400c9b0b4ca6f4c0aceaeac51
MD5 25dcf013c87fad431f9b0e2b4a459cac
BLAKE2b-256 6cf67a7e444ad1be1c649ed1b22e1828fcb07ec5b611e5045039b5645d73092c

See more details on using hashes here.

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

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

Release history Release notifications | RSS feed

2.5.0

34 files

2.4.0

34 files

2.3.0

34 files

2.2.0

34 files

2.1.0

34 files

2.0.0

34 files

This release

1.15.0 This release

34 files

1.14.0

34 files

1.13.0

34 files

1.12.0

34 files

1.11.0

34 files

1.10.0

34 files

1.9.0

34 files

1.8.0

34 files

1.7.0

34 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page