Skip to main content

FM Index

CI codecov PyPI - Version PyPI - License PyPI - PythonVersion PyPI - Implementation PyPI - Types PyPI Downloads PyPI - Format Rust GitHub Repo stars

High-performance FM-index implementation powered by Rust,
designed for fast substring search on large texts and collections

Features:

  • Fast count / locate substring queries
  • Data-parallel optimizations across index construction and queries
  • Supports single text and multiple documents
  • Pickle serialization support for efficient index persistence
  • Optional disk-backed storage (on_disk=True)

Installation

pip install fm-index

FMIndex (Single Document)

What is FMIndex?

FMIndex builds a compressed index over a single string,
allowing fast substring search without scanning the original data.

Construction Complexity

  • Time / Space: O(|data|)

Example

from fm_index import FMIndex

genome = "ACGTACGTTGACCTGACTGACTGACTGACGATCGATCGATCGATCGATCG"
fm = FMIndex(data=genome)

FMIndex also supports disk-backed storage for a large document.
Set on_disk=True to keep its internal data on disk instead of holding it all in memory.

fm = FMIndex(data=genome, on_disk=True)

Count Substring Occurrences

Counts how many times a pattern appears.
Time complexity is independent of data size.

fm.count(pattern="GACTGACT")
# 2

Locate Substring Positions

Returns all starting offsets where the pattern occurs.

To improve throughput for high-frequency patterns,
FMIndex applies parallel execution to parts of the locate pipeline.

fm.locate(pattern="GACTGACT")
# [18, 14]

Iterative Locate (Streaming)

For large result sets, iter_locate provides a memory-efficient
iterator interface that yields positions lazily.

for pos in fm.iter_locate(pattern="GACTGACT"):
    print(pos)
# 18
# 14
  • Same results as locate
  • Does not allocate a result list
  • Suitable for streaming and early termination

MultiFMIndex (Multiple Documents)

MultiFMIndex extends FMIndex to support multiple documents
while keeping query time independent of corpus size

Query processing is internally parallelized where possible,
making multi-document search efficient in practice.

Construction Complexity

  • Time / Space: O(|''.join(data)| + len(data) log (len(data)))
from fm_index import MultiFMIndex

documents = [
    "政府はAI研究の支援を強化すると発表した。",
    "政府は新たなデータ活用方針を発表した。",
    "政府はサイバーセキュリティ対策を発表した。",
    "専門家はAI検索技術の進化に注目している。",
    "研究者は高速な検索アルゴリズムに注目している。",
    "オープンソース界隈では全文検索ライブラリに注目している。",
]

mfm = MultiFMIndex(data=documents)

MultiFMIndex also supports disk-backed storage for large documents.
Set on_disk=True to keep its internal data on disk instead of holding it all in memory.

mfm = MultiFMIndex(data=documents, on_disk=True)

Count Across All Documents

mfm.count_all(pattern="検索")
# 3

Count Per Document

mfm.count(pattern="検索")
# {3: 1, 4: 1, 5: 1}

# Count within a specific document
mfm.count(pattern="検索", doc_id=3)
# 1

Locate Per Document

mfm.locate(pattern="検索")
# {5: [13], 4: [7], 3: [6]}

# Locate within a specific document
mfm.locate(pattern="検索", doc_id=3)
# [6]

Iterative Locate (Streaming)

# Iterate across all documents
for doc_id, pos in mfm.iter_locate(pattern="検索"):
    print(doc_id, pos)
# 4 7
# 5 13
# 3 6

# Iterate within a specific document
for doc_id, pos in mfm.iter_locate(pattern="検索", doc_id=3):
    print(doc_id, pos)
# 6

Prefix / Suffix Search

mfm.startswith(prefix="政府は")
mfm.endswith(suffix="注目している。")

Serialization (Pickle Support)

Both FMIndex and MultiFMIndex support Python's pickle protocol, allowing you to save and load pre-built indices efficiently.

The internal data structures are serialized directly in binary format, making deserialization much faster than rebuilding the index from scratch.

Save Index to File

import pickle
from fm_index import FMIndex, MultiFMIndex

# Build and save FMIndex
fm = FMIndex("large genome sequence..." * 10000)
with open("genome.fmindex", "wb") as f:
    pickle.dump(fm, f)

# Build and save MultiFMIndex
mfm = MultiFMIndex(["document1", "document2", ...])
with open("documents.mfmindex", "wb") as f:
    pickle.dump(mfm, f)

Load Index from File

# Load FMIndex
with open("genome.fmindex", "rb") as f:
    fm = pickle.load(f)

# Load MultiFMIndex
with open("documents.mfmindex", "rb") as f:
    mfm = pickle.load(f)

# Use immediately without reconstruction
result = fm.locate("ACGT")

This is particularly useful when:

  • Working with large datasets where index construction is expensive
  • Deploying pre-built indices in production environments
  • Sharing indices across different processes or machines

Development & Testing

Run Tests

pip install -e ".[test]"
cargo test --all --release
pytest

Formating

pip install -e ".[dev]"
cargo fmt --all
cargo clippy --all-targets --all-features
ruff format

Generating Docs

pdoc fm_index \
      --output-directory docs \
      --no-search \
      --docformat markdown \
      --template-directory pdoc_templates

References

Download files

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

Source Distribution

fm_index-3.0.0.tar.gz (73.6 kB view details)

Uploaded Source

Built Distributions

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

fm_index-3.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (808.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fm_index-3.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (858.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fm_index-3.0.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (874.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fm_index-3.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (767.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (581.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (621.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (736.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (657.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (599.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (591.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fm_index-3.0.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (576.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

fm_index-3.0.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl (646.0 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ i686

fm_index-3.0.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (578.5 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

fm_index-3.0.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl (643.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ i686

fm_index-3.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (802.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

fm_index-3.0.0-cp314-cp314t-musllinux_1_2_i686.whl (849.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

fm_index-3.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl (867.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

fm_index-3.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (761.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

fm_index-3.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (576.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

fm_index-3.0.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (613.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

fm_index-3.0.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (727.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

fm_index-3.0.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (645.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

fm_index-3.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (592.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

fm_index-3.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (586.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fm_index-3.0.0-cp314-cp314-win_amd64.whl (400.3 kB view details)

Uploaded CPython 3.14Windows x86-64

fm_index-3.0.0-cp314-cp314-win32.whl (362.0 kB view details)

Uploaded CPython 3.14Windows x86

fm_index-3.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (804.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fm_index-3.0.0-cp314-cp314-musllinux_1_2_i686.whl (847.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

fm_index-3.0.0-cp314-cp314-musllinux_1_2_armv7l.whl (868.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

fm_index-3.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (762.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fm_index-3.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (578.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fm_index-3.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (613.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

fm_index-3.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (729.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

fm_index-3.0.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (642.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

fm_index-3.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (594.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

fm_index-3.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (587.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fm_index-3.0.0-cp314-cp314-macosx_11_0_arm64.whl (516.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fm_index-3.0.0-cp314-cp314-macosx_10_12_x86_64.whl (530.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fm_index-3.0.0-cp313-cp313-win_amd64.whl (401.6 kB view details)

Uploaded CPython 3.13Windows x86-64

fm_index-3.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (802.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fm_index-3.0.0-cp313-cp313-musllinux_1_2_i686.whl (847.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

fm_index-3.0.0-cp313-cp313-musllinux_1_2_armv7l.whl (867.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

fm_index-3.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (760.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fm_index-3.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (575.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fm_index-3.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (614.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

fm_index-3.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (727.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

fm_index-3.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (642.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

fm_index-3.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (592.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

fm_index-3.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (584.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fm_index-3.0.0-cp313-cp313-macosx_11_0_arm64.whl (515.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fm_index-3.0.0-cp313-cp313-macosx_10_12_x86_64.whl (529.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fm_index-3.0.0-cp312-cp312-win_amd64.whl (399.7 kB view details)

Uploaded CPython 3.12Windows x86-64

fm_index-3.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (802.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fm_index-3.0.0-cp312-cp312-musllinux_1_2_i686.whl (846.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fm_index-3.0.0-cp312-cp312-musllinux_1_2_armv7l.whl (866.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

fm_index-3.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (759.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fm_index-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (576.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fm_index-3.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (613.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

fm_index-3.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (724.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

fm_index-3.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (641.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

fm_index-3.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (590.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

fm_index-3.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (583.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fm_index-3.0.0-cp312-cp312-macosx_11_0_arm64.whl (515.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fm_index-3.0.0-cp312-cp312-macosx_10_12_x86_64.whl (529.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fm_index-3.0.0-cp311-cp311-win_amd64.whl (402.6 kB view details)

Uploaded CPython 3.11Windows x86-64

fm_index-3.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (806.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fm_index-3.0.0-cp311-cp311-musllinux_1_2_i686.whl (853.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fm_index-3.0.0-cp311-cp311-musllinux_1_2_armv7l.whl (872.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

fm_index-3.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (766.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fm_index-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (579.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fm_index-3.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (618.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

fm_index-3.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (733.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

fm_index-3.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (650.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

fm_index-3.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (597.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

fm_index-3.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (591.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fm_index-3.0.0-cp311-cp311-macosx_11_0_arm64.whl (521.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fm_index-3.0.0-cp311-cp311-macosx_10_12_x86_64.whl (526.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fm_index-3.0.0-cp310-cp310-win_amd64.whl (401.8 kB view details)

Uploaded CPython 3.10Windows x86-64

fm_index-3.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (806.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fm_index-3.0.0-cp310-cp310-musllinux_1_2_i686.whl (854.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fm_index-3.0.0-cp310-cp310-musllinux_1_2_armv7l.whl (873.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

fm_index-3.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (766.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fm_index-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (579.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fm_index-3.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (617.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

fm_index-3.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (732.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

fm_index-3.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (650.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

fm_index-3.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (598.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

fm_index-3.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (589.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fm_index-3.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (808.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fm_index-3.0.0-cp39-cp39-musllinux_1_2_i686.whl (857.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

fm_index-3.0.0-cp39-cp39-musllinux_1_2_armv7l.whl (875.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

fm_index-3.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (768.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fm_index-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (581.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fm_index-3.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (619.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

fm_index-3.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (735.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

fm_index-3.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (653.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

fm_index-3.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (600.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

fm_index-3.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (592.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

Details for the file fm_index-3.0.0.tar.gz.

File metadata

  • Download URL: fm_index-3.0.0.tar.gz
  • Upload date:
  • Size: 73.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for fm_index-3.0.0.tar.gz
Algorithm Hash digest
SHA256 d4fa3014000beea8b97f38908fa3ea3e07b44f5b417b2b280f277baf93259568
MD5 abc4caf382aba8446411b310b3b2acc0
BLAKE2b-256 5989fa85e7349dca56b9212301373a251a84f51f476555adb9b8e51d334bfce3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0.tar.gz:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63801d0b3591f588f23db393e371ab6473550860f730f4f913ea46cf20456b4c
MD5 fc949b3a8ce8b4b51617ad415054a6ec
BLAKE2b-256 3d94d8b38065a5fdca959a2773fabe941c737dde0a73abef2101752583e56e46

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 701d5e737876c5f5d2f19052d23c6832246b8f7af1d62e068adae26d53faacc2
MD5 9efd0984b7530b3d5a3ecc12b2a822d3
BLAKE2b-256 b2e0ea573c647b5a15e89abe463657b5b6cecd33e9c12a9ef3a35d832d66332d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 03841cf3080c247c5c3a081167f83f3eb3bcac556e265636c6d741a26f7d0988
MD5 532c1d10340d97638e793784f9c568b5
BLAKE2b-256 427220fd8df1d8ed58caeb9aae437b97135daf9d48fcee3ef2d3265507335bcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ceaa66adf34dba4d8e72689d2feb3aaa33fb386abb252030686b375a3262fec
MD5 db82a6638a1a0dd9fbdc0c33945089c1
BLAKE2b-256 899dab7b95a104f89cf8f1a70600a4cf505a7ddb05b491d67a1a1f36f310ea69

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35f7dd9e28de7b9dc75fb5b282a1d2d629cc3feee6a58e31e3f94e82bd9140ec
MD5 935616df7ca9341b77d753642fda229a
BLAKE2b-256 0f4fa9bd9e1713b2cd5a159bc05867e7806fdbd06a63f56845be9491e43748d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b1954ec5b37a4ef5c1deb64beafc1fe43216a9fe7a035616fa7446f6ecf2936b
MD5 dff2797061dda23b331f0cdcdf94b7e2
BLAKE2b-256 62f7bf0122bfc01dac7a3df0a881022fdf3c334b66497fa05686bcf237e49c3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4f1a4416634a6f7cb168ad7171690801fe8afe52aac04d911e061074d6115b5b
MD5 13c17e596d9d650594b0ad58eb63cbe7
BLAKE2b-256 887abca4a113bb2c6fb1a922e3d9f8de94bb772dba35cc734ae50f12223f4d59

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 34605fb7c5383ff7c2b2b48b71cfeab6751fce3665f89b808da107342b9c4618
MD5 a92f97338cebf875facdbe3f557f9efe
BLAKE2b-256 75074625a70ae703dfa187c55f59a63518694babcccaf7f19e66104bb1eb5be5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 407eef96352c551c2e2a707d19d1945a718b4813c4467298f9311b9567a82920
MD5 4466250a4a29a56ae4955bb44c1d635c
BLAKE2b-256 540de0af049af2afb891e7e49094dbc64d99ae4f94eeea9f791cb1ea26cf3cfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b619930541d98fe9c945678e826f9c22274672c9cd9a48017475cb2e9b42f2f
MD5 a6cd0cf3a27a95ae9f5c4637d9053ad4
BLAKE2b-256 3b12463b19bfa27aabb73d39cfd7493cfc2606f3f99d99cabc3c8f97aa17954e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a06d1a43dec09d7e76edf06bc56e81c5e8320ca8c50b5a30b50ced32198006df
MD5 ae379a7263d121a71add0af23d52425f
BLAKE2b-256 a315b3b63fb94f1b57bf85dc5b320b0ba269a024184ee04babb523220673cb3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bf2507409f30353410848149382f8fe53da11b8e4b0c912fe91115b649e70c92
MD5 4c79a0eaf36eab4f3d7acf02140deb08
BLAKE2b-256 3a186f5a4bce0336363d04d8b406ff61e1ec1508f36bffc16a433d548f87b929

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4046bca8b8659ece16574d87214ab5a171b091e2fb46da84af54e2e183703cb
MD5 b39f8eca2775695c61648f1761c88683
BLAKE2b-256 05e3cebcaccd422f84ecdb6841486940782a033f950fe1c3bfb9882f23dcc0d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bec7f5eab5999d15e6fe0f6a467bc00b90b97f51d7962efacf7b7cd75867520b
MD5 db085dce0cfd03c27dd9556668a7f56f
BLAKE2b-256 880ba570f6292527fc55ae9c5db36c42ae50cd7b66f0bd487847c12a4a4a1f6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd256fe084a533524e8cbe3d4ca194f442a6b4d56f71441e90b60f1b0f09c732
MD5 65fdf0e8c6f9698dfb06b407c8811db3
BLAKE2b-256 280bdec0464b99a18334cbc0802c413218e1f1408cbe4cb007ba2d4a21d9289b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce8bba499f6e59c0e33c86c91eda8d4215bd1d7d08ca813d522e40ea80c939e8
MD5 43c20a3387ac572a978f37a94b31d765
BLAKE2b-256 5873a3e890ad879a50dbb5152803d0d5da909ced902696440decb4cf0ce8ba6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1fe26b773838926f8de1b94d866b53ed8433850c78c57fef5967d59a23c35712
MD5 1b8e7f993c7ce7f9db56f42c0f75b768
BLAKE2b-256 f28dc5626dc88bb425f6174200c6dfc92ff98ebaf04e024406cbf3916266d075

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 75cd1a75009f0c7142f77ceb883248bc6ff10720176d9e25d45df9df538e9ded
MD5 335ea5713efd7e041afc63dbf650641d
BLAKE2b-256 59872b61246b6e05d8f606a74ddfdfcfdbf548fc34ac17d95fa70f054041aded

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 257fe79dced3ee11a2d856668a72685fd6dda7b149da05a02d8f129e1ba5403e
MD5 7e3a55ef4af4c307b1c95b375514f12f
BLAKE2b-256 d32eb86382662dc6ec8096215fcc386b8efe948f3260929bda1bea0a558c91ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f664d71c37e603af3de6407288ef822125bf316486e590ef8c2a88b3d1811eb
MD5 c0f13387121b59844da8e55e358a31cc
BLAKE2b-256 0df28ab4110809ad38d3f5662a2c94f5a601ad726676a987e31212ccb81e220b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b7501f43bb934c914ba984bc60b3fe8584cda05cebc4e75cc1c3963feb2cb4c
MD5 c271042adfc6beb2c65853c59b2431c9
BLAKE2b-256 0279dfb7f3fa2f94389e96115f23a8950b6e3ebf08aa59cf47eaf60b24cfbea9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8d65805fff5b855d66f6e87ac6e6928cfc857692eb419c1336d57af9580abf93
MD5 8c6bfe811eba1d171cc1b4ae4a8e617b
BLAKE2b-256 f8b1a8d1a63eb059c9ad1b02bd0469347267ec45b364f34b543d5aa5e76401ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a6f852600ff92278a3e17f42024106e8aa9246ae08e0cd22b0eee36c62f34038
MD5 1979d9358cfa1ef94bbddfc0ff8e1eba
BLAKE2b-256 2d27d53c8280633b196697309d792127ed7866e2b9552773ae2ccd9d71fdcd72

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14e1f6fa11157293b6430ea110539de4fd6fbcf9f85bd66201ed0c9c22ebb9be
MD5 3e378f8f8ef157f3c5488fce9cff0e63
BLAKE2b-256 8b502e8f3d6ead694ef4dd967cbf3007426aa82ed65bcd4cdd924a61643b0c4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: fm_index-3.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 400.3 kB
  • 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 fm_index-3.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b9889df2d0b213a7aff00beab439d1602c8cb44516369431f6e9cd0dc5a33dc5
MD5 9982f970c8b66f314db2293949777c19
BLAKE2b-256 2a5b310bc92a6cbca06211e962e437b0158ce378eea59e960d305379f576547c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314-win_amd64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: fm_index-3.0.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 362.0 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for fm_index-3.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 abb0ebd39070c18cbf8b21a0ce1718b57a0e2f2ebadb1b95be602bc4848d38a3
MD5 02c7edbb8f4b63ae098cb4f866bdb9bc
BLAKE2b-256 8b81d021f5ef29fee46d1ca9977222f8c559b233436b1d4b1e6543fa10d69e93

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314-win32.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69d638fe05de117c9b669e2df7b984d40bafcedf6f3e478e493d39ea8489a44e
MD5 18f6c32b91e7680480c502aef9222576
BLAKE2b-256 ea946d9ec08516204f619274a37ebb27c02c957fc0371a84183211ff38c88054

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fa9a1af4144e24164a6d9b9700072e468f8f53cba3271d0941487f9f7b72e259
MD5 cb7deec0c40d276fd8552dd32a42ec64
BLAKE2b-256 55d209422723261c6c6cff3e14f5a256e72382f7fc126c693f29255fbea8c848

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cc32a3160d6cc2d6d9010e616e3c639cbbd5d547c95ca0655048a06107377be7
MD5 e587df702c1dacc50a3aaedbaa2b3db9
BLAKE2b-256 3784b8501b285f3fcdc70a1a3e8f4627936336d079dfa60b5d37fc37f8d54641

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bcfc9d95fec4a49ea7dbda18c6ce0f4b41add9f3cdb0c4c26bc6fdbf6cd96407
MD5 d47327384c99dde93acc1748e7c8de64
BLAKE2b-256 3518993d81d97123c3949f9cdfb80fc9a42eb7f71678e570b1d3c06d88d4f35c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b66de78d4b6fb3b0a313e98ac7f27cf2cd696fdf9be5ea11754657d62628131c
MD5 a2c1216b85427e9044eb4630e32962a6
BLAKE2b-256 658ec879d0ac29c38397b2f5ff3a5de64f0c7718761f1205761fb7a9c7ff5d11

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6f9c7a4f38cb3e97b9e3ea5445c208efc0a0a081bc0996d16215894419c1fe2a
MD5 d32e2599857c554e02d1a8964a4c1a09
BLAKE2b-256 555fde6c556e925d4aaee52b5fb847f9165c2ccbc6cf8e0f66c27d3b93537f75

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ef6823ad91812db8f78d832ce238a9c2f825e71b255f2b83f802923bfdabbad
MD5 92e114638cbe8f0031562a50c6773a3b
BLAKE2b-256 8573ce333db9242b72feaa186201d4294e1a5f83f5df69b5d4aa4f4d0f1dfd6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 807b33224c4fd6f040fe36ea8dd901d9f683483fb69cfaf6b232baf2ddecb7a4
MD5 36404e65423233c468961e77054fed9f
BLAKE2b-256 0ac1bf638ab5ccc6be0c539001ecf2f564b649b7c7b16bd97a49b67ad9aaee66

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e0720f7a4d9f75dca04a611b2fff9e8b5dd59114938498e81003e4879311b628
MD5 817072911bbb4d2cd1382fe19cffe6d9
BLAKE2b-256 526bedf134bbb92b584556a57b39779c6fe858b4f70c4e0eb48af426280cc64b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abd0ca2e03188bbfdd6a96a30ca8ea78886a1d685e091d95a3dfc7321f8a77b6
MD5 c6cd82924f902528a2b556fb58f1f8ec
BLAKE2b-256 7370b259dee599e9f2568da27424ad555c7d80c2ce8f842e9154423a79e74f85

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa48307e92c9274d671f0173c5b2812e7bbbccf7340348d9dbdd31183d7b971d
MD5 aae7db2712cb406c30c29eaa34d1ca17
BLAKE2b-256 eaec9c01500bdfdbff347d13cb5e1fb842ab7d0db90d8b2d0dd804ecfc72e2cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e2061c827f8ae2486f38f329f337c0e5c5bd3b1469282cfc2eec28b63f149a6d
MD5 4670010221b795724ae58dbf20b27319
BLAKE2b-256 6555b92460e4ee2590dd0df9550dbdf33de6783da3aeed752e934951205df5eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fm_index-3.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 401.6 kB
  • 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 fm_index-3.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fe0bfa913143daae3a52c5fad9ad063d1aac29f24169c6020be6fd664f34a082
MD5 6ebf030ee72820fe31cdf734c3ed05a9
BLAKE2b-256 142fb1446fbd52fec9986d17ea9939e336f08fabccd1784589d853196ec9beb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp313-cp313-win_amd64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c0af49035d1c49d81bd6b311d1a0bd19c814c4142965ea1b803f701802ee675
MD5 876902abafedfb07e28b1dcc933e9339
BLAKE2b-256 2825de4b9a468cecabd67192cdf6074817afd70bea153b8c3b137982573b0463

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b209b92ce91af0637147e4ae88dd0d17db9eb1a12fe549fa4448011c4d6cff9b
MD5 1aed20ed0c01cff3e73528e39df6a0f5
BLAKE2b-256 c0fbbaa54ab0cc5eff9a2d158f215bb74b31b0f9fd68c34bde5b7d9c0d3cdd51

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ea79e1860dbf230d4d723ae28be71b89a3e8984cd084bec3d2fd91ce8c436abe
MD5 7eba3c40879ee98115fd05649972316f
BLAKE2b-256 097dea8e4c8d6045e9ffd82dcd9b38bb2a02be564805c5ef22c8328f0865c1e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cdf73f4946988b1118fb9e4336b94a73cd2de4fbdb62301c43e51a11320a5cf7
MD5 257dcc20dd5587e9123004b0d86e417e
BLAKE2b-256 b419dcf45b01e6ee7a9513416eaf765fa0664d4b579c9c8d4db4b7bfd38488c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92dfb3e812bd9282c2b73ec501d5f788dd8fa9363ce65bfeb2652052988a7804
MD5 429f717ac35884bc9f6333b361cc9ba1
BLAKE2b-256 63ab1d35353c46affff8db0f671a11842fe4162bfea5dfeddd449e97ef459509

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b46ace5f07e8e0326a52d1bb5ef8a947a6aaf6beef4c37bf7d6439fae0b8004c
MD5 d0f4d1da63ec6290d108986c7b6ca902
BLAKE2b-256 2ae833ccddbd22a93c9e012b7e07d3d2640f23d68c06661268546227653fd4c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5b5781f8e8a08c7ffe7372c1dc42cd199156ba8febfa14c8aa996baf64ed1adb
MD5 3d663a166703671fa0ff19672a0429ff
BLAKE2b-256 658e39262876ad44db94d6ccbd21272f58be24369620c5a3e30f8e4303a9d494

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d0cb254b530de58b2ab8c7e98a1ee4587a5e9abd4fffd53249d688f21be04d3d
MD5 e7183fb2f3c091386df60ef48cb96182
BLAKE2b-256 5971d8eda11a75438ff232339686c80d610c9e906dafe09ece904eea6da2b988

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8103662b330914be31d1990b464b34876f087d9133a29bed45a86125755d6e33
MD5 9059de54551c8f7032ecbd002206350d
BLAKE2b-256 d9afb3495c8373063ff58b65ed6103937c43e4a060792ecd2e7511d0c7d2b1bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3aa08bfd739ec47f9495e86850c46b0364a9a59ee9c0d95dc565b2e19dca7246
MD5 aa46d1cf0be40738052da692a98dc174
BLAKE2b-256 ea7d5159eaf1099cf7b994463a99f7d099d6d038abc1dd44848dab69e165746b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9850af8129a0271963d88e84ea589dc8849e7743fba3c13221238d4fe9ea0419
MD5 5251c6b090f323cc8e0ad3ddc3bd226c
BLAKE2b-256 f260e57c5e04c897c5a23aeaedfaca3a40d447bd822bc88305d68713db56dc2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 95fa5fbd711ff4f72d92f96014f318fb115a4f41d71bf87ae5d45f0d091a339f
MD5 2ef5359ffb02c484e0a10a3437f37265
BLAKE2b-256 38d2824b5e39875ea405f930803d9bbe79de98a97141c3e91d8d733978d17936

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fm_index-3.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 399.7 kB
  • 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 fm_index-3.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7def7512cdf0775cefafcd453bebfcf784d2ad44af6fdeb22f30679e3da2ae64
MD5 f578a20e867db85e9bba9847b841ab84
BLAKE2b-256 302619b739794291580da48f13726bdea47a7a090faad271608a277f044da163

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp312-cp312-win_amd64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99773d33fa2233af67a408422616d0ebd4412d4c07c70ac83eedf3e7012c5de3
MD5 6ec74c2c5dbae84a9f88e816f17ab4a8
BLAKE2b-256 973133650c2ba2033d2f99a4502dd92ab6549ae410b91180b15e2e104d59e3ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6245454f453e0d0259cb675afc57b6099124624f315b7352be62f46efb06c3b4
MD5 f91093f1ccbb57f80e93c7de8a46d101
BLAKE2b-256 e388670df043c288e1c30a62649ca01dd17ddb5e0db6a8707e60bc0926fae7f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6fdd48e5747f29af03d07ee59eb97ccb55caba5e09b5f15d83b38f320d48878a
MD5 a7bee779c5008334f58b229d6913c3cc
BLAKE2b-256 09a2a4c19c24a7c8cb6d41cf0bf1347403aaf80ebf27f393c51623f4fdf34e3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31f03a104db949f435c9fef864088e66bb8f3c333a3a7852d69db98431f66b5a
MD5 efcdde80a218734136ed2586ee58ce4d
BLAKE2b-256 d552ea0923c21379586be3d4290cee99ff26fd1e457595382c3f5395d582dda1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 916d6ab043ab88dd3f54fc1325e82b04e3681aa4d7391d5ff7493d896b74e532
MD5 3bbb6a384876924fb89d1280df015b3b
BLAKE2b-256 bcee812a0a56d97c705457d9798e76879ec636b3d47aecb4a59991c9c8a455dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 117a25ab3c5c471386f024e70fe638a40476994a74ba64577a67315ef00c2858
MD5 7348da21e2de69101014c0aa85bb49c9
BLAKE2b-256 1340664f91eab2e64aa3f4049d3b67c50d2b2774734975a8f85c9d07b03d2e33

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d993d4cce9fac5511a06cab053ed8820dc102fbea0e22cd82c30a2b24501df2
MD5 18aa27575b1ffc225bdba539943bed3b
BLAKE2b-256 16fb3237e3d748f830e1ca635b7cf5e4efee2073dfcd39da1a18b9ed3d42d0d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a2395ff39e8b7492143918520dd4319fe45aa3aab187055a1ddef2d7f0b28060
MD5 666088736bd4e60178de9eebf23e3557
BLAKE2b-256 393869a107982ea4286e652713970560f85bd372a14bff8e43387eb4deb4eed4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 af531f0c5df7803f0b023eacd49574240529bf13d6e95cdc4cee77d9d17a4f78
MD5 d211dccf20014896f96d930adf6b327b
BLAKE2b-256 086e9eea0895161a423e0f06fcd3325efeb63fb4540739a8b7a77f3dfc14f3b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 649781dcd17c2945034d97c1e77dba78ade5d6eef80038133fd344a32fd0f9f1
MD5 f85d2fbab46e92c1634ac17a85b6a639
BLAKE2b-256 b990ad26a59d4f6aabda2f6b94c4f0d704e85598425cfad4ef0204ec0870de97

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7342e8861289732dabd170eeef06a9398623980247e986a9d8b3c624b3fd08b
MD5 7e39a0ff7d5ba441a13b9e8332aea4ec
BLAKE2b-256 7d3a00bbfb286c9030f68b5b1f066dbda6ad3d4b2c421812b0e3a49e8677db39

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 197710f3133c49e791e9c29d060c39e3ed671122e3c768297d7f95527636f645
MD5 a6357c928c38ec30e01fc62c1fabcbda
BLAKE2b-256 8fd397ed3af96657025b7bae14077b6a19d8a0ec1169db3e5ba1cee428ebed7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fm_index-3.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 402.6 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

Hashes for fm_index-3.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a04aec26dac87ad278206ea807fab0f3d3cd83f879266ea57120a51b40a3f9c4
MD5 19857e17d3cf3d0a26b024ee7e0055eb
BLAKE2b-256 ac080138c4021f1c526f8dcea50be29259f0f2a04198b3ebd369b32d221af6c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp311-cp311-win_amd64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5febff81e78df8a48bf457a8a4d372225f46bc144d141b311378a4611a321f08
MD5 49772a77711ae36e4e9f9265a8c150ad
BLAKE2b-256 b17f3e90f0beeb5107b6a59cbe6491905923d3585b487218bdf8efd9c213a20f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d37260ab1116d5539d4edf8b45ae15463ac0897288873d2d95bdd15a488e3a7b
MD5 93705640c6837cbfe8a39e37dff37b13
BLAKE2b-256 aef523f1dda9433527bb9b82c490b8e1f1d0ce630af8c015cad23b252de026d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2abccd483a0defffaef5efe4cfdf785f9c5f4cc1b53dbf24c9dd3a6af620f377
MD5 f5f2e2fef7e3d84e0466d9d55b5ec731
BLAKE2b-256 53673c75c15b0107163c01f8d4ada6f963494cfa97f26297f286cfc4052f8860

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73c1a3fc63e26be9770e9ddd8f71da7c6c701bd6dc2412b6abb8818ab148b404
MD5 37b9db4f468b44e743f48b0cd0e982c8
BLAKE2b-256 fbfaa15f2b4a72ceb89f41e5e15ff903534f36c736f83a7127142252c5b0f322

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a5d64ab1f56c29837ca0326af1f8014c6925c8d99b042ac1bbff7b68cfb9f66
MD5 7ddced993bf8e76644acc3a44b20586e
BLAKE2b-256 b93d6ee59c5d8d9a63950000d8bea50a6954852a343d12c09e6c46613ad37814

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 94eb5aafb3e9f896d0d88212f376b70a016a43f3d51c9e101ab0472b28d36368
MD5 abd0a3fbebf4e01abb56943c1dc0cfd2
BLAKE2b-256 cce1564f157ff4f56d86c40e9f8523321340144d5606d512a557c0a3307152c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b4f8c237cf5b21292b0a9d4b2da1a61834999a3223c11f5766a136f3b86d0dc3
MD5 921ababd389991d8f4a85f31a052b857
BLAKE2b-256 ac67ff6e66e04e239400f38ae0d031ca690c85f2d844022bc16180757e0b6f22

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a7d5c687d242c6474071e81275318deab93472d453acb7b1b65cf16248e3eabe
MD5 510f2bce84faa8ed10372af13b4c05d9
BLAKE2b-256 26f14bae255a1dc136b01789982349e09fcac8cb43ab6369e4245d7e3b11eb90

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3cbdebf320cd9954c03be5e9426946e70cde0f779552d1bd558baff924e623c5
MD5 ad5eca840dac2fe7393e05867196ba6f
BLAKE2b-256 0d9792f2a60d1d84eab066ae4045cf3224653bc28fc9cfd2b49711f77efdc3e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd81d69b6613c7cb61ddd4ea9acb01e72a2520b29fdcb4bc847392fe39a275cd
MD5 133a5d4131b87396c0ef03233283a5c0
BLAKE2b-256 122b4fb8bc2b39794d5a19cd9a1ee45d4d4bf4f7d5e2c31f070523530a73117b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 442d5577d60965b5104dbc6e6d8cf517f753381ed2d7401ad6d138f7a417f6db
MD5 1c35e8efad1880754a6cb8ef3a316898
BLAKE2b-256 2eb88daea810290d74c662bbca570ae240934e0b8071fd430c6f0f1a138e1893

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 720c2c61c0f994227327b95e9ff0b81f87e43567a1fb165cae4081ee927a206c
MD5 d5af29809c63d2bd7b6550ea57b9b995
BLAKE2b-256 6063175e47a1786b233fc14ed4135096ad3e100044c4516c5f134861beeb530e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fm_index-3.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 401.8 kB
  • 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 fm_index-3.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 988bf0a10a226ebbbbbffde2ca74bb8a794101b4c2d8ad4d379834080ddd6fa7
MD5 b3967ddb1b57fdc2a6359a126c3fcbf8
BLAKE2b-256 d3a7d94537caa7c15efce2a3a6202b189c49bd8fa79f537730e1567c4fd8a87d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp310-cp310-win_amd64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27cb9c75c42440d6d9d40df1f77032e6df04f754664826fe5ba6fba27a79643b
MD5 3db461afee027c53e5e76122db4dc2bb
BLAKE2b-256 04a0c86c611f5ac85bfe944d726eb8f49cadc8b3c0582c133a7498a4a15d10d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 100b33ee790a7f33be9cc0ac493f21a596346d76779f6010f06cc54dcc94965b
MD5 af5f0e1d7eedbfe7fda3cb5cbf8f0f5d
BLAKE2b-256 2a81d23355802bb0ab5a6e29cc3a184e1f5b2de4f91b36c3e15e3ceff8458a5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2826a6dfa57e56b412d26622838f997c0d902c586af64a135a2429f00ef81d09
MD5 d7694584cadbdf1c9ea86e94f86bc631
BLAKE2b-256 2b5e7b484b3aff67d47eba3261dc953e298bba1d42f199387d41084a375150c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78f8dc73d51112a8cf5e0f0f9fdbcbdd4448f4f234252174a5078537d61d4268
MD5 5d3bd0972759d58452eb5fc88c8eed50
BLAKE2b-256 d18a19c135c952dcb1478c54681987906bde07a4ba276626ea7566a6a36ebb18

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16d676937324ce00cbde63c9ee673b274e70bb2040c6fa81910474b962644f29
MD5 e68f11100de9ef3fdcfa24c1aca6d170
BLAKE2b-256 8c67b25aed667f04f826e44a2cbf3039c2950e9179793f7b9cc5fed442651932

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 164bc97920b75e3400c317f55e3b30964813267e8374ff858f55169c1034e2ec
MD5 6eda031b024a701dcb3817b5da874cfb
BLAKE2b-256 08e2048fe705d9d7b8a64c88d7e69ab1341f1bd3fa1c2c4fed3d4ed4d0fad700

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e6943ea7240cba637a3b9864996e6901c4aa97cd742812d0db71fdf455896544
MD5 f3b80e0329586a3077d3cf12ca17f4a6
BLAKE2b-256 68e22622294a14be4dbbb5bcf619263edf68645d58366af20826f7835ef0bcec

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e0330e12519dc798722cf37d0e1f2d4c6e35504a9f225ebcb88d76074c3f4644
MD5 6d469c89c4dda72ff534b3a9aeda7dd2
BLAKE2b-256 4f63bdd6349220bdcaa8306bd82b2d6179f114240c534d7d45e76f05822d5f26

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3eae8d77db3ce6c174d06dd3c4b440319b12632c836d9b36b6c529febbf99734
MD5 c8bc5f9fe0681a4703db6e67b53f63cd
BLAKE2b-256 410384881839b854b3dd4e7ecf86742d32094f8c8dd1786094743726835e4997

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee35404db418e195c788fb07205794435f7aaa06febfd9d2f1be84c50fdd5d61
MD5 ea1c7f927e0442aec049a7fabd99caea
BLAKE2b-256 deef5d2eb3b40572bc0267b70a6ce29118ad950c109274039681cc46c7339c3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ff110884f4efe8c720d76e76b0e64ced72fad395e36e3db536915b2b0198635
MD5 82cf0a44c68fdc5411b86cf756186bd7
BLAKE2b-256 5772c10e2e7feae6b64d44a25bd73a9e677239814fbc5ef5977d451ab9260691

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0f6610f6ee62cf429cd975299a810e1b0a29b962646eb201e6f53ab4c27745a8
MD5 b454e9225fbac93c4720c2bc59a40971
BLAKE2b-256 1062feede063bd778604877da3590e386bca523d4d797ced6182090f5c5a0983

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 86733236ebf235ee7a2348a90def565ff961f78bedf2194145d1f13c7e4b8dfd
MD5 838b04a637148782ef6d38b38b6502d2
BLAKE2b-256 b9af49b4a5c9489f8325a489cf293841ddeb6b9c87453d5a389c947d66980512

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 64046e6c50c4d6b6d00c0cff5a48fbfd57bc1c24b9a42bc0c996c43c3adac83b
MD5 66ac9d1d476abe8c7e07a4a5f7710196
BLAKE2b-256 f3723bfe8ef47e34f125beca16d2c0c90e1ee8540adb6d77dca2d6bc48967786

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d65bd50efb5a0acf85907da4e7a7bde60e714bebe329eaf674d13540cac88b0
MD5 90edb59fb9a4992c6548e19e4b8ce537
BLAKE2b-256 db9639dbde52736d05ba2335e9dfcd5ebd660a2db5a302901a9a09aec8ceb5c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 50b4ce3364ea7ea6bcc99730644fcf665a80d45734dbb5190f550a7789ea1598
MD5 a1eebca8647892cf76caf8338370b8e2
BLAKE2b-256 b9d500efe6ac7b79aa08b36ea7f0f1955cf66235f273450dc5b6f8c1760eab09

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5e662f495b310ceb4d3e3e240586c86e9d43bd55f7c837d8b6186b1521f31850
MD5 30211e9df6911ed56a99229109630055
BLAKE2b-256 c38d4eaf7eba518393bfc59b106d06c23efc54fec39352404e6c16f7c9c4c405

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1592074e5886303cc825fc5e79f70d4c01869a909527159f497a96b8b01b64d5
MD5 338082bc3159ca4ffcdda3e34b644c09
BLAKE2b-256 03644f442bb4b31f68fd8e0fa39b5d775bc96d858150b41dd061e5d6764f9da2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea5635bcfb2c07f440be166e7fc99d0f76d84f3c6236794d3b2bc1970b46e404
MD5 7dfe88bf901f75e227b952fb9969c7f9
BLAKE2b-256 3069c1b2b669a244306ff2479350e70ac610dbcbe580399caa922dcf976bba86

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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

File details

Details for the file fm_index-3.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed17093b54c7a33b22cd09efb3ebae94b3177a556cf1d66c5e6448161996bd69
MD5 5f5319ff5cbaa165fd95b118b389ef50
BLAKE2b-256 34ac9607584b837846218d0199940461f851c92ee96076dff5902b5c0931ad18

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on math-hiyoko/fm-index

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 Sentry Error logging StatusPage Status page