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-2.0.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-2.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

citadeldb-2.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

citadeldb-2.0.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

citadeldb-2.0.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

citadeldb-2.0.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

citadeldb-2.0.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

citadeldb-2.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

citadeldb-2.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

citadeldb-2.0.0-cp314-cp314-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.14Windows x86-64

citadeldb-2.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

citadeldb-2.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

citadeldb-2.0.0-cp314-cp314-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

citadeldb-2.0.0-cp314-cp314-macosx_10_12_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

citadeldb-2.0.0-cp313-cp313-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.13Windows x86-64

citadeldb-2.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

citadeldb-2.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

citadeldb-2.0.0-cp313-cp313-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

citadeldb-2.0.0-cp313-cp313-macosx_10_12_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

citadeldb-2.0.0-cp312-cp312-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.12Windows x86-64

citadeldb-2.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

citadeldb-2.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

citadeldb-2.0.0-cp312-cp312-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

citadeldb-2.0.0-cp312-cp312-macosx_10_12_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

citadeldb-2.0.0-cp311-cp311-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.11Windows x86-64

citadeldb-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

citadeldb-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

citadeldb-2.0.0-cp311-cp311-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

citadeldb-2.0.0-cp311-cp311-macosx_10_12_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

citadeldb-2.0.0-cp310-cp310-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.10Windows x86-64

citadeldb-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

citadeldb-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

citadeldb-2.0.0-cp310-cp310-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

citadeldb-2.0.0-cp310-cp310-macosx_10_12_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file citadeldb-2.0.0.tar.gz.

File metadata

  • Download URL: citadeldb-2.0.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-2.0.0.tar.gz
Algorithm Hash digest
SHA256 b30692592c3d5cf089671942a16faf5540dc5ccd8a78b2221e7123f403f5aeac
MD5 a46d9a58a29895dda6dd4b45610042ce
BLAKE2b-256 fed39266a47a0d0d68756d41a865c949fb1f69d2469aa39ed8295132bd144c77

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4388e1b1ce3eecaef7d969163c08ce2194fd4bf83d2ce8b2d1c360f62c35dc4e
MD5 20ffa77f45199b35bffe77e43115f49f
BLAKE2b-256 15aec27d20fac63ba9a1caa8fdf417aedeb24a0d34b0cd256272bcae99ee96dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 797ed875558f7c7cf9ae1baaf8327dccb93f9ebd36688a5c40eaed5ae8998bcd
MD5 17e0bae19016403bdc9f04ca382ce7fc
BLAKE2b-256 6a9e45f1e0c0fe86c4c90bece04d766f7f52523d801f60a311e67041420db347

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f742f27a27ca1deacd3bcda347191ecf97270391a65ac99221f1e41a878eef19
MD5 1cd098c6c0914093cfaf0065cf2b0a5f
BLAKE2b-256 0895a545881f355df5b5951076ed15e702b53174334b996e5d897f32d855c3f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 336d9901da6749965889a84972ea9f4036c6ababd576015a207b33db30f25ab3
MD5 bddf1d0647fe0415d561ac00977dff62
BLAKE2b-256 efa48c029bfcdc7cb12ba0e65ee2f38d62b512b1e2f05647fd3152d466b889d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0e457eac512dfd5d20a182b9f2916c037098755b1fa9c9af8cbf72104d14402
MD5 45580903f0e060d2577e1e10e2987a37
BLAKE2b-256 99f954e7628c357c31851a472188893752f18b24806ad0595b39c18b24e0ae71

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3959a023a9b561f9a598ece25b938f46d31d5dfba5c2138a68fa4abb8bf6d0a
MD5 51348a790369818b1ec63a663c5d7293
BLAKE2b-256 5041350502deecc3ab4cf087c9b7f5e7495af12877b2ec96f91d6c5c3ea84ecc

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 214f00b37020635fe58e076d1c0d284eb2efae2949079933d008c521aa11a922
MD5 0ee5a607c33f70b8f2e87d6ab06ffc85
BLAKE2b-256 f114626cfb8f635afebe318501b2aa3874383ae3acc21890cb16f54b166909c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebc3528ef8fb38441c9d77f3f8b1bb6ab9408af8e9be4e7fd6a823107f7d73e1
MD5 7ec90069b11a8c692011848d84e4f6f1
BLAKE2b-256 86bf19786cee0c02cf27a4e8bd491aa6259a88d88a208c8382c8ae15e35f5b26

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: citadeldb-2.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 7.5 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-2.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1738b7cecfb8d6251ad86ea3b1d856a12b19265e271a1edfc3eedab9aaf9dfb6
MD5 69d2e0eec2bc00bedcc472c9e235fa30
BLAKE2b-256 dc6c8bb187db273f86db5457cfabe7c694072614881283f7e715eca09c14d5a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53977959b3598f08f87ccee77cbd57e83f70e3196f00920872c8ba76c0685aee
MD5 281db6eaafe03885f96f9de21d2ff262
BLAKE2b-256 d0a8b09bf3673f815a228927e29515f1c59353cfd5caf0800c385382d0a343f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e2d06a3044e5e2a781b3c586c6c613b8d915e36bff1594dc09ab2ce5791014d
MD5 6d6a8772ca99c9c0728603de1a894e37
BLAKE2b-256 d15a1b57271bd0346b1148f9adf529f07c9101c6b1741479ddb5355335f67db3

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db1a8320f2d8cfba9036f3b5492f85780d359a826575db4b8e6faccd191681e6
MD5 68ae71d228d90ed6c2f856eeaaf61e89
BLAKE2b-256 5ce285c450525299a4a7245cc914d70001ab66e68c71620280c9c32f759e2e67

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 024c7408e517a6e43c6cbbe94f89831b58e515c18741a1d409624fafff0e4433
MD5 79e5a56cf1d6d92fa00919ab1bbca048
BLAKE2b-256 260b477d7c1b2c62c3e67aa3a665c97e1ffa9c60dbf299671d93b84075e43a34

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: citadeldb-2.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 7.5 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-2.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9af257fe36487c1a21321d79a1945f73c31a33c6983e1841485e428c13593440
MD5 b2199940df8832b9cbe901cf151c62a7
BLAKE2b-256 08e2e0596da7273842832c1f56d6b1e851b0d1c2a59d906e481943cc68bb5775

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1b13d3cc53886d8eb3462054806038b1401a08646955a8b7aa7491ae89d78f1
MD5 7c8b8741c6067f3b15e407d0d0c8d25b
BLAKE2b-256 3eff8877e1c29e4e7fedc58a6cb4af3722a09042a19170dd8c8829e6d30ef044

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13d5a2170a97a43f6fb2c4d9525cc8ff9513c2998b0f4d9bcdfde6a15770b79e
MD5 5c50f43e05a52c9cfd0138e1addc69bf
BLAKE2b-256 10d9cae7061c53f42b5884ef0ef4ab07e81965b8f3a3ed968722d88c46702572

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1549dd65977901bae2992e751d18c55902a981c2e0bd321e7425cc951b6c6db9
MD5 def727d9d822b79e71f83d06708bb0c0
BLAKE2b-256 48983d1d778a05ff6b1fd027c0c704309236eefa2f9460ab5ac2472203389050

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6354161ae7d431bd0778f1b732704be9f8d080dea14040707309459efee36ac4
MD5 04d1b25f5f032b5732eabf3317726810
BLAKE2b-256 4002c9ef4bffc44326f215e265551401c6c5cf4bc661b0279bdcae6e68a1190a

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: citadeldb-2.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 7.5 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-2.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 197e52116300dad505cbb885ece3d7d495d4bc07c79aba348ff8ad81e9e7a82d
MD5 a677bc06178facc1a26fe9091e945a9d
BLAKE2b-256 b495f050474b471785714ea6de5f0c7993806b2489d7a1eee9e7f94e383964d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac3008af90d8f27a63776a2e98bf3a5a557fc69a92889d86f22004290bbc9fe5
MD5 97f9200034749499fa3f6ad7670cb62a
BLAKE2b-256 c67630ed5102008d74041acf580e62183f3825cf94881207d0cb77c728d8e948

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0fc9199a66a4277abe66efbc6026571a69d6166d01e201be919623c93617ff17
MD5 029cdc25df1f49294a1fabc705922573
BLAKE2b-256 8655b9d106657b3830861867b4eeb4325206c960e00126e2d1fb9a68bd7d92f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48847a55ef05572dd3cc9e3cb4ec3f8817fc843f4de0e07b05670590dff40542
MD5 f8616475391f5353555e944b466bf4ce
BLAKE2b-256 5ecd77053f197856675a75395932f34094ac9f51aa29bf415c49253886dc7d8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0ba086fa26b59b7a16655579ddba6b45885bc9ed82aabdfd6f632420e406b210
MD5 21d8e82dc1c09796e740a2c76752ae0b
BLAKE2b-256 a3cd7d18b52a5595117cdd5f16b8f386a244f9745af1674bb3a6fe3d3506f491

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: citadeldb-2.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 7.5 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-2.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7d4b0e777bdfccf7755cbd0674ae81679431639215185c3f7b477e8c6ac94aeb
MD5 ec4d2b7597d04ceb9d839fec22d2bd0a
BLAKE2b-256 7e5cc20e706d872a7adcf9d8dc080d86b7cd675a3b96ec59106db10c503b4eee

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a5c4fb2d207fc4df3f8f1fe6b710e9cc4cd89afa2317b55f73deb155e682a2c
MD5 f867a281a00fac5b8bdd8ae1cb7987e6
BLAKE2b-256 9f141fb89e57c0938b35c998cb96987deaf56bedc9c1c65a7b39931d40c28030

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38e7ebb9d1ef539dd438e7c52d8660cc6e7e582bb4591ca9cb9f2f21e2d4da65
MD5 e744f6141c1671cd7987778ab97ff4a4
BLAKE2b-256 34b788261f34f155f9ef59411fd8e94c5964f9ca0e980fa2d6ab2dca0138b84d

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b58ac2d893a4cc7eb2362e647037e53e3aa697366e866608327d6fe9dff1942
MD5 ad62dac13c907ff832c518bbebbc84ae
BLAKE2b-256 f3d919cd92845d788b37cef0208fbefda7b335ea26888e857e6d92521b2e0e27

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 46bdf4090f16960df9c62359a1fe84608f84c9d4a62710589b9a360dc17b84e3
MD5 24dd7433bb601edecb6c3d0c70a1897d
BLAKE2b-256 59e472bf602116ad31208d47b499e6687d4d54804a6b00c45ca22c45c9c70706

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: citadeldb-2.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 7.5 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-2.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 55dcdc5a19aa38656bbb9fc812ea93df27208c28d3bb7dbd4f68734e67afb946
MD5 70212a823cf2c464ddb8ebf06fe57884
BLAKE2b-256 f7f3880b4e6f18ea10b6233b3ceaa055892db9b5f8f29f7d525678c464b95160

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0733af176d722a7eef1b07aadb0a4848d3535087e56e84b72f41d61aa0dfa895
MD5 1dd04b9f67958b75251b82a7db298e73
BLAKE2b-256 45068078377b08f4c7099657c8d1fdfa15f69d58b2b95d57eb9336efad308554

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d1cad318c9efda6f38164db93fed086940380490224f7582f7c0452a0d9231b
MD5 ecb33c8219b30f558e4fb3d14fec1638
BLAKE2b-256 0e8e999ef2f56b9ddff405b43749d0a47241f92a4b2a0067d65f08d6e3bc3504

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6ca93db9d8f65f106d9941f2978fed7b29a7ba4797fa3a0f60b72cd301182e8
MD5 1fd83e016b483d85e721d9297cc742e9
BLAKE2b-256 b805d64c3b0404ee0df9511a39210785291e2c2f4dacd2f65e20db033aebbba2

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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-2.0.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for citadeldb-2.0.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fc568ec7e8e39edb73ef711bb322152a6c9e79f49923953c4b7fd271efd3f824
MD5 deea126982caedefaa361641ba2b5184
BLAKE2b-256 043e920d760b84f86bbd5d81ede01fed4b0d3f32f573cd9babe4f45001fc089a

See more details on using hashes here.

Provenance

The following attestation bundles were made for citadeldb-2.0.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

This release

2.0.0 This release

34 files

1.15.0

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