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

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

Features:

  • Fast count / locate substring queries
  • Supports single text and multiple documents

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| log σ)
  • σ = alphabet size (e.g. 2⁸ for UCS-1, 2¹⁶ for UCS-2).

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.

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

MultiFMIndex (Multiple Documents)

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

Construction Complexity

  • Time / Space: O(|''.join(data)| log σ)
  • σ = alphabet size (e.g. 2⁸ for UCS-1, 2¹⁶ for UCS-2).
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}

Locate Per Document

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

Prefix / Suffix Search

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

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 \
      --no-show-source \
      --docformat markdown \
      --footer-text "© 2026 Koki Watanabe"

References

  • P. Ferragina and G. Manzini,
    Opportunistic data structures with applications,
    Proceedings 41st Annual Symposium on Foundations of Computer Science, Redondo Beach, CA, USA, 2000, pp. 390-398, https://doi.org/10.1109/SFCS.2000.892127.

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-1.0.1.tar.gz (39.3 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-1.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl (597.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

fm_index-1.0.1-cp314-cp314t-musllinux_1_2_i686.whl (637.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

fm_index-1.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl (660.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

fm_index-1.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl (561.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

fm_index-1.0.1-cp314-cp314-win_amd64.whl (236.3 kB view details)

Uploaded CPython 3.14Windows x86-64

fm_index-1.0.1-cp314-cp314-win32.whl (228.2 kB view details)

Uploaded CPython 3.14Windows x86

fm_index-1.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (596.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fm_index-1.0.1-cp314-cp314-musllinux_1_2_i686.whl (637.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

fm_index-1.0.1-cp314-cp314-musllinux_1_2_armv7l.whl (660.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

fm_index-1.0.1-cp314-cp314-musllinux_1_2_aarch64.whl (562.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fm_index-1.0.1-cp314-cp314-manylinux_2_24_x86_64.whl (392.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64

fm_index-1.0.1-cp314-cp314-manylinux_2_24_s390x.whl (416.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ s390x

fm_index-1.0.1-cp314-cp314-manylinux_2_24_ppc64le.whl (529.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ppc64le

fm_index-1.0.1-cp314-cp314-manylinux_2_24_i686.whl (429.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ i686

fm_index-1.0.1-cp314-cp314-manylinux_2_24_armv7l.whl (390.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARMv7l

fm_index-1.0.1-cp314-cp314-manylinux_2_24_aarch64.whl (380.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64

fm_index-1.0.1-cp314-cp314-macosx_11_0_arm64.whl (347.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fm_index-1.0.1-cp314-cp314-macosx_10_12_x86_64.whl (363.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fm_index-1.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl (596.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

fm_index-1.0.1-cp313-cp313t-musllinux_1_2_i686.whl (636.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

fm_index-1.0.1-cp313-cp313t-musllinux_1_2_armv7l.whl (659.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

fm_index-1.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl (560.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

fm_index-1.0.1-cp313-cp313-win_amd64.whl (237.1 kB view details)

Uploaded CPython 3.13Windows x86-64

fm_index-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (597.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fm_index-1.0.1-cp313-cp313-musllinux_1_2_i686.whl (636.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

fm_index-1.0.1-cp313-cp313-musllinux_1_2_armv7l.whl (659.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

fm_index-1.0.1-cp313-cp313-musllinux_1_2_aarch64.whl (560.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fm_index-1.0.1-cp313-cp313-manylinux_2_24_x86_64.whl (393.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64

fm_index-1.0.1-cp313-cp313-manylinux_2_24_s390x.whl (416.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ s390x

fm_index-1.0.1-cp313-cp313-manylinux_2_24_ppc64le.whl (533.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ppc64le

fm_index-1.0.1-cp313-cp313-manylinux_2_24_i686.whl (429.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ i686

fm_index-1.0.1-cp313-cp313-manylinux_2_24_armv7l.whl (389.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARMv7l

fm_index-1.0.1-cp313-cp313-manylinux_2_24_aarch64.whl (379.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64

fm_index-1.0.1-cp313-cp313-macosx_11_0_arm64.whl (346.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fm_index-1.0.1-cp313-cp313-macosx_10_12_x86_64.whl (363.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fm_index-1.0.1-cp312-cp312-win_amd64.whl (237.1 kB view details)

Uploaded CPython 3.12Windows x86-64

fm_index-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (597.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fm_index-1.0.1-cp312-cp312-musllinux_1_2_i686.whl (638.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fm_index-1.0.1-cp312-cp312-musllinux_1_2_armv7l.whl (661.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

fm_index-1.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (561.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fm_index-1.0.1-cp312-cp312-manylinux_2_24_x86_64.whl (393.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64

fm_index-1.0.1-cp312-cp312-manylinux_2_24_s390x.whl (417.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ s390x

fm_index-1.0.1-cp312-cp312-manylinux_2_24_ppc64le.whl (533.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ppc64le

fm_index-1.0.1-cp312-cp312-manylinux_2_24_i686.whl (430.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ i686

fm_index-1.0.1-cp312-cp312-manylinux_2_24_armv7l.whl (390.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARMv7l

fm_index-1.0.1-cp312-cp312-manylinux_2_24_aarch64.whl (379.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64

fm_index-1.0.1-cp312-cp312-macosx_11_0_arm64.whl (346.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fm_index-1.0.1-cp312-cp312-macosx_10_12_x86_64.whl (363.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fm_index-1.0.1-cp311-cp311-win_amd64.whl (237.9 kB view details)

Uploaded CPython 3.11Windows x86-64

fm_index-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (599.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fm_index-1.0.1-cp311-cp311-musllinux_1_2_i686.whl (641.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fm_index-1.0.1-cp311-cp311-musllinux_1_2_armv7l.whl (662.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

fm_index-1.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (564.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fm_index-1.0.1-cp311-cp311-manylinux_2_24_x86_64.whl (395.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64

fm_index-1.0.1-cp311-cp311-manylinux_2_24_s390x.whl (419.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

fm_index-1.0.1-cp311-cp311-manylinux_2_24_ppc64le.whl (536.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

fm_index-1.0.1-cp311-cp311-manylinux_2_24_i686.whl (434.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ i686

fm_index-1.0.1-cp311-cp311-manylinux_2_24_armv7l.whl (391.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

fm_index-1.0.1-cp311-cp311-manylinux_2_24_aarch64.whl (382.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64

fm_index-1.0.1-cp311-cp311-macosx_11_0_arm64.whl (350.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fm_index-1.0.1-cp311-cp311-macosx_10_12_x86_64.whl (365.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fm_index-1.0.1-cp310-cp310-win_amd64.whl (238.0 kB view details)

Uploaded CPython 3.10Windows x86-64

fm_index-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (599.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fm_index-1.0.1-cp310-cp310-musllinux_1_2_i686.whl (641.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fm_index-1.0.1-cp310-cp310-musllinux_1_2_armv7l.whl (662.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

fm_index-1.0.1-cp310-cp310-musllinux_1_2_aarch64.whl (564.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fm_index-1.0.1-cp310-cp310-manylinux_2_24_x86_64.whl (395.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64

fm_index-1.0.1-cp310-cp310-manylinux_2_24_s390x.whl (419.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

fm_index-1.0.1-cp310-cp310-manylinux_2_24_ppc64le.whl (536.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

fm_index-1.0.1-cp310-cp310-manylinux_2_24_i686.whl (434.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ i686

fm_index-1.0.1-cp310-cp310-manylinux_2_24_armv7l.whl (391.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

fm_index-1.0.1-cp310-cp310-manylinux_2_24_aarch64.whl (382.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64

fm_index-1.0.1-cp39-cp39-win_amd64.whl (239.4 kB view details)

Uploaded CPython 3.9Windows x86-64

fm_index-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (601.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fm_index-1.0.1-cp39-cp39-musllinux_1_2_i686.whl (643.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

fm_index-1.0.1-cp39-cp39-musllinux_1_2_armv7l.whl (663.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

fm_index-1.0.1-cp39-cp39-musllinux_1_2_aarch64.whl (566.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

fm_index-1.0.1-cp39-cp39-manylinux_2_24_x86_64.whl (396.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64

fm_index-1.0.1-cp39-cp39-manylinux_2_24_s390x.whl (421.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

fm_index-1.0.1-cp39-cp39-manylinux_2_24_ppc64le.whl (537.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

fm_index-1.0.1-cp39-cp39-manylinux_2_24_i686.whl (435.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ i686

fm_index-1.0.1-cp39-cp39-manylinux_2_24_armv7l.whl (393.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

fm_index-1.0.1-cp39-cp39-manylinux_2_24_aarch64.whl (384.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64

File details

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

File metadata

  • Download URL: fm_index-1.0.1.tar.gz
  • Upload date:
  • Size: 39.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.4

File hashes

Hashes for fm_index-1.0.1.tar.gz
Algorithm Hash digest
SHA256 86deaef014de3ba4943bb15c785d72367cd59d292b59af8f533b8a8cc417c540
MD5 73070c995f3082706893ce8229ed0180
BLAKE2b-256 bb4fd611d456eb1ed3e5012c09ac68872785b9120d9e31feedf1cbbd1b5c927a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c888e4e95eb79730af185dd2aad7340fa5afc57f0b28b36bc04fc7db94ad50d
MD5 9621e18772059b95c6b56d235a274a55
BLAKE2b-256 99de177890430a4e73a8f9cf15cf6be2f9d10af8de77a0b22084a2cfd820d2a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7096197b6e8b4d8c9d1f9f863a11255448683c30fbe0bc8d2dc88e6b97dbf81d
MD5 853e47004b54d3e3da6c074afa9a62d1
BLAKE2b-256 5457a7c98c4485f12ba89ee83ab08c02228d24af5d359101f28f93d98bbae44e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7a29fe4f6b8a906d90fc255cb61d48d3d0d97f4db51a4e59a673085173678d48
MD5 6d0f4f4ed146ea6e1f791ce142d6fd5d
BLAKE2b-256 28cecf9c0605c58a7d5051d95fb69425d76662123d1e23043ac53e9e7989cf79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18f036618ec62226c0ac1fd7d232912ee75a6a6ea41511f45e580435f899212b
MD5 9cb9a1240a14d8b56915453b384fcb17
BLAKE2b-256 91d7e99667504443bf956caf9564b44412afc24b788250f08250b605df2bc4bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e9db9d608f935be1ee8cdec3a73c436fca5db071f30cdd2893518b6bb5bad3fb
MD5 a04c6811768f86f46e3b986cfc578b8c
BLAKE2b-256 a2cc8f5ff91a0319d550ad194c2d69439097276cc10b1391bd004ef4534050a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fm_index-1.0.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 228.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.4

File hashes

Hashes for fm_index-1.0.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 4119cea4a6a3525d51e2daea2b600b8aad023f5ff1488d2068ecdda98d4c41fd
MD5 b8d539447cf25633c85240a638e06e50
BLAKE2b-256 eda4cf6ca5a4fceeb30591bad4e4345a658efce250c4139512b7a9eac5c83361

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6cd4bc70101ce9b5e8c3015e2fd0a28dcd36ae36628c4087185f6b1c2473ff3b
MD5 bbfb69a56303b356ebabf3b379576815
BLAKE2b-256 4fb4cb1994fd61fc23844110fc2d806f9bca5ab45e6b73b8e3eebe9be352c9eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fcb8a9199eba64d48329281db5b1e51f6661d2c8cb7ee05f897ca2d96372aa68
MD5 61ced1737af5ea3f7dc110576ace2c77
BLAKE2b-256 a3450a69c59cf56d4e32ee4bf0941a6566bfd6558d8767da4fce9f0942e64473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1127722254bbc0a89d8f9ea8fa46154623bae4b3f8cf11ed31e2c6981169ba91
MD5 b8e2cdf5d221e862a21f9b0523827852
BLAKE2b-256 685a828a3f216149105da761e0ccf75dc18bd46e47a7e660f8f077107ab17380

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bbd3246e200aa8f6d28d49eede68a975ca99f2beae18e3e31f5b7135686b8820
MD5 d9026cb86bde1f253a59171f1769535b
BLAKE2b-256 7cfe0af48a514ca7efa881ad09e9ccb518a65d0ba744dd7cea61188bfeff9b42

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp314-cp314-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp314-cp314-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 8efbfd12468ec5181abd45d70723aa5c3801c159725eeee56642474bb9c01e33
MD5 0557d47090f3907bca1d59a661e6eff7
BLAKE2b-256 08b143639914bb27e1f0071edf826e1843d90eb63a46cf0ae8f638cb2eea4b6d

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp314-cp314-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp314-cp314-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 3f2f6c63686a281e1fc24bace38f6d712147602b1bf8db93fbb45f0f9386ebbd
MD5 f6aee88ecc8a4781c5d06cab03a31406
BLAKE2b-256 c3a29dbe43b0406269f2aa39d3ada8ccf845d641540a4bf42483809178cb9119

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp314-cp314-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp314-cp314-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 1eaa31c4231e13ccf4cc02666dfc7ce4f09a84c7cb28b303650722fbf381f7c2
MD5 1ef70a5fc23235c58c1787943cf3f683
BLAKE2b-256 8134134e5727621447c3ba7f43756bb5e8c9853ee95b08be5969ba75ab690129

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp314-cp314-manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp314-cp314-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 9a9f34b59cef7bcec8413152a6eb2e5e7bbd0be71f220ade1cbcf49c51dcf096
MD5 06276dbc16d347aee076dc8d236ca94f
BLAKE2b-256 da2199bb3b159897ea705182dbf1f0f61a6a97c60a6a411b83f4e23b1d643d58

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp314-cp314-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp314-cp314-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 67fdc76e39e1d98363e93ee03ae796e8698e7a759ca7196e6db1a8426d7df7a4
MD5 42d1c552d868158b47c948b7f6547090
BLAKE2b-256 fcc93bee8276202527e9cd2dc53d3a55db452277746141cd8e3a2fb49308b401

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp314-cp314-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp314-cp314-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 fd2c6f7336c875cdc3f5f1068150743438acfa68d631280402ce70849f8683fc
MD5 2a97df556e16a53b7754bf82f389e851
BLAKE2b-256 0fc2bc86d1cf6cc95000ca2373ea538f8c847adf0c21cb81b75960b20a3f9967

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79c6b14ea2f733640111ae8674965315aaae6421e05e3a66c01597caf03a0a49
MD5 b0ade8971621d34c837caacbf2c854ac
BLAKE2b-256 d2a47389121c665747822b2405ccb116bc3571630b65be90a0b9a9104c235de9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9fe2c9f839ad382c53702ee2fd82ddfe1d5c01632d4219eb851fd67ccfd37341
MD5 3c19b03e810704a3f9cda12ccdadb124
BLAKE2b-256 875f154fdef8a9eaab8b3be1357307f258ea19bc37302942ccde831d3cc3918d

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbcdad46ff2894e567ee89d806b48a1aef3ad2830721a9add1e63481f6e0af4c
MD5 ce89581134f63deb8836789654d68240
BLAKE2b-256 e1a4f2108e9076793c8c7e151474110046a7deeeb66ca1e4b0212b89566351d3

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c024ef1fb32a5ae82a1a780bdbcf0929f9684283dcbe1f5cee4f85b91e60c71b
MD5 060b6ae0d50a553a86ff8a9306d68ade
BLAKE2b-256 a16bd57deeb494d1ff416dee5db01b22b253a82d84a5e14274ebecee5c8543c0

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 81c180d59926a7336f0adda094d56c53f60f7fa6157b0292ad1e6ca213a52294
MD5 24e34aad705ef86a7eed0d73eac6eada
BLAKE2b-256 9be023647e438286bff70b12133c2704bcc76b6b930cf270d3bcb63a103f0334

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe99154de65f905baf5bbf7944303730b9479ccfa834c596d26e3ea7fcc0347a
MD5 5accfaf9060f8d5ffe5af8270ed42ac3
BLAKE2b-256 1ff4ab4f42b76031b71d63e29b194e76a90cf6bb856cb55f97a98f2916b082f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6fb0a56fba24948d09293a98362f5ec241da1e276cf803e970e35cf6cb844412
MD5 b86cf16a1c36f4ea88d41f791c94a18e
BLAKE2b-256 4036ee2407a120d98607d71bbef29735628678b62e3ac74c2f5372d2d5270493

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0dae65c54461318a6d1c3a46f3c4224fa02dba234df475640c35d7f200a21af4
MD5 206ae5bbb739f305f05ec5680998c8d4
BLAKE2b-256 d552db3185a692789b3f92866f559b387d64b8ce3331704e265e4dd2569b6935

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a1859aed524cbd37f185e53274a924740498ce725b96926fbf72530ed73d7698
MD5 aad5f61b8859c05e4ec846a34c3172ad
BLAKE2b-256 30de460b4e17e07da662136a1d80684fa091dbf474e6380f50ddd7d6cede340a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 83b7bd1d5d5c7f00a6a7fc0c3f558c85131bfcef63c572bc8300caf19506a9c1
MD5 d1b21bc06f72b7d4fe0072ecc276f848
BLAKE2b-256 c42d20e2b17182849b90c5a9047063454ac62c8d105e785414ee85412b2a9af3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 169113ef1bdb2a236e31b17272b987e8515a274fe125aa3719ab40f6c1b68450
MD5 992f0bd2cc45bbeadfa948f0c430a798
BLAKE2b-256 077defa8ffc85c5d14d22a2bdf888fb902e52e3323d83336d85666118dd8b1d0

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp313-cp313-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp313-cp313-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 ad940b529f50923c9b101ea85aa0a3921342ee807cfa76296f2e093143f4da8c
MD5 ab650eceb210408fb556126870c13443
BLAKE2b-256 6225a59aa03c228274174a3491285d219a4f638f31033fb9f0b5baf0daccf817

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp313-cp313-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp313-cp313-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 f8fc4d81958a7b620aa7fa9cd47bbc4e07875bff2663e582926be422c7514efc
MD5 985b077c8aaa7860894f5c0ca966a000
BLAKE2b-256 9d2dba4fbad4162cfeccec558592150a98f086dede9b68d39ea45e2db564b98e

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp313-cp313-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp313-cp313-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 920f3aa564293195777465b84681009f45df4afb5264fd55672c8679d8403fb7
MD5 34a79ebe42253b67d1a40fb15378f585
BLAKE2b-256 6accd892410ca4e9324edacff304350f6962fad723a3987fc86d9c01b276ab3e

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp313-cp313-manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp313-cp313-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 0f6dac8502824e56e2cc3988423e9c92c69092e05f1da7220b1404532089fba7
MD5 e6467cf5ef1fa6f0d68d556af69209ba
BLAKE2b-256 576678cba90088af5bde3d50e223f737f30afc56624466c682317468475ea748

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp313-cp313-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp313-cp313-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 8227152f1b92947aee519e7f7cb463e8ce64a439d1547f68c7c797f03f90fde3
MD5 0db4504090e318701e8cdceeb57e9faa
BLAKE2b-256 2e1156f4148d72810bca99724a324c509e4bab76300c80d767af98f7daf73084

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp313-cp313-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp313-cp313-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 335c5017ecba0c51feb2d1e760a068296f5bc8ed3663561f3340a4c728f43e9a
MD5 9a6ecf6e1c9a5d00cb87dcd2f16d05bf
BLAKE2b-256 521fb7f15c5b38f2bfd3f2ffb561f6c8afa3fa90ecf073fc73746f6293d6120b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 901986cda8a5b4e0bf6ba7038c00b0513fa7809ca3aa9f2a849c3346ab201b00
MD5 3217e343e282bd36c6df6a4327155340
BLAKE2b-256 a9bd80d83e78c10a151a7e2b7286f072025d073c14e27a8a04920868f1a34d3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 23233b6556da6f5a7cfce7d18dc253a2165f9190ff160c94cf3877ee340b72ce
MD5 8c43ccca8ccb20e51843ca808a503ea8
BLAKE2b-256 2f8d9ff11818856d4242085274d035cf5b26cf87bc6dd2898836f51e8fed0329

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dba9fe3d548d0406a6762c1c18dd800e7da1c3b66a25e14f708b093b0ea794ef
MD5 588a4767aaa2b386b268a64fb8626c32
BLAKE2b-256 7107adfa0db8f4459f6088397732b27a965e5b02c859123bd93b3ca89bee099e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4075cc8e4a93873b50108cf7dbd3f7842d29d0689b39a9d8ee505e478edf57b2
MD5 db1809914743f371a2daf246d36ab078
BLAKE2b-256 653557edbc16a0d9e85c1669c715f6e806edef6202dfad6f5762b732c4a3d42e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de65228046ecbb84bfc2e1399ff9b5606e9011b5e0d966d1305ae1e7641c46bd
MD5 1de9765dd4b6b497be0335e03ccbcfb3
BLAKE2b-256 e7a69d1e7bc4a6a00e53d41b6dadb6b16865684d6ae4033093e529e80ccbc73d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5173da233e4ea6220a6bd74f93aefe6c411a2a31b3eb97fdf5b49506ecdf3a1a
MD5 95d326b5e8aea154cfcbd45d061c70fb
BLAKE2b-256 1cdfcf78bbcc4b97602aff95e9bfb443039e343cf736a680f99d4b8ae3b98f33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03a46c925225173173db783f9c0ad70cd2b3f1619fbd1832e049418df49c6248
MD5 37ad051d74e561fba135a9e91cb98f1a
BLAKE2b-256 2edbc9ac5ae9c39b7bbcc5087b19d7742d04d1a9a88a0b657bebad5418e99acc

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp312-cp312-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp312-cp312-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 64cd976aaf8bbb6d865a445046aee74bce3236257c13f2a167e626ec5558fbd3
MD5 890b0517a2da34f080e16db7f164bb1d
BLAKE2b-256 5627e436341f2a286f64447b3f83f7083604eaa84ea73777bf4459d7662bc548

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp312-cp312-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp312-cp312-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 b6b34634d95d200c82f4a15806a87ede783cbd01ab09164c12228a3799841256
MD5 9648ac22eb62b6d34e681494926ff333
BLAKE2b-256 9eab3fcf684a9212d1eb73fd0652235cacbb5697cb96c0bb82ef3ff7930cc3d8

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp312-cp312-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp312-cp312-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 0dc98ac42331c0deee47b19619ffbabfa0d519961c32b9bbc3a0317996754f33
MD5 81f2f921ce4f7abc79e4ce6686913f29
BLAKE2b-256 2e95ba92154d10d09a4064a315044420b2ebc0e6ad2eddc57322d6c756e903c1

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp312-cp312-manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp312-cp312-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 6bc0f2ce0aa8341616ce727ec6d67af92573e4500e2847255bbb5e4553413199
MD5 7c721ba3fab0e79cb4c14eb5805bc61f
BLAKE2b-256 03fdbcab78686d0d83d4020aeb7b12bdd2abd8b5b20d33ed29904f76c2583f32

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp312-cp312-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp312-cp312-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 1df8918232a4e6e3b674cc111bbbec74f7c72c4f90b27e7baaa2e0857dd019f4
MD5 5197b50dd68d71974ae2b03425fb3e92
BLAKE2b-256 57a77f80c03ad5a5ea50f37334d3835506e40d55a8236e96e634fe82ab4da033

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp312-cp312-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp312-cp312-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 cfcc2819b371993ecd3e5fa5499650dd31a21b4204cbbef61b44cebb2d4fcb67
MD5 7ac462dab842e1e94c60d7b6b0b990a2
BLAKE2b-256 4d471605ad1fb3fd93b4f8d99728115888cb7f330cd2b0ba95c13af0a7744993

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b244f40d961f9bbd5da446f0874ba8177d81d6a4fd3dea202d3594c371fd2d1
MD5 b0fcab33a3bafdb2357ba804cd279ef5
BLAKE2b-256 d32746ce3ff1913b56da551cb914468f0abafb00c87603742fb21cba98f67703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c03ffa25e5b01693153d892a9541730a27065a2bb43d65a8f40531697f8eefe2
MD5 b305895f1c05d81a8f60f2ee2c8d4ba5
BLAKE2b-256 a1f5660f5dc3d3aababd093c7e141fd7878b0629516d6065eb4d82152b9ed31e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c20e3e204481eedb2815836a0c9f33d0303c617964a87d8a58f8888a69f652a8
MD5 e8937e6b15d1438432718aca2ec725d9
BLAKE2b-256 8d956bf60bf38706394c7a2f5fe0c7ee1c4c5c84ed4ab961258c2289d1a2c869

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9ae219e2a43f7cb77bc433bcbdc2b97c2b48ff88c4eb4af964577660b44d449
MD5 785c3c76143f9c6a6a6dc1235069030c
BLAKE2b-256 80cfa765f7db39b8dc4cf06e83abe1e9a8c203a05bd6c196e159e0fac392d8de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b04780c604370fbb2707f418f2f78d42c10006db3c1978cba79faa1cbca56ae2
MD5 229e96a0b259e10a3296df447544d5be
BLAKE2b-256 988c99d0398c148cc6df00c2210983863486c23c05beb8c8ecf759695863eeb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a75b95a303de83075120613bac14f998c7483699509a9c7bd250d86ca9ea6364
MD5 d6bf2d6572836aec7ba1b4526971a31f
BLAKE2b-256 96662b827184dabf87034de927b218032ac2b652479ddc06166034b21c54e43c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f0d31ee069b51fe4a12933a40f7e67cc327bd0b840bc46af2004c75c34a831c
MD5 74fed84bb8724d92f939189d58440d0a
BLAKE2b-256 249eda9fda103887409b4f39c946c45f276effed3dd4bbff170ae919af1488c0

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp311-cp311-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp311-cp311-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 961f372c60f1329407df88d8ce6f30532031a315f11bcdc9d68a89793a0d7efa
MD5 54817635e4fe2f7c5c2352cd44a070c4
BLAKE2b-256 312addc23af1aabb71549363a69cf3d59b5b865907b0c4bc00fc26153ac2f72f

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp311-cp311-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 c7eacd95a6bcc714f5890e8d73c22f3bd42352d85b9e12660417dfc0762cc629
MD5 7ca1f5beaf320b63da29d97ebe124ea0
BLAKE2b-256 98e379eb1f1bce31aa48cdafd937d27aa8baca7bc01f685c7a271be17c7c447b

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp311-cp311-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 da0806774c8460cefc60963f2b8f32dc908a03b674fb1ad44887549e5d3ab268
MD5 727df2012d09c4bd7e598e574f0b78a1
BLAKE2b-256 ec69077f789c8f040cd64afc5d2afaf4ee082d340f0ece75258dec12f0f374c8

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp311-cp311-manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp311-cp311-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 755490239b0b631ec4c04c8b461fef57096ae7d4c1a21efd7c4baf6935a988de
MD5 8767b4ae53985aa1b9a99ac7f0bf881f
BLAKE2b-256 0b5e3819461bb85bfed76cf34e6a9ee91002e7e6551bd9e4932e91d5b31e538b

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp311-cp311-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 c2dfd82badcf00a654bcafa3112c2fd3d2d110f97327d1d4ca99f6e2b09559ac
MD5 66c1c34a478071774fd9765270440ebf
BLAKE2b-256 a5a301b090f1054408ffdf39d16c3cfccd49c64a0acbea8237db1b26cbef3be7

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp311-cp311-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp311-cp311-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 07764ac2a651a949be8e9f38ca28951ca270721817b524c6a67b3e09d6984a11
MD5 fdac955142d898aa6e4f2c6188fcc53b
BLAKE2b-256 af95aa720ca34d58bb30d24d4a2bfe49fce7e6b3e33a7248dd671b8e23ff82d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7883893f4536a11223cdb68aa63585f7c14e8b2224a23f6d7e32bd343005b8d6
MD5 aac6222be9a714f392c88007f110c917
BLAKE2b-256 2d3bae3d32afd6ee87fceaea703ba5a7c70ddc22dbb64aff16781d8d9ee813ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 33c5cb9d4b9221bf1ec80ebed1c93febda198452ce2c80412bbcd2e79f70e619
MD5 7508a9eba07c11b298e21d57f19a8aab
BLAKE2b-256 bc566a2c6bd5f3fd8c39725e5a77b41616d54a2e76039bcf2a91a0e3dcf3bb3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 874b35556165a4d16852452e18e82217e50fc28b2ffb956f47f6bac1b626b55f
MD5 3912bae9e884ccaf7915cf5feecf22ce
BLAKE2b-256 b19818188b2af576d9931d22a2949a9b5a235b41ffd972f075bced6e6a653cae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ace6e33f214ed32339cf2ebaa88ecb2b3c8ecb91ada8650bcf91aa8a5a444495
MD5 f89044540a63f23d499c77c657ba38cc
BLAKE2b-256 ef1f4adea2088abcbc1e0d8877905e6c4296fa37eae04bb180434b9e9546bfee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 98646f7ff38fb78916b5237f8dd5e44717ff32f0f7a63404fdccca4766ddf6d9
MD5 fecdf9cfe104f760db3d17b160524d7f
BLAKE2b-256 468ff12dc12dd6b7689d82538a147c7f8a9fb066224e8804cf2ba31d6650ae93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f2bd06b3d936836ae5dd5b67397b654e236d1fde8d82b1f6494d596a652a7909
MD5 bca1492e8e0ac8e1b928c7f0ff53f06e
BLAKE2b-256 77f8b437b93a084c34ac35c88f463db6e0084b97ed912437a03a0dfffcb8fda5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 45ef91031a36c75325c86b4eee37cefdfee84a1b1156759691354a1d60f7c2d5
MD5 7aaa3a2de1683e5780ac069a6301b2f0
BLAKE2b-256 ba47a2835b51c098e230cd216161802d025f5fadd0c704f560c15601c19eeb67

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp310-cp310-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp310-cp310-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 cb33fe2153dd7e5b8724b7fbbfd4bcf84b8598fb41260058ab2f7c0db8d124bf
MD5 7872bc4d66fc78041a4509d8e6e075a5
BLAKE2b-256 ac5003fded77323ef465f83253ba98d7d70a07e80a7d6979fd0d836e75c5cd5e

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp310-cp310-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 f795e2960a6b053ce287dbbb87e684b23ead1815309472a61dcfa6f563aeae28
MD5 c1d16fcdbf4f126b900987e426061811
BLAKE2b-256 0f296bb6f5f88b1365f447261795794275e22086ced2fb7c279b7463bcc6c6e3

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp310-cp310-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 95847e3181b1ce684c57631e9abd2fba2b76be4a50e802c95f4ed5e51211e0e9
MD5 150c13f69930685e120b60906911bf5f
BLAKE2b-256 492caf3d78644c73a2ac088a3aaa4094607414cac8ccf72b87c59f95db786462

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp310-cp310-manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp310-cp310-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 f4a6e34c58116f92d992f0251ec342b045fa30c91a7fcfeb1130ed3e75d96b57
MD5 2d60849358cdfae72cd33165290bd061
BLAKE2b-256 3d254726cf2804e45f3f5dfcd31ce9ca0a0cc3f0bc852fb1f6a7ec12dafb46f2

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp310-cp310-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 9ed8c062d73eed36991ab1d46f977b50c326fee23cc9cedd6ec938f76c31d5a9
MD5 83e88132a55228706ac5546bc018cc55
BLAKE2b-256 aba6d4d6b535541f356981e29f07cb84ddc7360da1b223417db8dc6f011e2777

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp310-cp310-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp310-cp310-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 109dfdc12789937118d03adea8c77762e867f3d94db69c6bd80249cca23ce2fd
MD5 0c4d845a3e849f82e872b59e1cf7f07d
BLAKE2b-256 39b60819e2386f53ad645358da45614a20aa07ab0a7fca028ed2def6ef9affa5

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fm_index-1.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 239.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.4

File hashes

Hashes for fm_index-1.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f6140518d689819cb9b9c7e21281634f47ee3dcbd73343d054fbcf33303d9b8c
MD5 75efe02f2041de887e6e63353784f007
BLAKE2b-256 c6f9a40580dad920ed2f518e994fd88da656c01fd9a5d437e72370c03fb7e046

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5f0de529f0d222057b325dffeb2284fedd7b28ce9e5d353d6d8406338ce1715
MD5 097a92850f3cf365b7886b4a40c52cb9
BLAKE2b-256 003d50aebb0221835d515c0a840f00a0c7878bc0b802ece6ec52de5678357e33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c48771dae3337a500c202b423a161e156a936a461d6c3b9f8781f7e92f83f8cc
MD5 b1e935c4f35cfcec6d986d95587bd1b8
BLAKE2b-256 266dcc43563d2acb74a6792891a3aa0c5a19dc03a6693a1c6795825ff0eaf931

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 af588480135ef4c5d0d35bcdea20ea0229db48b8558fe1fb8603f1bfe5da67cc
MD5 a737f92fbb559fa07698b3f0da0b67c3
BLAKE2b-256 502be2fefbffde9b44d8c4c5d4d059bdcb02af9ac958c5c7ac7e6c09201582cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fm_index-1.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4fdb1e413c4af1da342e5beefc014f422f2efab5774bc70ec669bd32965da184
MD5 917a454cf2c52b63e4b5334bf2576d94
BLAKE2b-256 95228384855c541316b227e2d93e32ee0ae4c955dd70c1c6a4a77bf93e8b8cf1

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp39-cp39-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp39-cp39-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 fe0c1d16b571565e5a5963eba92c8ddc4e748c2231a3480ab5731a70328b4dbe
MD5 233175334471eb227985dffd556cfe2b
BLAKE2b-256 051825ee403e387344efc017de3de8cb15f73972db4111cac2891f386cd70f7d

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp39-cp39-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 f5a27319ff3c1c336281205931aa04054bd0e331f9b44dfde6e65e8496c81030
MD5 2d8a7880680699685af344918392c097
BLAKE2b-256 a14b9052d9e904a49ba2a9b6343d03ade4c72316ab49f654f21d6e8a4fc77816

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp39-cp39-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 a0d4c1ac053699b4ac0af8cdb4468c8586f38764f8b01b7b612d085663c9b98e
MD5 2a87c4778ee5b8e1840b936fb2ffc3f1
BLAKE2b-256 d0babdadc6637939e3ba9908602144c38c7ff02ccad427b8bb41e1fab36365f0

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp39-cp39-manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp39-cp39-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 955ab9d1e2e899bebdd94da0346542b2be696d47000c136f42e7df2bbcc43b6d
MD5 842fe51b70e07f5f06e21bae1e7bd8f6
BLAKE2b-256 329d7f07aedc50ff343accb0fa9c8edf79fff42a40e0be947f1f926896da6724

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp39-cp39-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 dc20f90d1ae9ca8c95657641c134b1204ab73ceb223d3c5beaef6afbb829220e
MD5 2e4f71a51a114a5ee51a51e7f04c0d75
BLAKE2b-256 b2ed290fa4966edc8f269dd82a05368ca9e60612580b9587c3ca7fd30aa4723e

See more details on using hashes here.

File details

Details for the file fm_index-1.0.1-cp39-cp39-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for fm_index-1.0.1-cp39-cp39-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 b710f311a9dce61c8c634ec7b6aad460e85938182692d4e26b1c1b6e6d56360f
MD5 dc78f4ba65d0f081fb8acb10c6043ad2
BLAKE2b-256 4c914880cac99e684394e384f1f08f3016af97eeb3d251a3613526eeae0a1efa

See more details on using hashes here.

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