lexindex
Compact, immutable string↔id indexes for huge catalogs, with a Rust core and Python bindings.
Build once over a set of strings (entity names, document keys, vocabulary terms, cluster labels);
query many times. Pairs naturally with betula-cluster —
map string ids to cluster ids and back — but stands on its own.
Three complementary, build-once / query-many structures — pick by what you need to ask:
StringIndex— an ordered index backed by a finite-state transducer (fst). Exactstring → idandid → string, plus prefix, range, predecessor / successor (nearest key ≤ / ≥ a query), fuzzy (bounded Levenshtein edit distance), subsequence, and lazy full iteration — all driven by automata over the FST, with no separate key list to scan (exact/prefix/range seek directly; a broad fuzzy or subsequence pattern may still traverse most of the automaton) — in a compressed, serialisable, memory-mappable form. The only structure here that answers ordered and typo-tolerant queries. Use it for autocomplete, fuzzy search, browse, and ordered scans of a large catalog.CompactHashIndex— the smalleststring → dense idmap: a minimal perfect hash (ptr_hash) plus a small fingerprint per key, storing no keys at all. 1.27 bytes/key on real dictionary words — 2.3× smaller thanmarisa-trie, down to 0.77 bytes/key at a 4-bit fingerprint (fingerprint_bits=4, 6.25% false-positive rate) — below every trie benchmarked (see Benchmarks) — at the cost of probabilistic membership (a tunable2^-bitsfalse-positive rate) and no reverse lookup. Use it when a fixed vocabulary's footprint is paramount and rare false positives are acceptable.PerfectHashIndex— a minimal-perfect-hash dictionary with verified membership (id) and reverse lookup (key); the arena stores full keys, so it is exact but larger. For a known-closed vocabulary,id_uncheckedskips the membership comparison and is faster thanstd::HashMap. Use it as a fixed-vocabulary token↔id map on a hot path when you need exact membership andid → key.
All three assign dense ids in [0, n) and serialise to a flat blob (save / load, or zero-copy
load_mmap) — build once, persist, then reload and query many times. All are immutable after building.
The mph feature (on by default) provides the two hash indexes; --no-default-features is fst-only.
Python
pip install lexindex
from lexindex import CompactHashIndex, PerfectHashIndex, StringIndex
idx = StringIndex(["apple", "apricot", "banana", "cherry"])
idx.id("banana") # 2 (sorted rank)
idx.key(0) # "apple" — reconstructed from the FST, no stored reverse map
idx.prefix("ap") # [("apple", 0), ("apricot", 1)]
idx.fuzzy("aple", 1) # [("apple", 0)] — typo-tolerant
idx.successor("ba") # ("banana", 2) — nearest key >= query
idx.predecessor("ba") # ("apricot", 1) — nearest key <= query
list(idx) # [("apple", 0), ...] — lazy iteration in sorted order
idx.ids_of(["apple", "x"]) # [0, None] — batched: one FFI call, not one per key
idx.save("catalog.bix") # persist; StringIndex.load("catalog.bix") reloads it
c = CompactHashIndex(["GET", "POST", "PUT", "DELETE"]) # smallest string->id (~1.3 B/key at scale;
# fingerprint_bits=4 halves that to ~0.8 at a 6.25% false-positive rate)
c.id("POST") # dense id in [0, n); probabilistic membership, no id->key
c.id_unchecked("POST") # fastest lookup for a known-closed vocabulary
d = PerfectHashIndex(["GET", "POST", "PUT", "DELETE"])
d.id("POST") # dense id in [0, n); membership verified, returns None if absent
d.key(d.id("POST")) # "POST" — exact reverse lookup (keys stored)
No runtime dependencies; a single abi3 wheel covers CPython 3.11+. See
examples/quickstart.py for all
three indexes end to end, and the documentation site.
Pairs with betula-cluster
lexindex owns the string id ↔ dense id mapping; betula-cluster
clusters the numeric rows. Use the lexindex dense id as the embedding-matrix row index and you can go
both ways — string id → cluster and cluster → string ids:
idx = PerfectHashIndex(doc_ids) # string id <-> dense [0, n) id
matrix[idx.id(doc_id)] = embedding[doc_id] # row index == lexindex id
labels = betula_cluster.fit_predict(matrix, n_clusters=k)
cluster = labels[idx.id("doc-00042")] # string id -> cluster
members = [idx.key(int(r)) for r in (labels == cluster).nonzero()[0]] # cluster -> string ids
Runnable: examples/bridge_clustering.py.
Rust
[dependencies]
lexindex = "0.8"
# fst-only (drop the ptr_hash dependency):
# lexindex = { version = "0.8", default-features = false }
Usage
use lexindex::StringIndex;
let idx = StringIndex::build(["apple", "apricot", "banana", "cherry"])?;
assert_eq!(idx.id("banana"), Some(2)); // string → id (sorted rank)
assert_eq!(idx.key(0).as_deref(), Some("apple")); // id → string
assert!(idx.contains("cherry"));
// prefix / range iteration, lexicographically ordered
let fruit: Vec<_> = idx.prefix("ap").into_iter().map(|(k, _)| k).collect();
assert_eq!(fruit, ["apple", "apricot"]);
// typo-tolerant fuzzy lookup (Levenshtein edit distance ≤ 1) and subsequence match
let near: Vec<_> = idx.fuzzy("aple", 1)?.into_iter().map(|(k, _)| k).collect();
assert_eq!(near, ["apple"]);
let sub: Vec<_> = idx.subsequence("ap").into_iter().map(|(k, _)| k).collect();
assert_eq!(sub, ["apple", "apricot"]);
// serialise to a flat blob, then reload — or `load_mmap` to borrow it zero-copy from the file
idx.save("catalog.bix")?;
let idx = StringIndex::load_mmap("catalog.bix")?; // no read into RAM; pages shared across processes
# Ok::<(), lexindex::IndexError>(())
use lexindex::PerfectHashIndex; // requires the default `mph` feature
let dict = PerfectHashIndex::build(["GET", "POST", "PUT", "DELETE"])?;
let id = dict.id("POST").unwrap(); // fastest exact lookup, dense id in [0, n)
assert_eq!(dict.key(id), Some("POST"));
assert_eq!(dict.id("PATCH"), None); // membership is verified, not just hashed
// persist the MPH and reload it (the dense ids are preserved across save/load)
dict.save("verbs.bmp")?;
let dict = PerfectHashIndex::load("verbs.bmp")?;
assert_eq!(dict.id("POST"), Some(id));
# Ok::<(), lexindex::IndexError>(())
use lexindex::CompactHashIndex; // requires the default `mph` feature
// The smallest string->id map: an 8-bit fingerprint/key ⇒ ~1.3 B/key, ~0.4% membership
// false-positive (build_bits(keys, 4) ⇒ ~0.8 B/key at 6.25%).
let dict = CompactHashIndex::build(["GET", "POST", "PUT", "DELETE"], 1)?;
let id = dict.id("POST").unwrap(); // Some(slot); a non-member may rarely read as present
assert!(dict.contains("GET"));
let raw = dict.id_unchecked("POST"); // no fingerprint check — for a known-closed vocabulary
assert_eq!(raw, id);
// no key(id): CompactHashIndex stores no keys. Use PerfectHashIndex when you need id → string.
# Ok::<(), lexindex::IndexError>(())
Design notes
StringIndexis the FST alone —id → keyis reconstructed by a rank-walk, with no stored reverse map. Ids are the sorted rank of each key, which is exactly the FST's output value, sokey(id)walks the automaton from the root, at each node taking the last transition whose accumulated output stays≤ id, and returns the path once the outputs sum to exactlyid. That isO(key length)and needs no auxiliary structure, so the serialised blob is just[magic "BIX4"][fst]— half the size of the 0.2.0 front-coded layout on real words (12.6 → 5.95 B/key) and simpler to reason about.from_bytes/loadvalidate the magic and verify the FST's stored checksum, so a truncated or corrupted owned blob is rejected at load rather than queried;load_mmapskips thatO(n)scan to keep mapping constant-time, so a mapped file is trusted to be intact.- Perfect-hash ids are not reproducible across builds.
ptr_hash's construction is randomised, so building the same key set twice assigns different slots — measured on 50 k keys, only ~53 % of them keep their id. Ids are stable acrosssave/loadof one built index, so persist the blob, not the key list, whenever an id is written down anywhere else.StringIndexids are the sorted rank and are reproducible by construction. CompactHashIndexstores no keys — only a minimal perfect hash and one small fingerprint per slot.id(key)hashes the key to a slot (the MPH), then compares the key's independentb-bit fingerprint against the stored one; a match is a hit. Because the two hashes are independent, a non-member survives both only with probability2^-b, the tunable false-positive rate (fingerprint_bits∈ 1..=64, bit-packed). Dropping the key arena is what takes it belowmarisa-trie; the price is that membership is probabilistic and there is noid → key. The blob is[magic "BCH5"][n][fp_bits][overflow_cap][mph_len][side_len][payload][check][mph][bit-packed fingerprints][side]— the payload hash is verified on owned loads, so a corrupted blob fails cleanly. Its build streams: only a 16-byte(hash, second hash)pair is kept per key, never the strings. 0.7 blobs (BCH3) still load, as does a collision-free 0.8.0BCH4(bit-identical); aBCH4holding a side table is refused — its side fingerprints were truncated — with a message naming the rebuild. 0.5/0.6 blobs (BCH1/BCH2) are refused: they predate the recorded remap bound and store no keys to recompute it from, so loading one would reinstate an out-of-bounds read — rebuild instead.PerfectHashIndexkeys the MPH on a deterministic 64-bit hash of each string (so queries take&strwithout allocating), then verifies the hit against the stored key — an MPH returns a slot for any input, so verification is what turns it into a real membership test, and the stored keys give exactid → key. Two distinct keys colliding in the 64-bit hash cannot fail the build: the MPH is built over one representative per distinct hash value and the colliding leftovers are served — still exactly — from a tiny side table consulted only after the stored-key comparison has missed, so the hot path pays nothing. The expected number of colliding pairs isn(n-1)/2^65≈ 2.7×10⁻⁸ at 1 M keys, 2.7×10⁻⁴ at 100 M — the table is almost always empty. The hash is version-stable (FNV-1a- a splitmix64 finalizer, not
std'sDefaultHasher), so asaved MPH (theptr_hashstructure serialised viaepserde, alongside the arena) reloads and queries identically on any build — the precondition for persistence.CompactHashIndexshares the same version-stable slot hash plus a second independent one for the fingerprint, and resolves hash collisions the same way — its side table keeps the second hash at its full 64 bits whateverfingerprint_bitsis set to, so only a pair colliding in both 64-bit hashes at once (≈ 2^-128per pair) would merge.
- a splitmix64 finalizer, not
- Zero-copy
load_mmap(the defaultmmapfeature,memmap2) memory-maps a saved blob and borrows the index directly from the mapped pages — no read into RAM, so a multi-gigabyte index is ready instantly and the OS shares its pages across processes.StringIndexmaps the whole FST;CompactHashIndexmaps its fingerprint table;PerfectHashIndexmaps the key arena (the bulk) and reads only the tiny MPH into memory. Every read is byte-wise, so there is no alignment gotcha; the one caveat is the usual mmap contract — the file must not be mutated while an index borrows it. mphis opt-in-by-default: with--no-default-featuresthe crate depends only onfst(and keepsStringIndex). Enablingmphpullsptr_hashand its dependency tree, which currently carries a few informational RustSec advisories (unmaintained / unsound) on transitive crates —cargo auditreports them as warnings, not vulnerabilities. Thefst-only build is free of them.
Benchmarks
Serialised size on real English words
python bench/compare.py on /usr/share/dict/words (479 823 words, 9.3 B/key raw). Keys are a real
vocabulary, never a synthetic entity-{i} sequence — sequential keys collapse the FST to a
near-regular automaton and report a misleading ~0 B/key, so the benchmark refuses them. Smaller is
better; the capability columns are why you would still pick a larger one.
| library | prefix | range | fuzzy | reverse id→str | exact membership | zero-copy mmap | bytes/key |
|---|---|---|---|---|---|---|---|
lexindex CompactHashIndex (fp=4 bits) |
— | — | — | — | probabilistic | ✅ | 0.77 |
lexindex CompactHashIndex (fp=1) |
— | — | — | — | probabilistic | ✅ | 1.27 |
lexindex CompactHashIndex (fp=2) |
— | — | — | — | probabilistic | ✅ | 2.27 |
marisa-trie |
✅ | — | — | ✅ | ✅ | ✅ | 2.98 |
lexindex StringIndex |
✅ | ✅ | ✅ | ✅ | ✅ | ✅ | 5.95 |
lexindex PerfectHashIndex |
— | — | — | ✅ | ✅ | ✅ | 13.60 |
DAWG (dawg2) |
✅ | — | — | — | ✅ | — | 23.96 |
datrie |
✅ | — | — | — | ✅ | — | 30.69 |
Two honest crowns, both scoped to what is measured above — libraries a Python or Rust project can
actually install. Research-grade C++ (CoCo-trie, XCDAT, PDT, SuRF) has no bindings to benchmark and
is not claimed against. CompactHashIndex is the smallest string → dense id map here — 2.3×
below marisa-trie at the default 8-bit fingerprint, 3.9× at 4 bits — when you can accept a bounded
false-positive rate (2^-fingerprint_bits by construction — the fingerprint hash is independent of
the slot hash — measured 6.2530 % at 4 bits and 1.5553 % at 6 over 2 M non-member probes,
z = +0.18 / −0.83 against theory; ≈0.4 % at 8 bits, ≈0.0015 % at 16) and don't need
id → key. It is not a security primitive: both hashes are deterministic and unseeded, so an
adversary who chooses the queries can find false positives at will. It stays below
marisa's 2.98 B/key at every width up to 21 bits — the width guide tables the
trade-off. StringIndex is the only
structure that answers fuzzy and range queries at all, at 4× below a plain DAWG. marisa-trie
remains the pick when you need exact membership and ordering and the smallest such index —
lexindex doesn't claim that particular cell (see below for why).
Against other Rust string indexes
marisa-trie is C++. Among ordered string indexes you can cargo add, none is smaller than
StringIndex — the double-array tries trade space for lookup speed, and no succinct LOUDS trie
(marisa / XCDAT / CoCo-trie-style) exists in Rust to depend on. So StringIndex at 5.95 B/key is the
smallest ordered string → id index available in pure Rust — second only to a C++ library, and the
only one of them that does fuzzy and range. Same real words:
| Rust structure | bytes/key | vs marisa |
|---|---|---|
marisa-trie (C++, reference) |
2.98 | 1.0× |
lexindex StringIndex (ordered + fuzzy + reverse) |
5.95 | 2.0× |
fst::Set (membership only — no ids, no reverse) |
4.85 | 1.6× |
yada (double-array) |
15.98 | 5.4× |
crawdad::MpTrie (minimal-prefix) |
19.63 | 6.6× |
crawdad::Trie (double-array) |
26.22 | 8.8× |
Measured with crawdad 0.4, yada 0.5, fst 0.4 over the same word list; size = serialised bytes
(serialize_to_vec().len()) ÷ key count. Not lexindex dependencies — reproduce in a throwaway crate.
Reaching marisa's 2.98 needs its recursive succinct-trie label nesting, which the byte-oriented fst
automaton is ~1.6× away from by construction (even a bare fst::Set, which stores no ids at all, is
4.85) — so beating it on the ordered index means reimplementing marisa from scratch, not a bounded
tweak. CompactHashIndex takes the size crown the other way: by dropping the keys entirely.
Point-lookup latency vs the standard library
cargo run --release --example bench — 1 M real dictionary-word bigrams (word_i.word_j, the
same key generator as bench/scale.py; mean key 10.9 bytes). Keys are never synthetic
entity-000…N sequences — those arrive pre-sorted and hash-degenerate and flatter every number.
Measured on the 0.8.0 code in one session (min of 12 runs, idle machine). Absolute numbers are
machine-dependent; the ratios are the point.
| structure | build | lookup | note |
|---|---|---|---|
lexindex CompactHashIndex::id (fp=1) |
~119 ms | ~244 ns | fingerprint-verified, 2^-8 false-positive rate |
lexindex PerfectHashIndex::id_unchecked |
~324 ms | ~178 ns | closed vocabulary, no membership check |
std::HashMap<String, u32> |
~234 ms | ~303 ns | in-RAM, not serialisable |
lexindex PerfectHashIndex::id (verified) |
~327 ms | ~311 ns | one extra cache line + full key compare |
lexindex StringIndex (FST) |
~269 ms | ~409 ns | and prefix / range / fuzzy |
std::BTreeMap<String, u32> |
~223 ms | ~960 ns | in-RAM |
Run-to-run lookup spread stayed under 7% on every cell except PerfectHashIndex::id (16% —
it is the most cache-sensitive path; its same-session A/B against the 0.7 binary showed the 0.8
side-table branch costs ~3% there, while id_unchecked measured 8% faster and
CompactHashIndex::id was unchanged). CompactHashIndex's build halved in 0.8: its streaming
build sorts 16-byte (hash, fingerprint) pairs instead of strings, which also puts it 2× below
HashMap's build. Real keys move lookups in lexindex's favour versus synthetic ones (byte-wise
FNV vs HashMap's SipHash), while every build reads higher because real input is not pre-sorted
and sorting is part of the build.
Honest reading: for a fixed / closed vocabulary, PerfectHashIndex::id_unchecked is the
fastest — ≈1.7× quicker than HashMap (no probing, no membership comparison) and compact +
serialisable. CompactHashIndex::id keeps a probabilistic membership check and still beats
HashMap on lookup — and now builds ~2× faster than it. Full verification (id) pays one extra
cache line + a key comparison; StringIndex trades more latency for ordered / prefix / range /
fuzzy queries the hash maps cannot answer at all. So: CompactHashIndex when footprint dominates
and a rare false positive is fine; PerfectHashIndex::id for exact membership + reverse;
StringIndex when order or fuzzy/prefix matters; HashMap when you just need a general in-RAM map
with nothing persisted.
Scaling to millions of keys
python bench/scale.py on real high-entropy keys (dictionary-word bigrams). Build time and memory grow
linearly, lookups stay sub-microsecond, and CompactHashIndex's 1.27 bytes/key holds constant as
n grows:
| n | structure | build | bytes/key | peak RSS | lookup |
|---|---|---|---|---|---|
| 1 M | StringIndex |
0.33 s | 0.68* | 126 MB | 280 ns |
| 1 M | CompactHashIndex |
0.34 s | 1.27 | 161 MB | 209 ns |
| 10 M | StringIndex |
5.1 s | 2.00* | 1.08 GB | 873 ns |
| 10 M | CompactHashIndex |
5.1 s | 1.27 | 1.35 GB | 372 ns |
* bigram keys share far more prefixes than single words — at 1 M the generator draws on only
1 000 distinct words, which is why StringIndex compresses to an unrepresentative 0.68 B/key there;
the honest single-word figure is in the size table above. The whole table is one measurement session
on the 0.5.1 code (min of 3 runs per cell). Peak RSS includes the input key list, which dominates at
this scale and is why the column falls by 8-17% rather than by the 47-73% the build itself dropped
in 0.5.0. Linear extrapolation puts 100 M at ~50 s and ~13.5 GB (a big-memory box). Hash collisions
do not change the picture at any n: since 0.8 both perfect-hash indexes absorb them into a side
table instead of failing the build, and the fst build has no collision failure mode at all.
License
MIT © Ilia Gradina
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 lexindex-0.8.1.tar.gz.
File metadata
- Download URL: lexindex-0.8.1.tar.gz
- Upload date:
- Size: 132.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94ea6b85b600dd29fc22bbf2ae2dcb56b715b42d87b45f931723fbc1f5d2f0de
|
|
| MD5 |
c91e5b4bbbb9c55a78ef250dc7f89015
|
|
| BLAKE2b-256 |
2036a992af40c5f98b3350c2355d694687c1c41136c418d481dd5cda6bc423e6
|
Provenance
The following attestation bundles were made for lexindex-0.8.1.tar.gz:
Publisher:
release.yml on ilgrad/lexindex
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lexindex-0.8.1.tar.gz -
Subject digest:
94ea6b85b600dd29fc22bbf2ae2dcb56b715b42d87b45f931723fbc1f5d2f0de - Sigstore transparency entry: 2618619189
- Sigstore integration time:
-
Permalink:
ilgrad/lexindex@3ef59e5c769547efe28658c387bccc88fe945bfe -
Branch / Tag:
refs/tags/v0.8.1 - Owner: https://github.com/ilgrad
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3ef59e5c769547efe28658c387bccc88fe945bfe -
Trigger Event:
push
-
Statement type:
File details
Details for the file lexindex-0.8.1-cp311-abi3-win_amd64.whl.
File metadata
- Download URL: lexindex-0.8.1-cp311-abi3-win_amd64.whl
- Upload date:
- Size: 483.1 kB
- 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 |
3a57e263973c042dac2ee514f3eddb25e839e776ff8520eecfcd7a5ebaa6c9ca
|
|
| MD5 |
1d1523269db4afe300e8f154ba9d3e58
|
|
| BLAKE2b-256 |
8c2cd0a6ecad469ffe56df6a1489a891d4c01934726d597a244b729fbd7d1e56
|
Provenance
The following attestation bundles were made for lexindex-0.8.1-cp311-abi3-win_amd64.whl:
Publisher:
release.yml on ilgrad/lexindex
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lexindex-0.8.1-cp311-abi3-win_amd64.whl -
Subject digest:
3a57e263973c042dac2ee514f3eddb25e839e776ff8520eecfcd7a5ebaa6c9ca - Sigstore transparency entry: 2618619460
- Sigstore integration time:
-
Permalink:
ilgrad/lexindex@3ef59e5c769547efe28658c387bccc88fe945bfe -
Branch / Tag:
refs/tags/v0.8.1 - Owner: https://github.com/ilgrad
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3ef59e5c769547efe28658c387bccc88fe945bfe -
Trigger Event:
push
-
Statement type:
File details
Details for the file lexindex-0.8.1-cp311-abi3-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: lexindex-0.8.1-cp311-abi3-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 815.4 kB
- Tags: CPython 3.11+, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69cc9536ee22e49defa3045415a122af1f2f8629f6bc532e05526f191bd4a1a7
|
|
| MD5 |
12cb5bf3c6274756e55712d11f3e6b3e
|
|
| BLAKE2b-256 |
ff8d162f9fc9ea0ec0d0b00df134e1052597a7435fd6a16b8e81ef4325543e57
|
Provenance
The following attestation bundles were made for lexindex-0.8.1-cp311-abi3-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on ilgrad/lexindex
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lexindex-0.8.1-cp311-abi3-musllinux_1_2_x86_64.whl -
Subject digest:
69cc9536ee22e49defa3045415a122af1f2f8629f6bc532e05526f191bd4a1a7 - Sigstore transparency entry: 2618619227
- Sigstore integration time:
-
Permalink:
ilgrad/lexindex@3ef59e5c769547efe28658c387bccc88fe945bfe -
Branch / Tag:
refs/tags/v0.8.1 - Owner: https://github.com/ilgrad
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3ef59e5c769547efe28658c387bccc88fe945bfe -
Trigger Event:
push
-
Statement type:
File details
Details for the file lexindex-0.8.1-cp311-abi3-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: lexindex-0.8.1-cp311-abi3-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 766.6 kB
- Tags: CPython 3.11+, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e12422e833552856fe85ef0aba7fcba53f70e7082980b568af4fdc7fd1159c0f
|
|
| MD5 |
544c096d17d67a103e9752583c1cc524
|
|
| BLAKE2b-256 |
19c9ae09ccc4d7bcdfa007d21f120fce4aba894fff7f14f6b150607cdb0dc6b6
|
Provenance
The following attestation bundles were made for lexindex-0.8.1-cp311-abi3-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on ilgrad/lexindex
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lexindex-0.8.1-cp311-abi3-musllinux_1_2_aarch64.whl -
Subject digest:
e12422e833552856fe85ef0aba7fcba53f70e7082980b568af4fdc7fd1159c0f - Sigstore transparency entry: 2618619376
- Sigstore integration time:
-
Permalink:
ilgrad/lexindex@3ef59e5c769547efe28658c387bccc88fe945bfe -
Branch / Tag:
refs/tags/v0.8.1 - Owner: https://github.com/ilgrad
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3ef59e5c769547efe28658c387bccc88fe945bfe -
Trigger Event:
push
-
Statement type:
File details
Details for the file lexindex-0.8.1-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: lexindex-0.8.1-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 603.0 kB
- 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 |
b680d3aa80deb5067c9de419b19c8153d48284c44ebe3d6b0f9307c4471ebd5e
|
|
| MD5 |
39fac52ba659dd9aa9079dca08196427
|
|
| BLAKE2b-256 |
8c5148e6f6c8301cf82707a918df9db82ee1a50f9beffe14efba6d43b21f991d
|
Provenance
The following attestation bundles were made for lexindex-0.8.1-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on ilgrad/lexindex
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lexindex-0.8.1-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
b680d3aa80deb5067c9de419b19c8153d48284c44ebe3d6b0f9307c4471ebd5e - Sigstore transparency entry: 2618619428
- Sigstore integration time:
-
Permalink:
ilgrad/lexindex@3ef59e5c769547efe28658c387bccc88fe945bfe -
Branch / Tag:
refs/tags/v0.8.1 - Owner: https://github.com/ilgrad
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3ef59e5c769547efe28658c387bccc88fe945bfe -
Trigger Event:
push
-
Statement type:
File details
Details for the file lexindex-0.8.1-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: lexindex-0.8.1-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 588.8 kB
- 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 |
a0a91ebe352f638370714570d58c5ce0aa720887bff2b23aebd6c2da94f09069
|
|
| MD5 |
5fd27deb5e6a157fc46fca1db4376044
|
|
| BLAKE2b-256 |
bc6b1ed974440563838299d64d3a1f368a1ef3999a52852637906e496ef5cfef
|
Provenance
The following attestation bundles were made for lexindex-0.8.1-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on ilgrad/lexindex
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lexindex-0.8.1-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
a0a91ebe352f638370714570d58c5ce0aa720887bff2b23aebd6c2da94f09069 - Sigstore transparency entry: 2618619340
- Sigstore integration time:
-
Permalink:
ilgrad/lexindex@3ef59e5c769547efe28658c387bccc88fe945bfe -
Branch / Tag:
refs/tags/v0.8.1 - Owner: https://github.com/ilgrad
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3ef59e5c769547efe28658c387bccc88fe945bfe -
Trigger Event:
push
-
Statement type:
File details
Details for the file lexindex-0.8.1-cp311-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: lexindex-0.8.1-cp311-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 546.7 kB
- 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 |
3bf83e5dd6964b67535d2d040717cb3dadf3ab73dd63cb8bf3bed05234794426
|
|
| MD5 |
87b7203d946ae28ae0f85b7eccda0199
|
|
| BLAKE2b-256 |
c332aa3e4e69664292c3f04a200f485e58761bb90bd8918cef02882769206232
|
Provenance
The following attestation bundles were made for lexindex-0.8.1-cp311-abi3-macosx_11_0_arm64.whl:
Publisher:
release.yml on ilgrad/lexindex
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lexindex-0.8.1-cp311-abi3-macosx_11_0_arm64.whl -
Subject digest:
3bf83e5dd6964b67535d2d040717cb3dadf3ab73dd63cb8bf3bed05234794426 - Sigstore transparency entry: 2618619529
- Sigstore integration time:
-
Permalink:
ilgrad/lexindex@3ef59e5c769547efe28658c387bccc88fe945bfe -
Branch / Tag:
refs/tags/v0.8.1 - Owner: https://github.com/ilgrad
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3ef59e5c769547efe28658c387bccc88fe945bfe -
Trigger Event:
push
-
Statement type:
File details
Details for the file lexindex-0.8.1-cp311-abi3-macosx_10_12_x86_64.whl.
File metadata
- Download URL: lexindex-0.8.1-cp311-abi3-macosx_10_12_x86_64.whl
- Upload date:
- Size: 566.5 kB
- 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 |
b9d891e4cb3a4caa9559293a3dcb009841eccfd48a89a9c11ae77adcabaff81e
|
|
| MD5 |
a4fa3cff02495fb6dc0dd64715fc9af1
|
|
| BLAKE2b-256 |
d129fc4801127d3946d5818c6bc31f93a33063404459de8095b477daf4727b1b
|
Provenance
The following attestation bundles were made for lexindex-0.8.1-cp311-abi3-macosx_10_12_x86_64.whl:
Publisher:
release.yml on ilgrad/lexindex
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lexindex-0.8.1-cp311-abi3-macosx_10_12_x86_64.whl -
Subject digest:
b9d891e4cb3a4caa9559293a3dcb009841eccfd48a89a9c11ae77adcabaff81e - Sigstore transparency entry: 2618619270
- Sigstore integration time:
-
Permalink:
ilgrad/lexindex@3ef59e5c769547efe28658c387bccc88fe945bfe -
Branch / Tag:
refs/tags/v0.8.1 - Owner: https://github.com/ilgrad
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3ef59e5c769547efe28658c387bccc88fe945bfe -
Trigger Event:
push
-
Statement type: