Skip to main content

High-performance FM-index powered by Rust, enabling fast substring search and count/locate queries.

Project description

FM Index

CI codecov PyPI - Version PyPI - License PyPI - PythonVersion PyPI - Implementation PyPI - Types PyPI Downloads PyPI - Format Rust Unsafe 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
  • Safe Rust (no unsafe)

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)

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)

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

Safety

  • Powered by safe Rust
  • Memory-safe by design

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

Project details


Download files

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

Source Distribution

fm_index-2.3.4.tar.gz (57.7 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-2.3.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (762.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fm_index-2.3.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (802.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

fm_index-2.3.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (820.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

fm_index-2.3.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (722.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fm_index-2.3.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (555.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fm_index-2.3.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (604.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fm_index-2.3.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (680.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fm_index-2.3.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (601.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

fm_index-2.3.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (544.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fm_index-2.3.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (547.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fm_index-2.3.4-cp314-cp314t-musllinux_1_2_x86_64.whl (760.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

fm_index-2.3.4-cp314-cp314t-musllinux_1_2_i686.whl (797.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

fm_index-2.3.4-cp314-cp314t-musllinux_1_2_armv7l.whl (813.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

fm_index-2.3.4-cp314-cp314t-musllinux_1_2_aarch64.whl (714.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

fm_index-2.3.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (599.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

fm_index-2.3.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (678.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

fm_index-2.3.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (538.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

fm_index-2.3.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (538.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fm_index-2.3.4-cp314-cp314-win_amd64.whl (382.3 kB view details)

Uploaded CPython 3.14Windows x86-64

fm_index-2.3.4-cp314-cp314-win32.whl (348.1 kB view details)

Uploaded CPython 3.14Windows x86

fm_index-2.3.4-cp314-cp314-musllinux_1_2_x86_64.whl (760.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fm_index-2.3.4-cp314-cp314-musllinux_1_2_i686.whl (798.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

fm_index-2.3.4-cp314-cp314-musllinux_1_2_armv7l.whl (817.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

fm_index-2.3.4-cp314-cp314-musllinux_1_2_aarch64.whl (716.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fm_index-2.3.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (553.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fm_index-2.3.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (602.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

fm_index-2.3.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (677.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

fm_index-2.3.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (596.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

fm_index-2.3.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (541.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

fm_index-2.3.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (540.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fm_index-2.3.4-cp314-cp314-macosx_11_0_arm64.whl (493.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fm_index-2.3.4-cp314-cp314-macosx_10_12_x86_64.whl (509.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fm_index-2.3.4-cp313-cp313t-musllinux_1_2_x86_64.whl (760.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

fm_index-2.3.4-cp313-cp313t-musllinux_1_2_i686.whl (796.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

fm_index-2.3.4-cp313-cp313t-musllinux_1_2_armv7l.whl (815.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

fm_index-2.3.4-cp313-cp313t-musllinux_1_2_aarch64.whl (715.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

fm_index-2.3.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (598.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

fm_index-2.3.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (679.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

fm_index-2.3.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (540.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

fm_index-2.3.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (538.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

fm_index-2.3.4-cp313-cp313-win_amd64.whl (383.5 kB view details)

Uploaded CPython 3.13Windows x86-64

fm_index-2.3.4-cp313-cp313-musllinux_1_2_x86_64.whl (759.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fm_index-2.3.4-cp313-cp313-musllinux_1_2_i686.whl (798.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

fm_index-2.3.4-cp313-cp313-musllinux_1_2_armv7l.whl (814.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

fm_index-2.3.4-cp313-cp313-musllinux_1_2_aarch64.whl (718.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fm_index-2.3.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (552.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fm_index-2.3.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (599.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

fm_index-2.3.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (676.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

fm_index-2.3.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (596.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

fm_index-2.3.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (539.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

fm_index-2.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (543.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fm_index-2.3.4-cp313-cp313-macosx_11_0_arm64.whl (492.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fm_index-2.3.4-cp313-cp313-macosx_10_12_x86_64.whl (508.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fm_index-2.3.4-cp312-cp312-win_amd64.whl (383.6 kB view details)

Uploaded CPython 3.12Windows x86-64

fm_index-2.3.4-cp312-cp312-musllinux_1_2_x86_64.whl (759.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fm_index-2.3.4-cp312-cp312-musllinux_1_2_i686.whl (798.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fm_index-2.3.4-cp312-cp312-musllinux_1_2_armv7l.whl (814.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

fm_index-2.3.4-cp312-cp312-musllinux_1_2_aarch64.whl (718.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fm_index-2.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (552.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fm_index-2.3.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (600.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

fm_index-2.3.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (677.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

fm_index-2.3.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (595.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

fm_index-2.3.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (539.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

fm_index-2.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (544.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fm_index-2.3.4-cp312-cp312-macosx_11_0_arm64.whl (491.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fm_index-2.3.4-cp312-cp312-macosx_10_12_x86_64.whl (509.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fm_index-2.3.4-cp311-cp311-win_amd64.whl (384.4 kB view details)

Uploaded CPython 3.11Windows x86-64

fm_index-2.3.4-cp311-cp311-musllinux_1_2_x86_64.whl (763.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fm_index-2.3.4-cp311-cp311-musllinux_1_2_i686.whl (801.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fm_index-2.3.4-cp311-cp311-musllinux_1_2_armv7l.whl (819.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

fm_index-2.3.4-cp311-cp311-musllinux_1_2_aarch64.whl (722.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fm_index-2.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (555.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fm_index-2.3.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (603.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

fm_index-2.3.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (680.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

fm_index-2.3.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (597.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

fm_index-2.3.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (544.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

fm_index-2.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (547.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fm_index-2.3.4-cp311-cp311-macosx_11_0_arm64.whl (495.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fm_index-2.3.4-cp311-cp311-macosx_10_12_x86_64.whl (511.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fm_index-2.3.4-cp310-cp310-win_amd64.whl (384.3 kB view details)

Uploaded CPython 3.10Windows x86-64

fm_index-2.3.4-cp310-cp310-musllinux_1_2_x86_64.whl (763.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fm_index-2.3.4-cp310-cp310-musllinux_1_2_i686.whl (801.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fm_index-2.3.4-cp310-cp310-musllinux_1_2_armv7l.whl (820.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

fm_index-2.3.4-cp310-cp310-musllinux_1_2_aarch64.whl (719.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fm_index-2.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (555.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fm_index-2.3.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (604.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

fm_index-2.3.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (678.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

fm_index-2.3.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (599.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

fm_index-2.3.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (545.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

fm_index-2.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (544.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fm_index-2.3.4-cp39-cp39-musllinux_1_2_x86_64.whl (765.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fm_index-2.3.4-cp39-cp39-musllinux_1_2_i686.whl (803.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

fm_index-2.3.4-cp39-cp39-musllinux_1_2_armv7l.whl (821.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

fm_index-2.3.4-cp39-cp39-musllinux_1_2_aarch64.whl (721.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fm_index-2.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (557.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fm_index-2.3.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (605.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

fm_index-2.3.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (679.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

fm_index-2.3.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (600.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

fm_index-2.3.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (546.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

fm_index-2.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (546.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: fm_index-2.3.4.tar.gz
  • Upload date:
  • Size: 57.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fm_index-2.3.4.tar.gz
Algorithm Hash digest
SHA256 5cc7ddbe20c98dc8c6040cc4a72e2a83da666f6aebcf75361b131b62e0850dfa
MD5 584f68c1b7c3fa696509422533da24bf
BLAKE2b-256 1a03d9d1f453062854f8d9bcf8ae019229c5c6af47fe4f076c81ec2f36bc824f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a51d2208351b37db40917b5506f02253a8348f2bb2d681cf26a5f9ea03ef68da
MD5 66a6d1e70d441e937eacc344a9118c01
BLAKE2b-256 f4bf4719feb78d29287cec16d2f0bfb75009c1a8b5ccce756a2f7817983e89c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce0ac58835ca96512cd5912744ac6d2d85c14386d60ec5fa03c9059cc3a2b6fc
MD5 145e04f35f237db8f67d96e7f0f28643
BLAKE2b-256 2d96fd68b8681b8f60f06c6f10ee99511cd258f720e863c1471d506626309ee8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f8bf8dcdae422267f1ce4eabf80c432097c907ccc454525b87546679ad2ab0c4
MD5 70003f1e2e062ea9c0458e7a2efa942a
BLAKE2b-256 ea628fce45204a7129a3d0da87fdfc2ff21a52dc8487bafef35de8af415669f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 142e63d17249420c2c9db48ca5bbaaa6c43d2c89a9a29b3a639f49056a983ddc
MD5 a43796dad0ab88f177a223acf717ef60
BLAKE2b-256 dc5c4de282c6e7c259534b51486c4b848c8c4c39387f01af6c8c2bd138cc0a1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74de43231549f2086098122404f5ce7983a707e3b4ceeef2bbfb6053fb3df082
MD5 025b6ac589f3ea4f42c8a352c5cf2749
BLAKE2b-256 7d7543ccf8d7825d2ba9537fe9cc58d28ed8139567609b7c97d34cddf1972660

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b655b9678c54512cdbcd74350263163ef857b8309e3cea8071073626cddd7198
MD5 165d1b112718eab8ad3e4423f1c47d11
BLAKE2b-256 b0e05cdeedff31e53d7951a2f4361127218a2f784ac5a37794ecd7cc64cffc7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f54f1c0b91ec749e2beb00291376b09f1bf39065b04344b713f23bd2c7045b66
MD5 f15db0bdbd24b9315ff12c4e7014ee37
BLAKE2b-256 9496298bdd73373906ade765fc629fb3f775407216c5fc975d020f449bcd5a99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0b0c796bdaaa42b0240ab208a24178cbc1c0da95eadb0b8bebf84471ed3bf8e5
MD5 5a42c88ad9ea988dc6dd03d300dc8a1d
BLAKE2b-256 8377e0adfd10ed39aaa236ce4ab36ac0b29788d65b72aed9120e3f84e1675207

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ed66f8ea734a9225eb8c6251852d3781eb63f64daa8ebd2eb32248275e21020b
MD5 b78b0feff494bdada1bfd8892dd156cc
BLAKE2b-256 5045bafb7f18e6aaa45aac74dfb83cbe09196199b010de41a247ec2d7674e922

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 acef28a5fb5cf947c8f5a7338c5c33e6cbe519a62d8d7eafe249ac4a9943362f
MD5 908fb4767cd0f92f2b72e5dcb8a7c8a8
BLAKE2b-256 f5b5492e8c4010112ffe33a08dd966fb55dc00d1764243ec0dfc5280abd8df27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d221a87d1c7310f764051960d360ab51524d0e64b3c9ae648a25637028de9d40
MD5 52a67c367ae98036e7e51448b76a7635
BLAKE2b-256 e9b9f00b7530ef0b07183798a6ac82b1f8a7ed4cc80fa68e85c08bcc1564cca0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0edd4f4012ed41f2bbf0e5a3e359cfe2ebb7e7937f11b048a5ceab3032288bc6
MD5 513a98d88ada2782737f638cb48fd065
BLAKE2b-256 f168c4ae6cd20ce98ef042e272f737795a791507429ff1441ef8e2efbdfc82d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 136071351bcd211c86a36982625abfe65beb0014d2b4816e51ff7bc6b12f1a27
MD5 455179368be002c6709da06eb1eeecf6
BLAKE2b-256 20aa90c902665e2cba2b9340386a82a1d415a893b2f3d87ae103f897f28b4213

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e43e4c925221f78e8f0cca5018be699ff229f86929367f0d183ba9fb5379a782
MD5 ec3ebc4da17308a25658b4bccab26a5c
BLAKE2b-256 aa318c1299cb0f243f1549b056324e0096d12ba140a87c06ac552a349da51310

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 21f416db42788c1de56108fcc8209b82bbaefb8b54f61401eea598b6091be8b3
MD5 8d02ba39cee962998c129682e376563c
BLAKE2b-256 97e4d15ecb16aaccf9aa371fbefa737305c0dfcd0888551d3522b039ef33fcf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c825d3d4d3bfc7804d33878a809f5634647a2ff38e1a58d99b403a8f7e01b231
MD5 bc0bbdfdea70f3b270d85f3e80eaee20
BLAKE2b-256 fe98ca4d72f7369bb1602c7bdb6ea5903b165d5e538348cbd4112af863da9c8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a1b0c903b0199ae8fe0f3517f7c703ed2ef848effcc5da9e292f8a8a5e1b9f1
MD5 b946280deee5dcb7265c0a5a80e97b06
BLAKE2b-256 198bf15c3c022db1995f565b47a04ae5996094c0bbe6e66a4a38fbb251cdc279

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22ca4d813933a25c6e6d9f30134d2240dff8c8a038a29a412c935b4b52c2442d
MD5 af44bf59c938201c245e50bcfee41982
BLAKE2b-256 9ba236dec3e14b117052386afc950c9d99cf9b9205af9a39bf0204f4ece66571

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fm_index-2.3.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 382.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fm_index-2.3.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3202846abb3c87165918ea1c7dd902ceb68222df30b365cb920342bb475a0e3c
MD5 5d0c83b11231049727a8b1ee71029520
BLAKE2b-256 a5ef15e7516176edba5be657ac29a75a002c9de1877c72e23422ac3760251ff4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fm_index-2.3.4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 348.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fm_index-2.3.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8a4c7f4d754c68e0ac3ee5eccd998952cdc8147eff935202bde66b71bd4bd8f3
MD5 b136324f7fd2ed0fbd5dc957967e9448
BLAKE2b-256 310a20dbdf27532330569bed37e52fb9afc10703dfc01a508b0b1139548b1ebe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7cd1f3a18e6b73684f56da7325b71d88af34cd991d8aa616369853bc3260035c
MD5 c1768242c8b180f11eea123726b8ed02
BLAKE2b-256 37eb6793cb628bb234777822dda9b609580195a0f01c5c98973ca69201cd65ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5b5282deaffcc968f19e7bee358d44482f563e89221389a14e9836fe8e9a097c
MD5 47e50e8b01b8a0cdf27981476ac94d07
BLAKE2b-256 3bff61b2e14c67973b25ce007f8e7c48a655cd9cfa1e648608b4ecef05197083

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 10620db232a3912cd15068c24b4894cef97862e2755bbb0edb803b31c691c40f
MD5 31ba3964e3d6dc8570bdd0e395f7e5f3
BLAKE2b-256 7be51836608d6a2f92858c7b7380be00b108000b206170e6359223b4efc640bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 439e5ccb814c1c42e17155547233bcf1f4a3fbc7887144d37b5b5665c6fc751e
MD5 3ecc318f1b9704fd184f8c5d99e77009
BLAKE2b-256 6c68a95c637bab0842c3bd728273f5f542bdb035f45634567e8ef9f835548a90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d19c31acef1141a6abba7a85a16e0664c596463988e0b636a63a06af69e850fd
MD5 5a4ad0db6892a5c14fc4a26fc5c25e4e
BLAKE2b-256 51e6de9fa914cb3bd714d48c8f51cbf3dfdf269ab441e44f0b17c61fa46cfcf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b3f5e9dd5e5b95e11802937ba2562c8ab1f4c1a45fb660ed4159543158d0b656
MD5 8ddcc2f52ac3525b815a6d7ebcaab86c
BLAKE2b-256 6ebbb18e5f2cd520758a7b86d66c6f6eb204620c563988c95ee4b912fbffb9e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3488556e3a623097e99aaa32a05afc698ec95b0f6c5c31b9c862aa4f079b2966
MD5 64eb5f49cecb9276505aca063be67f9c
BLAKE2b-256 9ec29eb6b071df0c1b139aed41af0861e807a5e42b511376decc6c9e8ce9fe20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b2eb7a660838a67ec48497c25db15042a1966ec1a4cc03eff36daddb71447821
MD5 c0c9db0dcead2acb53d13289936ab46b
BLAKE2b-256 fb7342785b8f69718c6d8be0af4d475bf33b227fb7f51920173330ae1b8ae7e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7c3b209ab680395ff1e07109bf2d9b9d46a23022270de5f3a3c4df8a5e4e87b1
MD5 e4f91cde213456f0836c37ada1294e62
BLAKE2b-256 720d8f88ae42080d9d1c88847bc2fb8daa31f17b212a67c8d7f8415f0db37f31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73dbb8a041dcedeccd9d4cf6d596b461257e8ad00507ee32f18156a7bff26e23
MD5 dee93dbd319110f5335fe1d14c7d7a0f
BLAKE2b-256 496966ae442615a2eb4a56d192c5fb9c33a5a02d26824a527e66d141193922ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fc4a1c4121c90301ff4192c0fa625921a6120d20aff47971f21780842032249
MD5 3057168a3a575068274b3e9924218e98
BLAKE2b-256 ae9e21af5c22d8845b0f8f6c0a38c11b11d1c2e27de42dae9fe89c83dcc870c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b84cac1148b44869c460c8f806f497366539d1b44bf129d9aadaab7c594f42c8
MD5 47f4a6238867fc206e9a16e52d2b21f9
BLAKE2b-256 52b4219534f24ab1b69a92f123bf1f120569d461fe0a4fe98cf7777c400b7f06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 041cbf12e2b9c77b692bfac8ed0712258b646103aeeb190bacfa9755299decb9
MD5 7dc5b35393469946cd8f53521bc4dfc2
BLAKE2b-256 c8cf321d3d5959ed808e917b034be32ab5e004cc2f7fb59acb3e8938df4452ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52aa5a2a892ec5eec70ca5013fc567988b9bb25b32cc78489427561c33a44982
MD5 aa1b057de482cf8fe0f8f74f3da9425f
BLAKE2b-256 f387d825709aefeb452a1df69442cc8c3d36a82679db487f50d09a0ae50474e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 756fb350123e20eb4cc83b0354320e8dfeade8333be6e83e819d1977bc3ddb1e
MD5 c61a9f6db101f3447d2461556f251c58
BLAKE2b-256 df0948523886f44410f8182c7a4cde5bbea9706dcc706de6ba15458f66b03ae8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd53df917a4a8f5d42f7de1f7d4ba3fb228d65aff94dd5563a60ce1bb810f24f
MD5 3ffa4aea62e77b8e7985b7ee7d881b60
BLAKE2b-256 3bc6efe8bdf572105ca84a86a9cc7c56dfa950046cccec970a09413735041ec4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f18d31920b45a9c0575b4ee4955998834b97b054630b7819dd0b031c55e6947f
MD5 8cec00d755cd2fff3469960d3e678b2d
BLAKE2b-256 73510b441cbe9e822c9a9042c64db59d12216b2e504720fa74eddc3cee947a36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 01ad43e77a66ba8aa3addc0a81e6bf6a79e4a7f1827f7c72831d09cf166c3fbc
MD5 83a077eda26d126fd53568c5b15f0d60
BLAKE2b-256 dc6e4b4ee1708aaa38b65d496e30a4b264556b211d75d26e3710912953d298a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 624b6ae571f675e3196135b8968d47264b7bbda13ff831815d6d72b4e1430447
MD5 f1d277bb6b9189b42074c9a7cb539bd6
BLAKE2b-256 c1c10fa9449efd183923da7e151c957cb3a68b129527fd778dc30d8cce42b2b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 542d34f548cdda8cb407e71fd9ea1bde155c801bc4bb9207c5fbd23154d8e7cf
MD5 e6a4b42aff48606d0bb2896c46658796
BLAKE2b-256 fecffda7779732542f15991f4ad8a80a2562246a699ccf25d487e189418f3fbd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fm_index-2.3.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 383.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fm_index-2.3.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 528d0487e5d555676ce08da79115a273db5875e084da4dd09abff5149f4b2085
MD5 a3254af20535b37e0953212c25252875
BLAKE2b-256 6ba140ae62181cf1addc8e1b7ef7829faac1ce9539d888bc737361fae3fee1a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0d8c5510b7e2a598df251e1dd834c7d8054600bfb39ddcb7d292953810ed1dc
MD5 30861dd3c2fe1b5b218c3017057f9ec2
BLAKE2b-256 c7b5d7e21a33024ced97cf2da6906935c881af6c6b9bba4ef7e245390cee6ed6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bf36b0edd9f9db84e21447b0fd1333d95d13668b9fae6663055cd61e57853e22
MD5 7399aad3265753d534c15fdf5a2dae51
BLAKE2b-256 0cb3645d4cf3caa0ec5be85df81489cc275ca29febf1b4566f315f1a37d960f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c8794fec62f9ac4a3fc11e0d30774423c87010ed0feb0ba59cb2083568836d88
MD5 e5b2b47259f00fa61158045f5bf5deee
BLAKE2b-256 b6d248d8f777c0d938656dead199bae0765f623aa6cf049ae7bfb79812865638

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd912733db0a0adc2210f654c865ea497e2461f68d4e466af9ab8438f0c36268
MD5 c97aec55040106b9e6410c5eabdc9846
BLAKE2b-256 06ac59252d7f994cef135dca1553a0040885bf2823d90f60b1a0c8cf93baadde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50880184b6ef3229af372433c420eefff65a932261a3e972fded2d392675cb18
MD5 75789ef1f6f05571965f9f48367c4719
BLAKE2b-256 763bb905a774869492c3e58252a40ccbf7010bf17cb7b3973c445367ea20952b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bb7760e6bd25cd5c84dbc1bbe0c70edde6fd8781ce24f474afb8be709b297ab9
MD5 f3c4c7ef63ace2ebf1f5fde09884e387
BLAKE2b-256 1b4d471a782ba54093cf8d5c0b3740930c8a90c63d6043df4b6117c7c1254d4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2ab59e4b0513e015ab3b357ebd0cff8e077f5e3c0b13004db00600202577f51f
MD5 7b50dbbcdf32f17bf3e3dbce62299160
BLAKE2b-256 54244745be49f6393083f62b7e222e234d5e7420d20133e5f84e5b78c62d3a3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d02becd66fb5f89bf066dc8d9205de9ee2046b0bb225b112efa6b66df522c95e
MD5 12348050d74570ec8130b061134d921d
BLAKE2b-256 5f34ea89bccde488e34c5bb311411e9cf8eb5f756bc9c90ff0e17167e2833f5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b9d6739e24443e9489581ee816c33f0f80bd873c50908ccbe644fe39b12d1115
MD5 7cfb5f3ffd56f913d0b7ff982570a6eb
BLAKE2b-256 78aaa5bc7a245d50ba16cf5e5d0639d2fd5a1ffd4474e0852d3d9ff146e4f92f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91459bd1d0502fb9d7360321e586989402ef23cd3451e028de4247f9165f84f6
MD5 7cd9ffe3fe5dd3e5daaf309e220471a9
BLAKE2b-256 ce349969e04330a67f21e197bdd07fb5d27719f5ad11ee0c9760fe094a9daf4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4654897ec594b82a43ff53f17f13683b299ac756621f72e7b99a3f809cab4d5e
MD5 09be67565d96ce62ada9f1179dec4f13
BLAKE2b-256 14466717a27d3f36736ea9be6992cbdadfcb249477f8f0b47a204a2522914803

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d503fe2e6923edef8fc77d144b47995ef44063bc56e01c9c142cb74cb9e08a7d
MD5 5b0e79e28579659ab2050dd675c3edf3
BLAKE2b-256 7cabfc185954c98385ef4acd092a170689b777b8f6666d989aa7379fd7428db8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fm_index-2.3.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 383.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fm_index-2.3.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 643fef4a4795836703089273eb21a2fb0d5dbfa2cc7244bf52f74698bd37e080
MD5 ed1c7058db714efcb337eef8d18753ea
BLAKE2b-256 497b9eec11625c83e35096148141b6215cd60f5493f866c1f32dfd3131f79442

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aaff871b348825a3ed1eee98351bec018cd7edacf70b86ed369076d033de404a
MD5 2e4ce8b7d701a48240010047a13596aa
BLAKE2b-256 3de93aae0118619c1770e6001b76e3bfa1a8dc329b3855cefa5c52056c8b883e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba879c154e7fcdea9bdbb4e7aad8ee1b3130de939ff799146ff2ff28bf0c61f4
MD5 917cda401868099ff658a64e9dc65e5c
BLAKE2b-256 96cfe8e9390e56e7fcc92aebba3d7b324a851cb899827a47cd153e8beb9e39d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5f6fda3294cc81ae4bab20d0617d05b6281aa5e2949fcf286fbb421c2e216d86
MD5 99ba67aed717f2aef5f5df9f31067876
BLAKE2b-256 dd45c1c4d46a94ac069519ecdbacec33674ea8380c6318938d724bff8f41c3db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d96c6ef0480c130e5918f00662f3e161bfa82bb9975ba911fc52cfc1b3cac5f
MD5 23afaa303d425b4fdd4f06956f9cb223
BLAKE2b-256 9ac7cfb3ad6aad06c59f7466b7e98344f54beda630fa454c6bd461654e9aaf81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e98610dfb63acd4d6e4dbcf05df5655e4d97dd93b50785d22f487af919b2331
MD5 2211b861532dd6cb36c0ca660a455afa
BLAKE2b-256 089f03e7239fabde2d153330073a37422c5e4fd97dc8142af864627112cd93d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 34b176e816b6a27d88d9906d99a30f54c41e4531bc887ef64f94d8313126d19b
MD5 246a980b6d857904b4d83ecd72d59361
BLAKE2b-256 917751409f246ad6fda3968c7a31a74ce2602846119c2ef42d44442b581d6fc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a2187c0b6ed438450e8a9dc42a5571c9c2299079009e369d9ed6efa2d952c17d
MD5 9c2bb5aa220fae333ff1ca8228d9785b
BLAKE2b-256 0b1052f2a34e33342eaffb909327065dba9d0f0e5e3a2e4b14762b730c7c8572

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bad93fc752780400af4bf34fb391e31d3443b50ba6fa3d1a5e7649fa8bf6b676
MD5 0ac75fb74974ad4f1237d85eee153c66
BLAKE2b-256 5df8453c1f1a42e8446aef7460dc98baa9910a49210796582265f49f67deaf3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bb7ea2a161033371ea600582d792e34b6c81f8f23667fece7115ae6c6af4946e
MD5 1d48bdde59ddb136872b3c5fe0dc07b5
BLAKE2b-256 ef835d9d279d8d15c49f855457a0526f559153add1686d1c3c44a9c707af77cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4096b9ff81275436343c7051dc8a3a5adeaba5b103a1ce255b6500b42c832547
MD5 5483c7558362ce6bc4cf71bd01204af5
BLAKE2b-256 80e44d6a44f1ed276f2bf7bf6055f84e49157511e8ebeae59eccbe6a46104e15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90424c279e2db9e30bbb76a287666e509cae49ece44e20cf9982f55b9517f510
MD5 b80590d41c764137bc0241011a060b1a
BLAKE2b-256 91cefdfd223704904eefbb956227dec4421311a83b2fb79938dcf607e26f51d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2634d5a9fe032c2a90403b1d5d5eca7e806242360d014b49694e09a40814212e
MD5 1049e37057546c7be5f8b8f08e9ba93a
BLAKE2b-256 8f674dd726ef4613a5796c16347b3e2a51a36dd52016104bf39cf018e09b5ca8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fm_index-2.3.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 384.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fm_index-2.3.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 53c74e9d2019c92e33a20f33242674a7e7e8cae4afaccfecf73a16637e27d219
MD5 6909662112b02201657d3ec9d4df9a21
BLAKE2b-256 149c8383901bc3e0c7e03f6c1ee6be2c3c5c512838e13be47c6b5a77d3188647

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43a615ab3ef20766cd60e81377da3449a9a6ee519638f1639ee096756bcc1865
MD5 7bce051db7b10aa073aaa7675ef199bd
BLAKE2b-256 6c8e0332e15ee98cead7c887f0333c6833b01e2dd33ca489d235024247a02416

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 94e4ff71e40bd1768c232076783643bcb91c377ff981686669b0b55fb873afd9
MD5 a05ffbd85194c457c87d5279d0e470fc
BLAKE2b-256 3a459535ca756ad3399720dc19bc6bcb5afeff09f91d14cb35212d9cc8466b5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b08c2c5fcfa881901d178e6a75eaa224cddeaa2800b293c20253e51cb8218863
MD5 cad94fe7ed774b278d2e5b91fe3104c6
BLAKE2b-256 64d80e11895cafd3359dd7c98dd7abce6f0d36fc08ccdcf1f237630e21478ede

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a6c5c0e4e1997218804cb6aa6a6d651138a1d1bbdac339c236c660442124c2d
MD5 c665ef08679821b875a5a3bcdceb7970
BLAKE2b-256 9e5ecf2812bd138e7f2cef79a535db564d7edaad39802f61fe766df003edaa1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1000144f1b3a05d619c9c9171dc8caec1e4c1d27d910986a6eacdd8c4cb8bdf
MD5 ad1f6186c96e05bb98d0086ccc675b24
BLAKE2b-256 c2bb732920d263c2343e20ab83c5ce7a5c108e99700c00cebadaeeccda1b749d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 efd3ff45a18213ff5d7fe4c91a82b64ed6fef1a35532297b3a5eb62a16f76667
MD5 cb93a8845ba0989ba10912f356af7674
BLAKE2b-256 ea74b4aad0d91f69d4fc1700dda6e0b4f0d8dbba20ca7913722650d55230ead0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ac62644358029d77af0434713cd1acb1e720390427949a9e937a3283730e046
MD5 25199ca497ab920f23d38e7c3ca53456
BLAKE2b-256 3e2b2c50647af304a04564b962446d440c5eb0ca2ba2d2faca59ec91c1881dc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 247bd80afe028ed8632def8a1b7ca27d2749fd70f09d96de21449eced2cd3a87
MD5 7afd8bf2143b5834a5a74421e7004f88
BLAKE2b-256 907c008a99fca9c46daaaa34da780571e26a987d890a0238a082306b60da2163

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 181cb0958adf8d5587df2ec52eeba308dc8100d49afe9eda18f2bda63cbcd9d2
MD5 29014eb04d317866e61e534faa4a8d0a
BLAKE2b-256 0536e2f34deddeb98b53625cde6e595045d415ebce8b9215de5017dcf7eff60b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb5cc01fa4172aaa219c817009eb5f7f9f9d68aea6e23b91a019ad8b397f599a
MD5 f20d15f4f2ce53ba2f256fba79304d00
BLAKE2b-256 434dfec93a8f9645ef0c14f0b75a665fcb79af9d2472937540939cd02e36bb05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 844760ab5d47bed7613544d57dd030f3721d1f2aa53fe0769803b03d5052ffab
MD5 1e3c98d5c9ab2650198923b79cfff6c0
BLAKE2b-256 db2ce2ded429afe89a10dda7a48e295ccddb7044f972cd5a16500798abbae409

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7aebfd0763dfd19dfc510ed169138dd7ef902024926d4a93e52561e5c122a1ea
MD5 d696062be9533d3d1ec983a1987e5b4e
BLAKE2b-256 689fb02025609dc968a611cbf4017824c1cb3d0ee294a7f519f776d74d2dc5c8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fm_index-2.3.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 384.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fm_index-2.3.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f0414bd6f4dc13d259c5c1bcdd8fd315ecdee95f1e5515807a363451a152ddb2
MD5 5f31ea80aa4b34b8b83341830e6bbd04
BLAKE2b-256 a0b11189cf837f115f8ca0019d0b3783e590fa51a250a3d7dd5cbc0c01066325

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dbb55c7dc3ea60b9e48c1860b92af7b81ab98c5c45a0659f8c55e768ba1c02f1
MD5 dba4c63a84b08d9a8b3642c10b334e2a
BLAKE2b-256 873369cabf272025034fab775eb4bdf4e353c72e46a20771d712e6c6dd6935f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e437df8f042a7e1d22e00ffef40d96a06ab2a12277c741a2a9c53320312aac7e
MD5 198b21ce2daaf5f34d75cb5b62e28cda
BLAKE2b-256 421e28dcc46d4b555638f4d3c0b78adc12544349cf0d20d805572e5820409893

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b3fd1a760c20a39b59d7095751124d8a81b8216de8939c83e892b6f49e872f9f
MD5 c944c4b3131e7f90b0cdb3b185677298
BLAKE2b-256 2460c696985092c54157a1fd8cc502b643326b170a74cb65fa4cbaed20b1e4f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c25ccb27101bb9094cd537e14e0f36f883a31afae43a25e2e7d522484d636ed
MD5 795c52cb508c19b5e412925001917b70
BLAKE2b-256 9f6b74bfdc7f2760bf7fd1448592c1c20bc08fb4adb325ccb5242dd1218028c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6da74abe16d77587a22112408fd5b399628a47e78a2987b4a2ef257f7f763e4e
MD5 7e8e340714874cd256e8f752b7227f6f
BLAKE2b-256 aa7d8a62eb34813569b45daf6d4e3d1631d0a1b9237ac705888ec394b7da0a72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97f85485a1851b3400b9c5d531d60b2502c8abdf9300481b6a17b25a904f6932
MD5 36eac5aadbf7f1b8203e88d38673b898
BLAKE2b-256 4f65b9e506d367c961489d8a8a2ffe61ddf2facf0ae9f7e424d36e1746e2cf07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd32d1cf078fe21d5a80c4a66bc3277f9befd723668845984d30a8f046db3097
MD5 f645bff042a87a12be811ce62f613888
BLAKE2b-256 93b4d0622c1241c8df90702a77e0d20fba4a0e872b53c6058866e162bd6a3671

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a03f2bb355f17b8b5b56ed9a64e4d0e5708ff5d680d0e77b03fd7327fd9e05bd
MD5 b256ca84710bf34ff425dc2f47dcb2f1
BLAKE2b-256 f99d533464e6703782ac75d6554808eed17ac27b85cd7ea86fe499537ade26ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e0643825e1c0cdc614b508ad2063c06ac298882ac136903e8c6b1f767dc7fd15
MD5 2ca07f691ff6cb8cd50aa51a81da0b4c
BLAKE2b-256 08d0087c59175f8f62d8a3e249d08796414bfbc4e6627e4ced8dad9abdb1350d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a0aea87c7e4b10b7db342c473b8b6849e380c70250f720545eb1bba7e35aa70
MD5 56810ff85ee13c8bee1697eefb57e920
BLAKE2b-256 604587f7f050e53df977cc8f19ac6aa15cc9b1753c5e826ad6e755b6c4c51749

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5abe81c7e74ba0ec848d27c2175c8e96b9869a7df2320c59b643ed3232100b7e
MD5 96c3f47faa693a18a82ddf4a8c5630da
BLAKE2b-256 53b9c51120a835a1df3311fd7312bd2c54107abd92aa3ded45b804538643e52a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 80c6756a9dd489ad7c5528fac7f5fe8a29d5cad9919b9cbd4d97ff4251331e37
MD5 e9c7e87b8688e60f7b5a48c0bfc2b91c
BLAKE2b-256 15807173a20cbbb0213228f3fd48c0f9ede1cdbeb4ef6aab9aba5347dd6b646b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 73a2eb1f5700b9079d175fa0e3ec91d10a6e9604aaac44d6fbe12731ded86779
MD5 30d810cf476b79791fc74fbf1d195d48
BLAKE2b-256 ac2a2741ce70e2222adeab9058d6ece6fc8000ec8f214430cc26252057d18e14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dfe05a63a847e8a8947c25b29e9485c805ec610a0a955c6fb8e05814c4977291
MD5 eba2748d52e53df6fb205029d48975e0
BLAKE2b-256 e86cc0d5fba8fd117421d7101f35378130a5591e61698c66f3a083feac118ff3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d962fd1c8581bd90040131b73f134542abab57fabc5182e162066bca755d3df
MD5 f296a54f891d704d138b3ccbf90f082f
BLAKE2b-256 298893c4250d68552864e63d43b5746269b14e8583b25e15062a0aeb63888576

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 10b5f4497eff470cf84b07375d10d02399cb7daab90a7f9e746cd8155f60a3bb
MD5 359a9cac2b8188b87df70b78f6b00593
BLAKE2b-256 c3a45b97737074f4827d7d3919f0e5e76ad810d109d62a70235268bb021b83a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a196750f0e0d62a89cdeff029015ffa09e58dd14d926a31cf621c190de0937b
MD5 d6560b62d1a0b74e7177ef71073012b1
BLAKE2b-256 d8539e93b00c25f640d39a560c18b3519a709d1571d057aa6e5dd93f519f3c73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b1a9308516b8af1e32551f828427d9b9a660baae197a6b029e456cd5ff6d0d7
MD5 4fcbd8237a9f7af5dee032536c5e127a
BLAKE2b-256 70ec13dc5ede1d0501a940af4250bc7792e9a775746f3657eafc2427c3ac75e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 71c4ba15a8c37802cfb49f6349edf799da30a4dc1cd5f4d4d84b00d0d457ae99
MD5 248bdb0308f84e2efb8056c3f94aa952
BLAKE2b-256 939a495aa8f0425d2057b13e1f4ec88b8d93f3d1ee59182de125f54d66b9504a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fm_index-2.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e18557e3d5e797af30c88c4ebdad7db24cf6d21174e4e25b9011f3c41625b81
MD5 34ca3dc23581ecb7ead3de32e4885718
BLAKE2b-256 9c903a5a124ce334c92b006b29cdf2a30a07a04ff086c15b3ca053bdff5f1813

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_index-2.3.4-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 Pingdom Monitoring Sentry Error logging StatusPage Status page