Skip to main content

SQLite-backed KV store (Rust+PyO3) with vector search, auto-packing, and efficient array storage

Project description

KohakuVault

Ask DeepWiki

One-file SQLite datastore with:

  • KVault key-value storage inspired by BoringDB (streaming blobs + auto-pack for dict/list/numpy)
  • TextVault full-text search with FTS5 BM25 ranking (ideal for RAG pipelines)
  • ColumnVault columnar layout inspired by Stanchion (typed chunks: i64, msgpack, vec:*) built on SQLite BLOB ranges
  • write-back caches plus standalone CSB+Tree / SkipList containers for ordered/temporal metadata
  • VectorKVault (sqlite-vec) for k-NN search living in the same .db
from kohakuvault import KVault, TextVault, ColumnVault, VectorKVault, CSBTree
import numpy as np

DB = "test.db"

# Store media + metadata in one file
kv = KVault(DB, table="media")
kv["video:42"] = b"abcdefg" # raw bytes stay raw
kv["video:42:meta"] = {"fps": 60, "tags": ["tutorial", "gpu"]}  # auto MessagePack

# Full-text search with BM25 ranking (great for RAG)
tv = TextVault(DB, table="docs")
tv.insert("Machine learning is a subset of AI", {"category": "tech"})
for doc_id, score, meta in tv.search("machine learning", k=5):
    print(f"Doc {doc_id}: score={score:.4f}")

# Incremental columnar logging (no file rewrites)
cols = ColumnVault(kv) # or ColumnVault(DB)
ids = cols.ensure("ids", "i64")
latency = cols.ensure("latency_ms", "f64")
embeddings = cols.ensure("embeddings", "vec:f32:384")
with cols.cache(cap_bytes=8 << 20):
    ids.append(len(ids))
    latency.append(12.3)
    embeddings.append(np.random.randn(384).astype(np.float32))

# Ordered metadata via embedded CSBTree
index = CSBTree()
index.insert(latency[-1], ids[-1])  # log-latency -> run-id

# Vector similarity search (sqlite-vec inside the same DB)
search = VectorKVault(DB, table="runs", dimensions=384, metric="cosine")
for idx, emb in enumerate(embeddings[:10]):
    search.insert(emb, str(idx).encode())
for rank, (rid, distance, run_id) in enumerate(search.search(embeddings[-1], k=3), 1):
    print(rank, distance, run_id.decode())

Why this exists

  • Single-file SWMR – SQLite WAL lets one writer and many readers share a file. Parquet can’t append, DuckDB locks the DB, Lance spawns version files.
  • Columnar layout, not SQL tablesColumnVault stores chunks in col_chunks/_idx, Stanchion-style, so incremental appends don’t rewrite tables.
  • Auto-packed KV everywhereKVault (BoringDB-inspired) automatically serializes dict/list/numpy values and keeps raw bytes untouched; every key-value interaction goes through this pipeline.
  • Write caches – Vault- and column-level caches batch inserts automatically.
  • Standalone CSB+Tree / SkipList – Specialized containers for ordered metadata or range queries without leaving the process.
  • Vector keys/searchvec:* dtypes store tensors, and VectorKVault (sqlite-vec) runs k-NN search inside the same DB.

If your workflow looks like “keep logging forever, but don’t spawn thousands of files”, KohakuVault is the tool.

Installation

pip install kohakuvault

For development (build the PyO3 extension, run tests):

pip install -e .[dev]

# everytime you change the rust code, you should run this command
maturin develop

Use cases / references

  • Media vaults – Random-access blobs + metadata (tests/test_kv_headers.py, examples/basic_usage.py).
  • RAG pipelines – Full-text BM25 search + vector similarity in the same DB (tests/test_text_vault.py).
  • Incremental ML logging – Fixed/var columns, vector dtypes, caches (tests/test_columnar.py, examples/columnar_demo.py).
  • Vector-heavy retrievalVectorKVault, CSBTree/SkipList, auto-packed metadata (tests/test_vector_kvault.py, examples/vector_search_numpy.py, examples/all_usage.py).

Performance notes

Benchmarks on an M1 Max (WAL on, cache enabled):

  • KVault streaming + cache: 24K writes/s, 63K reads/s (examples/benchmark.py).
  • ColumnVault extend (i64): 12.5M ops/s; slicing 100 elements hits 2.3M slices/s.
  • DataPacker vector unpack: 35× faster than Python loops for 768-dim tensors.

Documentation

Development workflow

pip install -e .[dev]
maturin develop

Formatting/linting/testing before PR:

black .
cargo fmt
cargo clippy
maturin develop --release
pytest
  • PyO3 module: src/kvault-rust (use maturin develop if you prefer).
  • Format Python with black.
  • Keep docs updated and linked via docs/README.md.

License

Apache 2.0. See LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kohakuvault-0.8.4.tar.gz (221.3 kB view details)

Uploaded Source

Built Distributions

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

kohakuvault-0.8.4-cp314-cp314-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.14Windows x86-64

kohakuvault-0.8.4-cp314-cp314-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

kohakuvault-0.8.4-cp314-cp314-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

kohakuvault-0.8.4-cp314-cp314-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

kohakuvault-0.8.4-cp313-cp313-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.13Windows x86-64

kohakuvault-0.8.4-cp313-cp313-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

kohakuvault-0.8.4-cp313-cp313-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

kohakuvault-0.8.4-cp313-cp313-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

kohakuvault-0.8.4-cp312-cp312-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.12Windows x86-64

kohakuvault-0.8.4-cp312-cp312-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

kohakuvault-0.8.4-cp312-cp312-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

kohakuvault-0.8.4-cp312-cp312-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

kohakuvault-0.8.4-cp311-cp311-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.11Windows x86-64

kohakuvault-0.8.4-cp311-cp311-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

kohakuvault-0.8.4-cp311-cp311-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

kohakuvault-0.8.4-cp311-cp311-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

kohakuvault-0.8.4-cp310-cp310-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.10Windows x86-64

kohakuvault-0.8.4-cp310-cp310-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

kohakuvault-0.8.4-cp310-cp310-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

kohakuvault-0.8.4-cp310-cp310-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file kohakuvault-0.8.4.tar.gz.

File metadata

  • Download URL: kohakuvault-0.8.4.tar.gz
  • Upload date:
  • Size: 221.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for kohakuvault-0.8.4.tar.gz
Algorithm Hash digest
SHA256 2a9cfd1768998af01b06cfb3a7231bf4351ac136d73010186e977f7656aea71d
MD5 12876f9f4a8d07e377d9fa63d2d650af
BLAKE2b-256 c6f33db571afb1818d9c0b5ffda35d5993922001e5fd66a5dec5c9890b7a8608

See more details on using hashes here.

Provenance

The following attestation bundles were made for kohakuvault-0.8.4.tar.gz:

Publisher: release.yml on KohakuBlueleaf/KohakuVault

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

File details

Details for the file kohakuvault-0.8.4-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for kohakuvault-0.8.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1bda930530d6597e1184b61eaea1ea49de348a4dc9876767ec1c84d301b7c189
MD5 d23be5f79e8a9bf065cd63d0e9c1856d
BLAKE2b-256 e732e12f1b3390e9b899355585a8184d915cd4aaa6010bad96d46bf7fb9b2ccf

See more details on using hashes here.

Provenance

The following attestation bundles were made for kohakuvault-0.8.4-cp314-cp314-win_amd64.whl:

Publisher: release.yml on KohakuBlueleaf/KohakuVault

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

File details

Details for the file kohakuvault-0.8.4-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for kohakuvault-0.8.4-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c15a304f5edf7a724482c12aca6548511885be38d242f0791f8752e590926e7
MD5 f289bffeca42f1307462a8934d07128b
BLAKE2b-256 d7e2c7f676e491acc2756ca7616096b1b26b3cd2b940edd6525f03791a68e2df

See more details on using hashes here.

Provenance

The following attestation bundles were made for kohakuvault-0.8.4-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: release.yml on KohakuBlueleaf/KohakuVault

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

File details

Details for the file kohakuvault-0.8.4-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for kohakuvault-0.8.4-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a22d44a0dfcfd6a594fcd061398bd8343c6695aaab1d7b554091032cd0782d80
MD5 1663d867c5f0c3e02f2e1ca7e6419f1b
BLAKE2b-256 afa73d19fa9afc2e580e1f10e68adf8c243f0c3b4b1d45dac85cbc1355af52ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for kohakuvault-0.8.4-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: release.yml on KohakuBlueleaf/KohakuVault

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

File details

Details for the file kohakuvault-0.8.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kohakuvault-0.8.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 652640444eb876eacd013164eefe5063416b697de15d846689eaabb74602b2f9
MD5 863df6b6d9258788e455479e5e84b252
BLAKE2b-256 54d1a06e97c5f9d218cbe2750f46cb997289343b3e62786a5309bd117704fb19

See more details on using hashes here.

Provenance

The following attestation bundles were made for kohakuvault-0.8.4-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on KohakuBlueleaf/KohakuVault

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

File details

Details for the file kohakuvault-0.8.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for kohakuvault-0.8.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 39ba75123bddd05c04820f1691d55854c93b874c9f4c02cc7b7236b012a600ef
MD5 4ec59e740d73ff8a950b05a315c06e94
BLAKE2b-256 d1fd48fcd4922d13450d87a1b8b83e93db14e78625469dba13183caeda862210

See more details on using hashes here.

Provenance

The following attestation bundles were made for kohakuvault-0.8.4-cp313-cp313-win_amd64.whl:

Publisher: release.yml on KohakuBlueleaf/KohakuVault

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

File details

Details for the file kohakuvault-0.8.4-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for kohakuvault-0.8.4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98005b8948ded4ebced6aa68e56135217a6bf9531a31da520981fb5718249d6c
MD5 4164246d5a9c90f407810a1d6fcd66fc
BLAKE2b-256 a23f887c6e9268140625dac2e9f876981b5198c9c0117f7067eb916d5e7d0ed6

See more details on using hashes here.

Provenance

The following attestation bundles were made for kohakuvault-0.8.4-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: release.yml on KohakuBlueleaf/KohakuVault

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

File details

Details for the file kohakuvault-0.8.4-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for kohakuvault-0.8.4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0d991fbcdeeec53acfbc9821414cc50cd34ff0988a3d826421c05e3e9affc6cc
MD5 5dcc5a082b566b9f78bae2be9d9ecd82
BLAKE2b-256 c660b6b107038b033cd179788e5faeb3829d36e34f09b190efc75e3e99bb4cfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for kohakuvault-0.8.4-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: release.yml on KohakuBlueleaf/KohakuVault

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

File details

Details for the file kohakuvault-0.8.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kohakuvault-0.8.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3472d0fc6dba5d42612a993ed308131c5cb78f2266746e7352a2616a5f34ff3
MD5 51711cfd12fe8cd0731b9fb645ae9a41
BLAKE2b-256 69d3946357c01e23722e027629d8651cac23d444caf575e008c05faea96046f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for kohakuvault-0.8.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on KohakuBlueleaf/KohakuVault

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

File details

Details for the file kohakuvault-0.8.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for kohakuvault-0.8.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bb84ad28c8365d4037154d29272c9ee4db51ba3005f1bdaa30f1dd81b9c5cbcb
MD5 8c8b6e1b32413735a386b877d2d15f71
BLAKE2b-256 239820a7d04b5e0950942eb87d65b53a042581f6a3fd13f032db9418a70eb142

See more details on using hashes here.

Provenance

The following attestation bundles were made for kohakuvault-0.8.4-cp312-cp312-win_amd64.whl:

Publisher: release.yml on KohakuBlueleaf/KohakuVault

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

File details

Details for the file kohakuvault-0.8.4-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for kohakuvault-0.8.4-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dee4ad17dded187393ea944f33189c9b21c8acb86fa7bad492be8e1faa147654
MD5 8e51ad7eaec958c4cfb9f33380c946c8
BLAKE2b-256 06decc03da61311a6bfa3706a1c3cc4826e23eba3861ef5b884aed6b171bf86b

See more details on using hashes here.

Provenance

The following attestation bundles were made for kohakuvault-0.8.4-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: release.yml on KohakuBlueleaf/KohakuVault

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

File details

Details for the file kohakuvault-0.8.4-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for kohakuvault-0.8.4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8fdd5fe1606278e7cfc2733534c0dbb4f65b41c99768bd48fa744d9450dfd86
MD5 e049bd711d68b0767f06cbdd4a002398
BLAKE2b-256 37b92f6da4c8351e85f1ee37c053c15b47f5739d177be40c36cc8fc8a543511c

See more details on using hashes here.

Provenance

The following attestation bundles were made for kohakuvault-0.8.4-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: release.yml on KohakuBlueleaf/KohakuVault

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

File details

Details for the file kohakuvault-0.8.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kohakuvault-0.8.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ed40b381f0c3ede42fa4141ca7d114f13af3c3f03a3e2b5e9675a56ecbb68a6
MD5 956786c04983dfa2a68c1465794b9226
BLAKE2b-256 b76977e306365118ae19a89c141e6752cc4018e5893ef54af36f6c64cc4d807c

See more details on using hashes here.

Provenance

The following attestation bundles were made for kohakuvault-0.8.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on KohakuBlueleaf/KohakuVault

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

File details

Details for the file kohakuvault-0.8.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for kohakuvault-0.8.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f9a753a7106d00ac060123878e95a314d86e74cf6a13fe34c6207eb09cc5118b
MD5 7f0c049c3be69172bdc413fdafb42457
BLAKE2b-256 99277d36c3f809e3aadf3c4ab5aec14470b9494835bae575765f9c7dd642fbfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for kohakuvault-0.8.4-cp311-cp311-win_amd64.whl:

Publisher: release.yml on KohakuBlueleaf/KohakuVault

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

File details

Details for the file kohakuvault-0.8.4-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for kohakuvault-0.8.4-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 39831e2c77960c4de2c81b42d20696b867d0e6d020664e9ffdbe7514acaf51da
MD5 959a17e740c54a1dcff06fe2ce16004f
BLAKE2b-256 c00b6fa3438143412e370ab39b58d29780d184d0198c077f8da3fa5da214e8c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for kohakuvault-0.8.4-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: release.yml on KohakuBlueleaf/KohakuVault

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

File details

Details for the file kohakuvault-0.8.4-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for kohakuvault-0.8.4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 88093edb3a64c04ea1ee99de719f6a35c6989f69a8bddc7623695648efe5c6b7
MD5 e5d9553d2d75792b0592be30d47f5b21
BLAKE2b-256 e577da90bb638f52bf6302a3ac91442c12ad0472999840ecf8f75254547bdb4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for kohakuvault-0.8.4-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: release.yml on KohakuBlueleaf/KohakuVault

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

File details

Details for the file kohakuvault-0.8.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kohakuvault-0.8.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5d7a63d03ba177d90fc1f58b0c110800bb2c12900f77f4dd373be17e200f4c0
MD5 8fd01571605272d08b6805afccd17fd6
BLAKE2b-256 345fbc780d22cb8742489fdedf330269683e52ccd6e4147e29d42c56489cee05

See more details on using hashes here.

Provenance

The following attestation bundles were made for kohakuvault-0.8.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on KohakuBlueleaf/KohakuVault

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

File details

Details for the file kohakuvault-0.8.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for kohakuvault-0.8.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2780d013d1d7c27810c9dfb9f9d89ddd5e67908595929e1cacbc21183b0b1fd3
MD5 a8551da94c2e8cc23e1d8fadd5f05879
BLAKE2b-256 5b1739e902cbdf9106e9cbf9c6083e86214d78b0e73949bba43a857546fe70d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for kohakuvault-0.8.4-cp310-cp310-win_amd64.whl:

Publisher: release.yml on KohakuBlueleaf/KohakuVault

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

File details

Details for the file kohakuvault-0.8.4-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for kohakuvault-0.8.4-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f568bf93cd6752ab86cea049ca6fa04d93bc597d905513db2921d395a3e35e72
MD5 54a0a03cd8711877f78214c91288a7cb
BLAKE2b-256 4b0ecd4474810b06966a41119b650178b5d569509388ac06d7f382d2172d662e

See more details on using hashes here.

Provenance

The following attestation bundles were made for kohakuvault-0.8.4-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: release.yml on KohakuBlueleaf/KohakuVault

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

File details

Details for the file kohakuvault-0.8.4-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for kohakuvault-0.8.4-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 19e31f664d735fe82058a1508f9fa30b4b6acd4b39379ac9aa3e9522d311f093
MD5 9217e1ab6d234274088f65876c81f1b8
BLAKE2b-256 f86b598196ebd5d0bb0589d3ad5e27b34fb1cbfce5131f7e9ffda4871ba217ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for kohakuvault-0.8.4-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: release.yml on KohakuBlueleaf/KohakuVault

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

File details

Details for the file kohakuvault-0.8.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kohakuvault-0.8.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 218572fdcda27e483f517d41844f5761e5b0b9eab0d0ca41b2271c9193eb03ac
MD5 cae09e8d5d9aa1d64c7fd00d2d2d573f
BLAKE2b-256 ca0b6b920f0fc92ce83d99051d8d7a651ccb2d8bc4a26433c3dbeb53da51540d

See more details on using hashes here.

Provenance

The following attestation bundles were made for kohakuvault-0.8.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on KohakuBlueleaf/KohakuVault

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

Supported by

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