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.1.tar.gz (74.4 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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (822.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fm_index-3.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (874.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fm_index-3.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (890.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fm_index-3.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (781.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fm_index-3.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (595.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fm_index-3.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (636.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fm_index-3.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (750.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fm_index-3.0.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (671.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

fm_index-3.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (616.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fm_index-3.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (606.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fm_index-3.0.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (588.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

fm_index-3.0.1-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl (663.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ i686

fm_index-3.0.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (591.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

fm_index-3.0.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl (663.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ i686

fm_index-3.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl (815.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

fm_index-3.0.1-cp314-cp314t-musllinux_1_2_i686.whl (865.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

fm_index-3.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl (883.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

fm_index-3.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl (773.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

fm_index-3.0.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (588.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

fm_index-3.0.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (632.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

fm_index-3.0.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (744.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

fm_index-3.0.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (662.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

fm_index-3.0.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (608.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

fm_index-3.0.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (598.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fm_index-3.0.1-cp314-cp314-win_amd64.whl (410.0 kB view details)

Uploaded CPython 3.14Windows x86-64

fm_index-3.0.1-cp314-cp314-win32.whl (377.6 kB view details)

Uploaded CPython 3.14Windows x86

fm_index-3.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (817.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fm_index-3.0.1-cp314-cp314-musllinux_1_2_i686.whl (864.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

fm_index-3.0.1-cp314-cp314-musllinux_1_2_armv7l.whl (885.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

fm_index-3.0.1-cp314-cp314-musllinux_1_2_aarch64.whl (772.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fm_index-3.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (590.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fm_index-3.0.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (634.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

fm_index-3.0.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (745.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

fm_index-3.0.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (662.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

fm_index-3.0.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (609.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

fm_index-3.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (598.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fm_index-3.0.1-cp314-cp314-macosx_11_0_arm64.whl (526.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fm_index-3.0.1-cp314-cp314-macosx_10_12_x86_64.whl (541.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fm_index-3.0.1-cp313-cp313-win_amd64.whl (410.6 kB view details)

Uploaded CPython 3.13Windows x86-64

fm_index-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (816.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fm_index-3.0.1-cp313-cp313-musllinux_1_2_i686.whl (863.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

fm_index-3.0.1-cp313-cp313-musllinux_1_2_armv7l.whl (884.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

fm_index-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl (771.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fm_index-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (589.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fm_index-3.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (633.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

fm_index-3.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (743.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

fm_index-3.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (661.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

fm_index-3.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (608.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

fm_index-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (597.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fm_index-3.0.1-cp313-cp313-macosx_11_0_arm64.whl (524.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fm_index-3.0.1-cp313-cp313-macosx_10_12_x86_64.whl (537.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fm_index-3.0.1-cp312-cp312-win_amd64.whl (410.0 kB view details)

Uploaded CPython 3.12Windows x86-64

fm_index-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (817.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fm_index-3.0.1-cp312-cp312-musllinux_1_2_i686.whl (862.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fm_index-3.0.1-cp312-cp312-musllinux_1_2_armv7l.whl (882.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

fm_index-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (771.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fm_index-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (591.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fm_index-3.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (632.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

fm_index-3.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (743.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

fm_index-3.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (661.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

fm_index-3.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (607.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

fm_index-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (597.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fm_index-3.0.1-cp312-cp312-macosx_11_0_arm64.whl (524.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fm_index-3.0.1-cp312-cp312-macosx_10_12_x86_64.whl (541.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fm_index-3.0.1-cp311-cp311-win_amd64.whl (413.9 kB view details)

Uploaded CPython 3.11Windows x86-64

fm_index-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (818.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fm_index-3.0.1-cp311-cp311-musllinux_1_2_i686.whl (872.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fm_index-3.0.1-cp311-cp311-musllinux_1_2_armv7l.whl (888.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

fm_index-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (779.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fm_index-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (590.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fm_index-3.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (635.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

fm_index-3.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (749.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

fm_index-3.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (667.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

fm_index-3.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (612.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

fm_index-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (604.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fm_index-3.0.1-cp311-cp311-macosx_11_0_arm64.whl (531.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fm_index-3.0.1-cp311-cp311-macosx_10_12_x86_64.whl (535.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fm_index-3.0.1-cp310-cp310-win_amd64.whl (413.5 kB view details)

Uploaded CPython 3.10Windows x86-64

fm_index-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (820.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fm_index-3.0.1-cp310-cp310-musllinux_1_2_i686.whl (872.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fm_index-3.0.1-cp310-cp310-musllinux_1_2_armv7l.whl (889.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

fm_index-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl (780.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fm_index-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (591.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fm_index-3.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (635.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

fm_index-3.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (747.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

fm_index-3.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (667.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

fm_index-3.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (613.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

fm_index-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (604.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fm_index-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (822.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fm_index-3.0.1-cp39-cp39-musllinux_1_2_i686.whl (874.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

fm_index-3.0.1-cp39-cp39-musllinux_1_2_armv7l.whl (891.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

fm_index-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl (781.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fm_index-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (594.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fm_index-3.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (637.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

fm_index-3.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (750.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

fm_index-3.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (671.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

fm_index-3.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (616.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

fm_index-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (606.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: fm_index-3.0.1.tar.gz
  • Upload date:
  • Size: 74.4 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.1.tar.gz
Algorithm Hash digest
SHA256 4c9269b985f1effbb01612016c329df2ee1d635f2e9d578dba29ae395b6ba3e8
MD5 01b5b4dd1f419d498e52ee63b319d8d8
BLAKE2b-256 5579b5b3ac2336eddace3309135a4bdce102a93c06798f296af8e7d462a3749f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1.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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3317ffc3437da6a0a16caa1b04d6e6fb1c285bdd7a7a5a260440cac816198729
MD5 ab172878d0dec8816bad15bd2144b3cf
BLAKE2b-256 1e9361f3d9718274df033e842ec17902006169c4e1b272b64a28b4fcd2ebdfc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 72eeb278125adda6290c7ecdeaa0eaf1c6b542e03460af35035e66cbedfee9f8
MD5 7e1db470d710b163d59e41ae73549eff
BLAKE2b-256 3930a9fffc78adb897c3739fd69fa018089bfa067fa3dd16e676aa409164cd28

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 541dab7c5579bdb3ad8ce21fe5c7618a3996d43cac3fbe584308ef21c1231979
MD5 21345dca13933fee50713ae3f4ef039b
BLAKE2b-256 0fa01639ab896452fe43dd4727b7c4b818033c4a0fe7e74ee782fb3240a08ffa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7ab63859a0c28baae9ceda795d57d1ebad7d541a07f26fb73037dd7e2b546ee
MD5 ed50f002e1bab8ff5e74fd8a8114c1a5
BLAKE2b-256 71857da2cac90ca64d13fb2ca91d7636fe35aeafab289b519f8b4b6a5976d7c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97db8b4b89b9f211127ca5e5e2b56d71974509f9f1cd20ebef6065f4b530f75a
MD5 9e46316fd94527f8b4969abb22ec45c1
BLAKE2b-256 521ef911d8a9dd7ca129b767f31aac25c43c0fcd2e0a00189770a3bf5367c122

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 719ccdaf5e8ebf90371eb02597ec70c838d8c05a16a9babb3407cb4f02264527
MD5 d65d4015a8c0eae5b0b4d312071340a8
BLAKE2b-256 4dd7819d867ad8df1313b3755b9cb93af6a6ed2d3bf31dec5b4d5dc743d66e52

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c8278ab26744a76cd014c7ad1280275f665b2b860f9b8dd5857b25d82732852
MD5 387549a3cb72d572a7523f579f7d9ff1
BLAKE2b-256 8265d86571c8a1e502f988884620c73539ef0de4cc4362bb89fd42fd87030b8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 21eae3cc957d3e0549c1150a7ae18f96d8851a736b62ca96382fe78dfe052cd0
MD5 26e2741f686b3ff754e7337517540ab2
BLAKE2b-256 b0d408ee27efacd2c2aadabd16c44f7c90e9598e8e6988aa0be065eaa09d809a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d823d7c47da922d953bd958cc8040f02ac0f6f9d4089f8052a877d3a7107ff1
MD5 b8f3bb09654123756463e2dd68b0d29c
BLAKE2b-256 8e6e28a38ee8ebcf223af3b244ec728f9ed6a9d824c022ef0bf14f0dbd465775

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2129c3a4fe56cb8ae353577966ade43aed4ec09dd6850bb51efad98c050343a
MD5 e5cf9b40a8b302b712996f181cec7a66
BLAKE2b-256 fca39358eda83e7e4c0680efb1e1c17edc778d7c6d785e2b879e5eea9de6a50a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39e65f005fef07b416ec81445d3008f2fae8ec0fa1991a6b78ed847a9188820f
MD5 1d882e0ce54c4a93251ad91b4e35a8c0
BLAKE2b-256 81801dae0351017bb9203397c435130e920cc2a3fc7f43cec299644636674faf

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e231015d3ff7c938429d253d85e7d51c6dfd4e6f6bd72fb32ee4b90d6396e7c2
MD5 e1fef47c95dd29129d318c54cf74599a
BLAKE2b-256 a70da1b82a372b729e0953eafebd43c49bd118a7a294c516d25000c5d270b3a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19472c0f735e329b763a01eda8ba9a8f916b049c363f7a860062e415e5d89be5
MD5 36d2bbccbbba46d4b68a009e91d71d63
BLAKE2b-256 a40c6ecfb5ac76b10dfe3b90275f9c0c8f30ae1a2b9be403203c3f71c9d7b68e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 40897761d275cef758b4fdc9d945630caada6e0ef76908bf87e6b84463654cfe
MD5 707e7b09738441cf9f3c9f0ca6fb9530
BLAKE2b-256 57161e92c1c222cba1abcf272d6ebb0bb9ed59bd4789405f1ee4329d750b0cb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dfbff6a31c8acc7fbb7d9154f952517625aaf101d0507ec04ca6a3b3af459d68
MD5 2e56c702995b50974424180da513e2ca
BLAKE2b-256 36fe89d933fd56c6d48c8e47d1e6a3409741e7ae0b116cf64e6b6984df9ffc67

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3229f9fb8ce316132fe28621d582bb7021c3f439ae8f532ec7458abe126f96ba
MD5 69b8c3917fc35992efda70759d701ef0
BLAKE2b-256 e3929a51c3fcd54392fe87d6805526308a18dcfc39031e1e57efe3a06c234dd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7c6d76516f489e89a324c92da6f03bba307f9f252cbacaf4f4f1f4f766d7e2c1
MD5 bd813be5f622fce89b3e0e2e5b4503ce
BLAKE2b-256 8ed43d22b3954a0c1203893c2018192ee2aeeefa0b7e14e3b4844aaac31c5db3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4a304616053ecad5303d01d0358363efa69e4f51b4b82570c1673a6cbb3bdbbe
MD5 e151e75b67e5ae151f60cd293c75554f
BLAKE2b-256 1ea887d0795a8258084eca4334f83d026d7a4d651c563bc925fbb6329a2c021b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0350b817fdc1b0f0e187ab51de9938e02f58058098d89090b9efaea02871942
MD5 52b38ed6cb7a518e03edba7d4c93a215
BLAKE2b-256 6cd8320bc965c5f0fc7a159731069b82dd6b8d4764597ff797b5a7dd327d59f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fd2faea29d5f7ff36fb148780713ad961779ef7e802aae2dc9d302fdc4b8838f
MD5 c5160c65f20fccb664a7d6e6b914884f
BLAKE2b-256 019c646c46ee81f705746786cee45ef95f39bc66b1be23656a4196d6b0d3b561

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 835912317bf5b979546d3d69b7c0fa9c18d95b43b8d45e065153a6d7a9432add
MD5 08975c77ad965ae63e4b189a5fe1cf1d
BLAKE2b-256 077db5004e9780818cfc874a0a05b4bb7b5259aff741622ddf1a52eed3334b1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a6681583e4e1be040e3c2e16d8017a3c35658485d74c7fbca647c810889d63bf
MD5 58eb68bd806d336f20332efd02b31c38
BLAKE2b-256 d4fcb0db72d5a85405faf439a9788dbc70d4cd3e375ccff170948992c4ee8c6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0f8664089283df398ca55b6a0b13df5f673039a474c58b7d27d1aa9c9b0f2743
MD5 7f37a5385e80cb1abc0746db71a8e554
BLAKE2b-256 b94909bd71b27c41a2c7d58059672c1b1121fb049a6029aaffea1b7b576bb483

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da9577391ad9adf41c6e4d64263cfa8c6998b5bdd88846d3fa6a0461c992d7ca
MD5 0d497db3fe7c81c8b6b82736d94e115b
BLAKE2b-256 3b142de62d3400941275cd55c069a9d7fb8333cde97317c4933c338e56d4dcd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: fm_index-3.0.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 410.0 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 76b15dc7107062b528aae63c9694e47d6e6d7dfb893ec0985928580eeeabf006
MD5 0a8d6ac3dd13ede1fcfc19309a2375e9
BLAKE2b-256 b67aec06323912502580b6f3c4859822273f429d7263fc89c6c2518ae937dc7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: fm_index-3.0.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 377.6 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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 19a3383ad0282798dc48914ded5b634fd79ed9c52c2bb7446dfdf8741db8a903
MD5 5a6aa87f9cccb920ccefff8b83ce2cec
BLAKE2b-256 814f848e5c07d1a7980cc76c519210a4b428d81f6944b9fb757d3fb94edff9e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 423581b7362d15919fc1521715bf04f8238613992200d9c962a89fa3bb795100
MD5 29be7114c70ab55af0f77d65de6bd8eb
BLAKE2b-256 77fb5b2e06388a30a39315110e95cd5edda6f3ef502ed28605fadee1d3b622b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4b054b7ff36d7599cfa787d665e5afc8bf4c2595c36f942662b791a8a93985d3
MD5 d8a9434026b337fc804de52d1adf221d
BLAKE2b-256 364070cd7e1ef862d891532b547ae387598fff35f813fad26e62aa7250eb81e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 710f6a91b8d07053ffd301e1d17301dfc0f7ce0e120a7596e523508d6ab2ace1
MD5 0528d0c5f8711a278ed8ddf706b4954f
BLAKE2b-256 9e3f52f93b248cea8df73d40c3f58e97a30c7a0504a888b0a2b17b822d6d301f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce0220b4e354bc8c248f20c5cc89dd3d7aa5344c7552940cf6488d8e5ab80829
MD5 eed2f3032fef02634517b1d7fec11260
BLAKE2b-256 8ccab6468ecd82ded264910288d8069d3fddced442635083c72f9d0f7be238e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 322b321b91b4fe6e80cbbbecaef1cdee6081f398b49fdae419ffeae5696d3666
MD5 2ee6a4263bc88f666e48d7a5a762e563
BLAKE2b-256 56e42c617b9cddc41f6f9c2f75c01fdd9be315bfa94b14c926a6681d175dd4ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4b06bd950f47f01dd3308f5e354f2e9d18e2740641a39631a6b7ba0d123507dc
MD5 501de70591c71ca6e89584d10b4cde80
BLAKE2b-256 8bde773c349ee86a0f177c2293db3f958fd50ffc8358d589faafc96158c2da0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa21162f9fb12a034be7f4c3b562a6ab67ed96f629b0484ee39554fc747c9a66
MD5 24da594820548c290bbbe201924a1ff2
BLAKE2b-256 203183a6964a44b0bed52cc43183ba11b6d4c7c9c4e5fc13a2b6587048f38672

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d3bfa656f43f41f7dac8f3f1f1e26e0f5907b546e48f5153be5f8ba24353abbe
MD5 074ce7bda40ca750f1e2c2ab4c774ef0
BLAKE2b-256 cad4375f23a2197381972abfba77ea95648805a8642ca2aef1a1bd868f646b3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2c0d446d2ed90b7df7f0ec7565fed75974df86db585ba363ce5b0bb32f47c5bd
MD5 1e43c2c20dba67b227501b55fb2f3a76
BLAKE2b-256 2c00ae8d1df5affff663142378e70bace26b6fc9b47736de2e034b87fb2ddfc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c7b9819c531a08b8cd03d1f0533f5209e41d7c1d64a2e0eed6659190b64282e
MD5 d947f5200c79373f6acdb71131fa0e72
BLAKE2b-256 dde641c1fb2303f163fd43392d6fe669c9acb4ef9f2e2db0611ac6967885a47c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db08a24e6be5e3f3169e84a5c03001b7cd3df85036a71af9989b3c599195406d
MD5 c43b8a3c512e0f568dac9cad74e75bdc
BLAKE2b-256 46d253e55894109b5220491789fc16857e71f51ae7f73f979b204b0e88cc9bcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b980e9fcd06f4c572f8145724389ea22c0a0cc68914fa7543741afd201b4a939
MD5 ae8e9511545d4ba3f2d7c7e1f342ddbe
BLAKE2b-256 b333340aa5be6aaf08ffe168595efb54d7207a8c1ca58f8bf4fbc306994c9c01

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fm_index-3.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 410.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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 911a21023755fa4d7d2e2431889da7f97f1cd12fb9ba504c60eb3dfc2e2b1e50
MD5 b388de65b7cc78093a067f1f1306f0d7
BLAKE2b-256 9cba6b0cafecf8d2b995f9eaab451390188aed84cffd74d176764a3a742ec14b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ffcaf9ff062ce350020baa473c5dfa474dab982fa66620a0d9fa2a98a672ca7
MD5 2219f728d8f4c2d20beec136b06c9068
BLAKE2b-256 e756969b0b02b8c8d32b9ac8aee47a11612939221d0e05dbc72a5de6d1e95c79

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 634b51ace9af7f6674c25c9ee4e87d2ca57caef2add6824289f93332ab564fd5
MD5 65f01c10a65d02256af8fbf074d9a957
BLAKE2b-256 fdab39384cd84adb355f56f573151582c0b4a8105b1256079aec0524d386bed2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d0ea9273f035b1af7e07d1ee8a80699e9b0445edec23f4457d9cfd32fbdc84e0
MD5 645a2f63220e4ad9af1e87aad79564d0
BLAKE2b-256 441559031f9f41f97f7c01ae0ef114eba1963dd422811a58383bdda6be61aae1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 113c804fa8fbf7b8d481d028a20e338f6428d8519fce95c3e62dfef9d04ad245
MD5 5b4ba8a5ad0c9cbe673e6f8530e6f67a
BLAKE2b-256 66751ba4b6f108d7702188441cb7d1082291b94a2699c350e1198bfdbe26c71a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd0326a60719f8fb49ea6bc46f104170c8287acf2cb6c59fb3cf4aad3ad74f82
MD5 88c2b512ee2c44d6aef043b30eb9f100
BLAKE2b-256 cbdf479173a5a02237b2902cc39256bc7b62a10a7ec6dea85f1d609663d0d733

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 739c865ad74eae59917351a5c291dff28ec68331efe172f7932a5142f578ce9a
MD5 2221c03ef730e01fa094768c77793a26
BLAKE2b-256 3f8ed087bfe70c6aca1340a112f1c84c07969d936d77aa947529a6b892dc0f93

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1426ea558183291194f562514457a52afc0322f35c39ec41c83b39804ac5830b
MD5 c6249c8f3a60ab568c1d0b6e86ae2092
BLAKE2b-256 3f158ded2a60657fdbaa9eec24a64715aaeeae330b875131ca2abc5f8e6ed6c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 49ff12b9b70980c54a882991472aefb43dabfe6fdc7328db079cfb0664358568
MD5 77e37fe9109777cfd42c3defa706949b
BLAKE2b-256 add2115580eb09c06671726da200be766b25e7290cfc0f3cc90f6488d55a70f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3dd9e8221f7aae0f590d2befa7a6665870e19bbb6425912372d17c7112643acd
MD5 f7d727b62c31c699b06e125893758ecf
BLAKE2b-256 7baee2bd9fa7aab1fb349cdbeb6de551d067b8eb3146f7ace8ef17bef9405b1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5453a112a68dd059b3c5ceb1390e67cb492a1a8d280f6fb8da1a2b2e53907658
MD5 caf8847b3c82502105e5107fc99e27aa
BLAKE2b-256 2ffd1386e87a7052d1acbf2d11764e9ec3e08cf32c0936a8a2d2ece99c3647eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8c493c6fc58ae64ba450eb9fd1a33e4d8718f1619c7b065de51fc7f41a1001c
MD5 628ee6ee585e9b0a7c428205b1c63b0d
BLAKE2b-256 1298fb851a980a02eeeaf2440536f20f4210e14e1b939bb7c21ad4608d6fd262

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3acec1005d6c45185b382250d608e1c06dec1149ca0d9e54337d7c74c980f23e
MD5 90a1016b559b6401aad663f463e82541
BLAKE2b-256 d62bd6872b109a4f4bc81d79e82e0441d4a7bcf2bf8c2e413b0576a9209bc19f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fm_index-3.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 410.0 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 839d490e2729b4164a907e3ea193dea2d7584c6544397935d0e27b17bedc37fa
MD5 986fb4497633db5b93e2111cebc5090b
BLAKE2b-256 9f74c96c6bdc1e807db3068841a3c641f9f3d516b5215ad675447ca2ae0145b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73b2274a4038dc47e6bffb3ce1f28255c5a3ca3f5c8eb03bf3f856fd25badb96
MD5 b19fa3895e6a653fd71c6e1e9208a4f7
BLAKE2b-256 37828dfbe2e7b31f44502208b074664b8483bca8ef2d9f381cd86115daec5c55

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8d7fddb9b8c794e885654e27036baf3b39e05f1b2dcf81ea54a6148f7307865c
MD5 973046e23af1462cf71c0c8b7687442a
BLAKE2b-256 837f29a4ea519b34bd914a40213ce639a429a993c0ad11f0d9fba341e96ab4ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e45b656b108cc465c4f56c06b4d8f1415a3a25faed19bcc40198251acf60e4be
MD5 fcb76ddc932f8666e6bf5a5e5c809816
BLAKE2b-256 f315e05733a68589d039c085babc447ce5adaa67ebe0567d9181cc69fe5bd932

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e0ac65d3394ae006d973b2af1b90918cbe27c75a154e64aae1d8137a6e668f69
MD5 35d7aa6f043c605fbadc870298ab0c16
BLAKE2b-256 37e2bb6f5e748d92f2c8d88bc602e405fbe21ef8c74f9d0e3f75169c3cf3ce1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d83e285d562d61d8217ee2827de2dad8348bf90e359257086f5e7bc84b9ffeb
MD5 4650fa56ffe5ae354d9b8efb32a78e7f
BLAKE2b-256 616cb21ea4acfc6ea2862f31ca3b1df5dda216f01dced9812397b266caaa1ed0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eb2e243c197a6694f0e66e910b6040c576164bfa7c34f6efe3ad700fc47b96a9
MD5 2aafa1e5d4551fb8da716771591db331
BLAKE2b-256 14b051921ce539e17ecc59616aa17aa082a3c0b5a74c5a1dc41e5f6f31870079

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2bfadf2991b7e28c1d1397a1144bf307829319767304b46bb11f511fcf9506c2
MD5 8513e9e6e1b72fc0bb306eef897fccd6
BLAKE2b-256 4b6b12549bfdf696ca5faa9bb9d7a441d69dd10eb09c1a72fe348c90f362c7de

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2eb62a712b36e87bc969bca1d30c3ffc5892b4395184177619f2c847f0e01abb
MD5 a5dc71ad0537d35b078c145367fe5b18
BLAKE2b-256 bed0cc5f8d8c4dd5b0168e7077f87761dbc191b975bdb180dec74e4c1b7ea7b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 23e7ad18c8df44721346d38adc089e4243b058ec2e44f6b52eb728d0106750f8
MD5 2906db0a0833d60068a50da2c9ac222b
BLAKE2b-256 249f8216b90d90af38e4365f343c005857c93c69ccdfb5c311cc898a7e0283ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8fcb9a6e8930fef7e0a65bffc6f819c92da98c8a048265d0b5099f3f6f2a6c0b
MD5 a43b66185d20140aad25a913450a5723
BLAKE2b-256 197d54d3f2ed55410402369b9346c68280b575d4fd68e13acab4d8fc7d9ad78a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c73090ae7ca37d68c82af81c1342464a8781899da66845a455a1619048075606
MD5 60213c79fe1889615a63bfb92d0e19db
BLAKE2b-256 f6eff9405a36084b2455167e12fdc374369ac3ab38a4c8d3291c890c11eb4bf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7328b26f1b9c5559294c154aafcea18ba4847ec708931d5fabfb156f006eb36a
MD5 748345a80b4da423cc849d603ca42eec
BLAKE2b-256 2f85bc74b23154933479868e5d93de54f9bb80577189e524b20aafa02b374ef6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fm_index-3.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 413.9 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d9f59648ae90ee1b3217c5dcdf25a7309d8065e80677982d9d8e7ccfe7aee8a2
MD5 0d9710ef09bbd7241c0adcf94c1972a6
BLAKE2b-256 5fb3c3fdf95f492a5b6a7548d55bd24994bdc42d7b84dbf174a3eab7d7b863f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c08801162545b952e7e0a8cff390544196656a1099f23ee48e95621ebf773b7
MD5 ea87061adf0220f41049998e0c675d60
BLAKE2b-256 841d9aa8afa4d3b1cee234bc5203bfb638ebc9510b944b1913473fbf59a12791

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0863bea3e19ab74f2a269cad5d1520dca716fc2687cd3633db71ca2c8a33cb7b
MD5 844f11ac2c8daa1c6a462fffce8c2fec
BLAKE2b-256 66e5ebc8a14d5bc61e796b4105ee6002d5d74c7ab84f5c8062fe685131b102b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 13e2ef0f72d25cae3abf3c5118edf78f203b0103458ccdd02b3c4e4c5a62b340
MD5 7add2bbcbffe4ec5a831200a16da6013
BLAKE2b-256 5abd5f3e46dabb0f375fc77fd1ab490c25e85ff0cd24f6eef7600816a7a3426b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b0a96169a924b7320ae3b124839504cd025ecaa7a3643a85f493e814c8c6b05
MD5 b4d3481a3d4d62e2597713742680c1d5
BLAKE2b-256 8fe3ee2f451ce438803b43392a2755c2ea917d4f4dfcaa5483c7aab23e2aa994

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5847fa898cf485219c43c11a577c218bc7fb554153a0e8c1a54a2751db3ac3f
MD5 c30ff90a44d44bc7093b0b1d23079666
BLAKE2b-256 16d75c6528818b8d294c6425828719ba94cc93a9508fa1b8a0efc5475e230813

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d5701665036c8a01ffa651e7205be7cc728f4bd86a2bde786b1925966f949fca
MD5 8f0a2fd91835344f5578980496c0ccc1
BLAKE2b-256 bd50a6f30301b748ce2129a3f365762be15c5cb68c402c541898434f28f3b030

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f08372e03111f10be180d9ddb114df4fb84a3e6f562bda9e4240cf2e0cbeace6
MD5 270e838be35c8b1b52c930220e30d9dc
BLAKE2b-256 41b0c7259eb23dfd78cd7e71b07e73f8e67508e6f759aa23b14f65ed7ec1ea22

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 33561c06b4e7a2b61965eac972348111155fe5a1c5792b9f7230fd61e5bd8f85
MD5 a461e823ff4047d2af828a9658a72ad4
BLAKE2b-256 d322f24b00c03c02e7b3809861314fd37ba2f802e8615e617becec187b5331e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fc9323d27a1e265d66637c02ad31a1538b36867d1797c1d4d78787b9bcc70d71
MD5 9531d667ed8df9d5352b3a9a1d24fb95
BLAKE2b-256 10e485d6fbe9c2e00a56caa863047aa8b367c8cf9e8eff43fccd89cee3c8eaac

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d9206854ed610be35a210c916d50a00e300fa48617bcafa632e039cb087388e
MD5 2744d51976bd4ab9bee56d1730de59f2
BLAKE2b-256 9057efd82d8868d811c108f10d4a9eba6683eb8894e5c1ef000f2d84168972fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d209cc4f2b726c2ac985d0b2b2d550bcf4fae48a6902d865751544a25a6d28b2
MD5 95140f90081a475184d13fb9a0bbaa2d
BLAKE2b-256 0843e404a07b482f198d4ef6df010958abcd050639d47bc35e979600fc7ac4b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a2d43dc9209d4992ff8db6f909d894df5cdbaf85d7ba6bd8257ea8069ecedd55
MD5 909e15928832ff5f0528a748d84c0756
BLAKE2b-256 857bfb488b6b828f7e4272a68d2619c78f013ba434dcfa512fd9671a9052d033

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fm_index-3.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 413.5 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 beaf4f8563bb312ad292fef094201bae1727e12b1f0de23757bd123a6ab8521e
MD5 f7beb7aa806df070da2441914bbdd3e2
BLAKE2b-256 bd4f3c9a097b2936d176428fb9949fa6612984eb47237d3239a056433432e877

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7efee9bb45be6a1661d611bd04c44b7a780daf615e3481e6107aaec3f8bfd697
MD5 2cf59b10d5c5d7942cbf4f5d66ca4799
BLAKE2b-256 e08122992654362e1393df51d89ceb4123ea8ed0c93538c1baf3f349240058f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f8bc5dfe54ed49cca651842a5618bccb19a93afa93f0628026e1d3a1061168a4
MD5 62312d55520319283dfa9597b0eb0fd6
BLAKE2b-256 20c7ac6d69b7c26601167d956753f5185369a8bd7b0c1c0da20882f7ab5d6513

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 570b47f29784bcd18aa19794779ccfc8b429a41834b2dabad11e8b458664ffd8
MD5 a2735d2a5e9994c271d775d6e31e9753
BLAKE2b-256 30a00ac0d06f7d4e8935aca8358c4dae565f0c9030704c22420f4f78b416ee91

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 140c5b23bfd50aa4c99b1eb42bf6bd922c17bc267dda375b170dd32215360f5b
MD5 11b95c58891d1157d2d08a8bbbcfa253
BLAKE2b-256 99ae250914e9a8e41566522ccdc453f336bcf3377d3ca29a13a1a8313db6e9a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac4de748373d1db36f4aadda64323248f29cde0f47ba47d20af2277970b993e5
MD5 31594777c632e39dc1b503a740624d6d
BLAKE2b-256 d57fc186926dc782cd1f031c243eff23bd405ae95920823ffb0544e79772d3a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 188629e33673bc65962b3bffdbc9ac11d43b6a2a5690263ae14a765fa3e724da
MD5 b4d10eb6907e6bbe2ab7412d48fb0d08
BLAKE2b-256 b008b4a2336ff31e59579761526db0b04968fc9ecbb570f8d1dbbac58fb8cef8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 409a5cf43e513cd067dd1b6556872cb4a7628718b7cf1ae81be247de5048a499
MD5 8d091829664b1235d6d91927e32764aa
BLAKE2b-256 f18297c8a69506ebe47165541976d2e6930fc00ab026e8832b08a6724ffde9d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 50de9fab2fc27090ca97abd8cb8e5eeb47cdb2104cb536f63a2f830614346bd1
MD5 ed7aab30799ea61c846b6a25508e4118
BLAKE2b-256 15c107e53ab4206282849963613524821dad1afead6aaa327adcfec61f6ed3ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 346732bee87d6a948b5854bc2ae816d00474bf8a80edb6ba4c53553dc56a7ece
MD5 fc342df915cafa58f301db5f8777d7b5
BLAKE2b-256 84f2b35919192aadc3e82c2500bc6d9e841ff5085b8d043b2e101b1ab4d2e826

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8feaa50f3d53145a1921b41102caaf2cd663a4403e9a6b4883b7d94078760809
MD5 020cb8b88441e643a837ce0453f2d209
BLAKE2b-256 bf71a06433e235e643d67ac2651a1d12d9386b90fe62006c192ca117e78fc9f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7566ed672b31b34404c546ba20db09a11241ed9c711b9023032e71f393be3263
MD5 c4a82a1c2da0e2b2e29561763490073d
BLAKE2b-256 ca810ca4ed6094758dc9dd1341273f8d415dce59ffddaf40fb5dd61baca385f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d35a7815c161cbf27c5352ea086852ca622393f95176d6b8056296aed0d66697
MD5 9a51567ebb5f73904260b24895b04b5f
BLAKE2b-256 792e163a7b1dead3e5f92cb495d6e5e97c54405f2db0b01af5764023b7df626c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a21d03924e49e5a61a192bb51694aaa7d3571e239f3f584fc5c7b51f51cdff48
MD5 508d9fa69ea479ad9c6b939893035aa9
BLAKE2b-256 1c8d1047924edabb438a9e3518d803b39010b951a1a83cf66b11b46c2c1aa587

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 041e9246e22182d4577eb0682d1d72d21c745c16da16066481a927b1a1161849
MD5 8f4e0e383999f3344fca45272d4e35d2
BLAKE2b-256 c0171636e9260c1d758b3146c33b8f2ac8c1ff7485136a758457e2c5afb51d9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73298f632ccba6ca44b1a7f0a9046360b45adc65634d3b705c77120adfb1130e
MD5 e2cbb3cfabd92b5315512367a2160d5a
BLAKE2b-256 9fac944efd10b134624bbc71c8659d4f1e6bc05d855bdbf36acb550178f34101

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d66cc906ecf37cfb47be45b962a4bcc9eb6a2857fd46f448a38f162be47dc24d
MD5 ff65fa13e8b1f5eb586b5dcfa16e139c
BLAKE2b-256 923984612f9e34a7e69f2a7b7afbf4beb1615b00534b4b621839600a7ee69aef

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f33d06fc7552e4b3459d0a539465e1d19c11efdba9da9f793057eb9fe0751320
MD5 362025d8ca43252247989e7a60cc63d4
BLAKE2b-256 946ab91cbda08b2d02accac6632a28304cffaae485278990b84c070b753b0942

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f45c7e68717283f1d563ba398becd5efeaf9b1a4f9ae7290a20faea8f568249d
MD5 1270a1e0c39a6c016a16e29c1af265d3
BLAKE2b-256 855f13493cd93ba99123f078dde4fefaf828fca9bb6e4adf996b0aab6a847917

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 609310e84d30d0b1534f752cab564dfa7c9b73c552c284979f3b15be2830bc52
MD5 0a865294522cb187baedd5af4c6092cb
BLAKE2b-256 2fad93c84730e7afbb0e7eecd3a7b510a868c23db68f26b0ade3dc3ab05a2a59

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f4235225fcbeb4d5ec6c1fc6043c000b293fb819dc77dff5de79089205dd3f1
MD5 f41493fc4e2783b95ce30e56f8b4b4c3
BLAKE2b-256 9dd68856e5c0c6ff3d620d2c318ea9061c6824d637842d21ce3ecd8cfcd97a8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-3.0.1-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