High-performance FM-index powered by Rust, enabling fast substring search and count/locate queries.
Project description
FM Index
High-performance FM-index implementation powered by Rust,
designed for fast substring search on large texts and collections
- PyPI: https://pypi.org/project/fm-index
- Document: https://math-hiyoko.github.io/fm-index
- Repository: https://github.com/math-hiyoko/fm-index
Features:
- Fast count / locate substring queries
- Data-parallel optimizations across index construction and 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.
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)| 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]}
Iterative Locate (Streaming)
for doc_id, pos in mfm.iter_locate(pattern="検索"):
print(doc_id, pos)
# 4 7
# 5 13
# 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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fm_index-1.2.1.tar.gz.
File metadata
- Download URL: fm_index-1.2.1.tar.gz
- Upload date:
- Size: 43.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3dc02fa42ac9a02c923410bc79ee7ddcce498c60df80259f7efbf8578103d19a
|
|
| MD5 |
c61dbb41ecc3312ac0e266e1ef062b84
|
|
| BLAKE2b-256 |
7791c6ce185f622ab003e77fbc607c6e492708699a1ee2a1e91b647da83fac93
|
File details
Details for the file fm_index-1.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 794.5 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95bcc4aad7acf753afd6bf4fb5cb262407a28ed70b8f3df38c497b3e8f3a020c
|
|
| MD5 |
02b27f27413d02f98a4b03a768a87dbe
|
|
| BLAKE2b-256 |
f8b12c4725829edec0e07fb272101c0478ccec5128d9f6cd90be7c5f351b4525
|
File details
Details for the file fm_index-1.2.1-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: fm_index-1.2.1-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 837.1 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a82eb3cf010ed5cb7d9130e7c76eef0c776bf5709ea5a5733ef3ecbfc8ee9e18
|
|
| MD5 |
f90ff15f784460b4b7b0afd36c610db1
|
|
| BLAKE2b-256 |
988305c997b5927b0b13a99bbe4a41d7a5cf3d7860cdb94409bb27198158a933
|
File details
Details for the file fm_index-1.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fm_index-1.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 847.1 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
429d4f2ca22bd5c63442cfa3f8c952977b948702401b57ac787f473724d80a2e
|
|
| MD5 |
9f7ae2072541e85c4e346d5b9ca76436
|
|
| BLAKE2b-256 |
6d2163def1553c46ad977064e9af8174f59fdc90fdcac577ff07804a9d9e818f
|
File details
Details for the file fm_index-1.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 754.0 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55df79a7ff936883feb72af8bbef30d53c1bc6e0957df844cbcd2e219a93bad3
|
|
| MD5 |
65a38df759065f20062026a1b7c56cc6
|
|
| BLAKE2b-256 |
70317a43a830a5f6df59368bce27013f1ddb945ac22904d067bf92b6260c7d19
|
File details
Details for the file fm_index-1.2.1-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 409.2 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8989208de81c2f0df14175009805ec2681f51c347971b1cd0822369c5446341
|
|
| MD5 |
f589aba3d7cf90a60c66ae7584f69f6b
|
|
| BLAKE2b-256 |
e30eff1966e42b86056d1e9281365cf5f228882220a06a7b8eb68b46fdb9277f
|
File details
Details for the file fm_index-1.2.1-cp314-cp314-win32.whl.
File metadata
- Download URL: fm_index-1.2.1-cp314-cp314-win32.whl
- Upload date:
- Size: 361.7 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dbc9340604135630e2287100436adfe3a07ce8859f867a3ce715fffe6970509a
|
|
| MD5 |
a2c4715ce4a73fb2dc6b7afdc5852f7c
|
|
| BLAKE2b-256 |
4603b3a2993989ebed870789865ae361eeb3aa41e6021796c08385952b7f793d
|
File details
Details for the file fm_index-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 793.4 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
456d2b657d1b20a5d8a3eb83fed3898e4c77447e18b19020c752bcb322a28935
|
|
| MD5 |
01f4caffd179f97dde0ad23d41f82eb4
|
|
| BLAKE2b-256 |
6646185f85efde1caab31681c1671525987e662323b768993d899e597da377c1
|
File details
Details for the file fm_index-1.2.1-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: fm_index-1.2.1-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 837.6 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e70515a021afa63d85127e068cd04948759819b7f7f1d388632d67838f58fcdf
|
|
| MD5 |
2f48e4ea4ff9dbde1c8d6a195359b42d
|
|
| BLAKE2b-256 |
0db33085d988ee25a8164c7ddc828cda8fc514b12209ab054a36011d2296efae
|
File details
Details for the file fm_index-1.2.1-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fm_index-1.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 847.8 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ca2cbd37d974ee8548d995f1eda3e2940b7eabffbd5091fecadf97c3a5f8093
|
|
| MD5 |
a90f710ced3c4709dd68c41a39b5f916
|
|
| BLAKE2b-256 |
55e5c47991505d764d3d55d649881ffccdca69bf3f31a4ea5d0674f422e6b8c2
|
File details
Details for the file fm_index-1.2.1-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 755.5 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6f3213b7591e01764a3678e658413731732af8b99409d4c0f86e1eca460ad5b
|
|
| MD5 |
df61b42eb5ebd000352a61e34a6ba092
|
|
| BLAKE2b-256 |
75cc9857c9f0dd39cac8232533a046e5c6b3880d9d71a306e3b6bbf48d6ec4a7
|
File details
Details for the file fm_index-1.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 583.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a3067a4f0db8d33e1ccbb6ec049ead599b83df8b8a0d6a2de04cfd75c04763f
|
|
| MD5 |
4915faa6b6e06f65aa03d429dbc2106e
|
|
| BLAKE2b-256 |
3429d69186abd9cba8c645c18b0a8aaad7e9e5ae16399eb9bcaa3013faf807bc
|
File details
Details for the file fm_index-1.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fm_index-1.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 606.5 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f224a7cc082874b8981e701071e8e4068b5363a3b2765fc1c6fe86352199958
|
|
| MD5 |
11fc751edf66e10d6d16573319dc03e4
|
|
| BLAKE2b-256 |
bb764eded7662914a6f1990fa37d028fbd60df0a4ae1781b6becd616a536970f
|
File details
Details for the file fm_index-1.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fm_index-1.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 730.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ab7ad5d3e66971c7378c09c01d29b5ca4c87b5b63cdac15e3c5e8b9878afccc
|
|
| MD5 |
4a1da9230e18eea286abf72b326f01d0
|
|
| BLAKE2b-256 |
1f671fbf9e867cf8a5deeab7ccfcfb78d9ef613ba93c396229ff1713ade4e5ca
|
File details
Details for the file fm_index-1.2.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: fm_index-1.2.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 637.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f385d06a607618889e7c94260a5ace724d42fd9701958d911acf19abfa78e70b
|
|
| MD5 |
f06797a9151fdbc7463eaf803e77e928
|
|
| BLAKE2b-256 |
42fdaeab77773981c7d5061167d6bc6c2a6fee92952292254a84b5870e3ca095
|
File details
Details for the file fm_index-1.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fm_index-1.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 578.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9a7d7d6c2cdd99e01811bf45e428aa61aa1f94b05656b25d032e7b954d26688
|
|
| MD5 |
e6029cc1a83c04d6c7082b0a730e70f3
|
|
| BLAKE2b-256 |
c9fdb075882b625da851828b4fcf1c44b4a6586b7048309c821e3d7794b04293
|
File details
Details for the file fm_index-1.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 572.7 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da205ffa0162fb93402c7a9758370bb42f2db4fc27460c8913381f8a9a91aaaf
|
|
| MD5 |
5fb5ec37e158453829325e7bb8cef323
|
|
| BLAKE2b-256 |
8badae6cb64edb677de0f1600a1855d216e67b328bdb2bb1fe7444ab9155bc9f
|
File details
Details for the file fm_index-1.2.1-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 523.4 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17cf169b10a974e024f46ef0d27eb994a67b6f4e87b9567e67e6e7dc080448d2
|
|
| MD5 |
a7d3753d9ef8e69637825d280e06219c
|
|
| BLAKE2b-256 |
a790feb2977f6b4993aeff620fd91fdb71c321e0ef825befe6de5c96e4a20a6a
|
File details
Details for the file fm_index-1.2.1-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 538.8 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aefe6cf72c141cae3b5b4641643ea2a02b82c628452983eb96a1d8145e468e7b
|
|
| MD5 |
79b2646ae1ded6ade33725cf3bb322a6
|
|
| BLAKE2b-256 |
77f383c84886609eaa6aae60d32b2c3e9cabd4bfeb28338a50306c98f03c0dfe
|
File details
Details for the file fm_index-1.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 791.8 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42046582cadc617c14214f0e74d140b24853d85b68b6a80d09e535f71417c8e4
|
|
| MD5 |
01b416e502ff6faf6548ea0550031eeb
|
|
| BLAKE2b-256 |
118d48302a9b987e709bf2808d57e0214bc0b519e1aaa619d236250f5ec186fa
|
File details
Details for the file fm_index-1.2.1-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: fm_index-1.2.1-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 836.6 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8d3e05e9ad950249e1a64a79f3350758c354d66d6e352fa42ab4ad7dcf82eda
|
|
| MD5 |
c70e8418b0e2df6ce51dcab72d145557
|
|
| BLAKE2b-256 |
9a28497f185bac22f4cad3537bf1fb409150e39bd098ac1b37f12f1d4b807786
|
File details
Details for the file fm_index-1.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fm_index-1.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 846.4 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4375158510098946c34217547a4f7378d9bb129e639935a17dc69aa7a8dc27f
|
|
| MD5 |
708e3190d5ce4c37ae6dc98827f16493
|
|
| BLAKE2b-256 |
b84228b5ebf52e0877be5d3b4e65cfd02adfbdca2b30952fbaaacebc44e4aeaa
|
File details
Details for the file fm_index-1.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 753.6 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe8e95234d4b64bd86f0d95ca56ffc3c60d60a00e0cb313c96befbdd337ff4f9
|
|
| MD5 |
339b0e1f3d2aea6880704bf0d98108fb
|
|
| BLAKE2b-256 |
55db68f239afd72c66180ae185af5bb2387d32598625a159972f84907040d53b
|
File details
Details for the file fm_index-1.2.1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 409.7 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9403149b41375dd94968869dffa27da50174ba0e426e8e2acbe5a8ab950ec411
|
|
| MD5 |
f0fde457691d823494bd8ac03e70c527
|
|
| BLAKE2b-256 |
e7d86e4a2954c059c174526ca575a37f205809142622c4754280ce4b937ca19c
|
File details
Details for the file fm_index-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 792.5 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6739f3b52d34172aa336d925c7d5e0b25afbbc205ac58de8aa61c69e839f5325
|
|
| MD5 |
12e5201adddfc963bb0416723cbf5a06
|
|
| BLAKE2b-256 |
0b735acb5914af7e3d77e7ee10b92f0599df7a1fb2822bd860bcc1f80cfe2c7b
|
File details
Details for the file fm_index-1.2.1-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: fm_index-1.2.1-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 837.8 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6283c76b171d8b4e3844f7e86f385c1383ae187b2bdc2960236a8d6f21a9d224
|
|
| MD5 |
07f2356f8ec39e55ff3406d6c2aa049c
|
|
| BLAKE2b-256 |
8d846c03dde53c9b71a3c05790ab6430039a35050d84cb1852f9656ff35c1bbf
|
File details
Details for the file fm_index-1.2.1-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fm_index-1.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 846.0 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
746b132aae729e5e986c79b307d29e7269046e6f37d7aeba2d63348e69070a3a
|
|
| MD5 |
1341bfb2bb09f7cf936805476dd90b82
|
|
| BLAKE2b-256 |
57c01724559479766b10249bee255ec947a3d254ecae2ed098dcc8a229c7d3e6
|
File details
Details for the file fm_index-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 754.8 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21f986d803e0a1f6b320eeb578a850a742c945743a2d5cd92220debc123fcd9d
|
|
| MD5 |
efc7ff2d62ff61a70a7f44390b98d664
|
|
| BLAKE2b-256 |
e41f4f072c3c1b44e6858fefa6ebfff21226f66c3416ae7d551ee5bb916f373e
|
File details
Details for the file fm_index-1.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 583.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e02d8e2bf080058877107ceffa9ebee5a5c8d45b8425b6fae8596820df380b9f
|
|
| MD5 |
74d306fb255481f3cdc7f77dbdae920f
|
|
| BLAKE2b-256 |
3786cdb20205a9138b853cecf142f35f33c85fdc7c45844f68ab95c6b64450d6
|
File details
Details for the file fm_index-1.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fm_index-1.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 608.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5167aa4c2642a3686b946d073f1c16d12e55875fd87f2cb2455bd530df602d29
|
|
| MD5 |
e51d1603bba1482bfbc083b9ca105be0
|
|
| BLAKE2b-256 |
6fa29eb603c2e809a0a8952bd2c2255a6352a3053bf6f3d6ea78408ad0eb58dd
|
File details
Details for the file fm_index-1.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fm_index-1.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 732.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2a93f1fe437c14e9f315503e4fac4fcbaa1be94c83db31d897af1668a669ed0
|
|
| MD5 |
e5d4047e1d5e43694797240e16ae4320
|
|
| BLAKE2b-256 |
4c578a5fa8e3c3f7d7214c8c28863926700c863496f361c5eab19ead32feffbf
|
File details
Details for the file fm_index-1.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: fm_index-1.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 636.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aeb50717052f597754f9af573010ab999bbc8686c01f5dccc534e65ddaded842
|
|
| MD5 |
a506ed0354a8cb423e51af0959a5ba0e
|
|
| BLAKE2b-256 |
a30053f6049cabb2745daf43bdb5536cf76dd32acc5b8a5cd608b10be2b8e4fa
|
File details
Details for the file fm_index-1.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fm_index-1.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 575.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd9e0f6380dbb218c8f328fb4205bd607cee3090f3c06ee1177eef4382809c47
|
|
| MD5 |
534f0f751bc25c6decb373c0c03bb9bc
|
|
| BLAKE2b-256 |
0456ea7ce3702bc657112deb8e67cc313d5e3c24aefb2a038582b8dc391ea317
|
File details
Details for the file fm_index-1.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 572.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f3e88e04c94b2597a4c6f489bab1527cd1a572c75d1fac42aae64b2dbc34df5
|
|
| MD5 |
003dc016010dd6deaa852a2aa2ce0252
|
|
| BLAKE2b-256 |
83112d0d0d2c74be13309f14c34d04bb1856656ccbe6051053c6199e2718a05a
|
File details
Details for the file fm_index-1.2.1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 523.3 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35b2099f447e94e13562ae0e0ff0b0d22c4a6a9bfef4be982444567f5a54fe78
|
|
| MD5 |
9774cbf245650ad46018dbb17d0fcf4a
|
|
| BLAKE2b-256 |
f0916e7f9c486fae152dafa32ee27e5d56992d7e4fcb5087dcbfd5a005f584eb
|
File details
Details for the file fm_index-1.2.1-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 538.3 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8552a127b1733e3c44dbc6a35981aa4bc849c0c56449b538dbf8c52690f717c4
|
|
| MD5 |
c6c1471dd48d2a079d625177363d9c64
|
|
| BLAKE2b-256 |
ab26b6935313a29e9f2953305e6c941a5e79411b2c37a7b46420ffea35cf38e3
|
File details
Details for the file fm_index-1.2.1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 409.8 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d42d5bca24f54489b063f59175411ea118e826024c5d18e42ff66b9993f6531e
|
|
| MD5 |
96784944409098c6d05b1277b7130fe9
|
|
| BLAKE2b-256 |
84c60fc921983b9f22899fdb4a661c2adb73616051ee50db45b1f746ebbfc8fe
|
File details
Details for the file fm_index-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 792.6 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f480255a35410c64d90ec411232943a252e3e1586c133a685e96f05bc9002138
|
|
| MD5 |
cc890c61d08803fce9ed09080896b5a6
|
|
| BLAKE2b-256 |
8890b7d22b5fa053b46fcc88ccd669473234334b905b1ec681e9010eae278544
|
File details
Details for the file fm_index-1.2.1-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: fm_index-1.2.1-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 838.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a437a6cc61664ef450b481298dd7c281f7eda5164a5acab43cbe49f242f474d
|
|
| MD5 |
3a3eb87e6e279b0a4ab8c2710bd5a037
|
|
| BLAKE2b-256 |
1beffedc73ab518532a22ef5c909a1bd1a3b5c651a7b82a11ef2577498b4586e
|
File details
Details for the file fm_index-1.2.1-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fm_index-1.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 845.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a788833243f6b937cbd5374a298d1fa251ee83a4763597cc47ddaaa00ceca6be
|
|
| MD5 |
ece94aedd990b3f403eb0b32fe4ab6b1
|
|
| BLAKE2b-256 |
ea967be3d33a9674d72da4fd36ee5f3faad710ba6e7af2ecd97c9027d94e1614
|
File details
Details for the file fm_index-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 755.0 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
217bef74248d0b3d4c97a0367178699192ec98a407e15f09f886809104d0a5b5
|
|
| MD5 |
eb8ea17a4d75bdb2d1d5cdc8f5d430f0
|
|
| BLAKE2b-256 |
e97d58b3dc25f233e50b1eede33a3bd145d25a9a74f0212c6f35d4925b683c6f
|
File details
Details for the file fm_index-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 582.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3450ece772e700484cdb33079be1b3dfaee714bc27a1d256974237a093fc18ba
|
|
| MD5 |
ac4f637dd272d54f533209849895c5cf
|
|
| BLAKE2b-256 |
2c8d07d059a51d125b48b604054397eefd4966435be27d9bb7f616a8c19bc472
|
File details
Details for the file fm_index-1.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fm_index-1.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 608.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c898d820e69b82dfcd658a5e7512350b22431ce430d8962a5cf454086b5280b
|
|
| MD5 |
103303377cf89da403b5df374064d0c0
|
|
| BLAKE2b-256 |
bb4b50cc03710035502ec1f7d98757077557ac5793f0e65b1f68f9b357bc5dc7
|
File details
Details for the file fm_index-1.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fm_index-1.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 732.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd0a988e768b1dd003aef9f0d1d8c89067cbe995e4b4f6aea27d4480d34af712
|
|
| MD5 |
219c229edd35f60cff84a5678af28270
|
|
| BLAKE2b-256 |
954ffdbd8f35bb62b3943e76adcec2ac0a062f741baa313f6adf2fe3bb147c9a
|
File details
Details for the file fm_index-1.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: fm_index-1.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 637.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
003a9adb1e10b8615b1ffaba8b2f80f51923bf67267ef5c532c8f6fff455219f
|
|
| MD5 |
a8006176b5249c3efb0acb6281b4034c
|
|
| BLAKE2b-256 |
cab8e9c8b9050b297f73ddb7a6d2dba4a5c1d4ed3eaaf3c5cf3a22813a0c169a
|
File details
Details for the file fm_index-1.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fm_index-1.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 576.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
003c9cb05cdad5e364a6518ba7a1bb0bd104796ce67c7041cfa06231c69e9f83
|
|
| MD5 |
7e5763d5b7501644ccf171faf97ec3a8
|
|
| BLAKE2b-256 |
69e40a21f36bb317ff7fb86d5761d85993483d63d330a0cb4dab5be89bdc5e88
|
File details
Details for the file fm_index-1.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 572.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00a95517033dbbedb2a01415738ed2a27de1017a92f9e3e95472773facf6608e
|
|
| MD5 |
fcca352e328e41fe16a667d9137de81c
|
|
| BLAKE2b-256 |
300d6a9bd9d2df062236ebaa872389cf3e8b708d9069c2a6ceda4c8e823d873f
|
File details
Details for the file fm_index-1.2.1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 523.4 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5b886ca25b440b5c03dde8bfd34cf6b07002a093c5723ec873711ebf8129d46
|
|
| MD5 |
9dc4949a1a4b4112db19626a514bd68f
|
|
| BLAKE2b-256 |
ddefa2e2454e82ce09ed359bc98a30f14afa8fb5e687e7c0a8a5bdea67e0a322
|
File details
Details for the file fm_index-1.2.1-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 538.1 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cee017b2198439642d83a46344d3a1be5e287b7e395f0041cc4aaceb4367fcc8
|
|
| MD5 |
b4306441b52f162320ea0e14429fddf3
|
|
| BLAKE2b-256 |
4af7821880880bf787f5f8c1b694b70966ec87df86e390186e367f01d666d6f5
|
File details
Details for the file fm_index-1.2.1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 411.6 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4bd0bc0a937848ca1dcc873526dea6f45f1dad1f9a279a068142ed5bc9b16d8
|
|
| MD5 |
0ef7fde720dd0b3b64f99a98936aec7c
|
|
| BLAKE2b-256 |
b2654576b815c4e2574e01f1ba4a98f37e99be23a9eff65eabcfbe15ab1eaf75
|
File details
Details for the file fm_index-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 795.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5691e909e0e18362e765a059261a40ef3672ac4d071b3855ec3d25eb4cb5aee
|
|
| MD5 |
451d85a03b7e1523f92cafba3edc45d7
|
|
| BLAKE2b-256 |
75221d2bd6352a46e6d67589bdad52b3aacd9b3dcce29a53983d1d32a652ea92
|
File details
Details for the file fm_index-1.2.1-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: fm_index-1.2.1-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 839.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3721763b5836c0b7d7db2f5e83f453c128e57685eafe30ecfdb4565866da2807
|
|
| MD5 |
2533fc9d6fde787f661ce73f4946715f
|
|
| BLAKE2b-256 |
bddf5608486f1d7c7ca10985749d66d0df1b32d823d75764e29c5ed05c8ca1c3
|
File details
Details for the file fm_index-1.2.1-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fm_index-1.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 849.0 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13ee3bebd09526b255c5ef997e979744688f8d218578d64f81e5857da31eafa3
|
|
| MD5 |
01b39c329d94127fde27076bb0e6b2b4
|
|
| BLAKE2b-256 |
7feb534937e81198a53a10822647148ea7732b90b84551d5f20433a0595f3125
|
File details
Details for the file fm_index-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 757.9 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67fa6944ec1ea9f5c0b6e33a93133ec35e8e143701c075070057ff9cdbb4182f
|
|
| MD5 |
a8fc0f5138aa62200bdc6b444f889235
|
|
| BLAKE2b-256 |
8ed1ea66056a6897afd4f05a5d3814f48a9e01096b02d88ad01c4e89aeffa38c
|
File details
Details for the file fm_index-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 585.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b4c5dba88498795fedc0034609128cf6c48fb6433a6c300f4d193465bfdd00d
|
|
| MD5 |
ea705d8af8b2ca736cea2f7573563e63
|
|
| BLAKE2b-256 |
a754b22fca19b293cf1f47e9e936df63f5c02c781397a8582b5ba1187b1219bc
|
File details
Details for the file fm_index-1.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fm_index-1.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 608.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63721f9049e408cbb7501fae64cbd2e4015ae612787565b6bc7b38ba57bdf344
|
|
| MD5 |
45134b252a3c879d826c4c7e9a6fe7bb
|
|
| BLAKE2b-256 |
3d17a97c85848bb06e26fee7d02cd7be7044a590f3724edad51cf722859c96de
|
File details
Details for the file fm_index-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fm_index-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 735.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
225e7724dae91b00705824134cae9d42e23087ecf2a99434fabb7684745e28e1
|
|
| MD5 |
18c6e294cd516271387823386fcfc076
|
|
| BLAKE2b-256 |
d19b7519ebcb413d0a91502e478e718b9410faa4a3602c9b39c2e4f7d531eeb5
|
File details
Details for the file fm_index-1.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: fm_index-1.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 641.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0fc213c3af493e922614e91c01e5847a78e3ecb114cfdab3b9c664c21cdb01ef
|
|
| MD5 |
dfda4120dad8c1ae17c213908dfae868
|
|
| BLAKE2b-256 |
c7a74b501cdb87abbde897b6a0666f7f68d98889e321ee029cf348ce16af7ac8
|
File details
Details for the file fm_index-1.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fm_index-1.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 579.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df3e722458066d04503129f5fcbc8307afb65f9a769531ffcbc126ca859ee495
|
|
| MD5 |
4619341756d5eef85e036efebe32fcf4
|
|
| BLAKE2b-256 |
399402c007588486a36653c4d962e647b2fd3569ddf428e35753d61643beb6d7
|
File details
Details for the file fm_index-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 575.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33f55825db3c1bd32251e6511949f7673cc2afa2da5e5c0bfc5bc6be73a5294d
|
|
| MD5 |
0cde3cad14e98a1c58ed7ac4f943d2ba
|
|
| BLAKE2b-256 |
c6f5bc87f1ed067fc4b3ccc8071f1499c2826bfc6b22279e577e11f01bd9af76
|
File details
Details for the file fm_index-1.2.1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 525.4 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38e9fc3b0c249b594516f2a750877f4b7d958ce0f440d9b278f62ceee19e3e6e
|
|
| MD5 |
b147f057003bf8173902a9976baffc1a
|
|
| BLAKE2b-256 |
8616f220ab1851f2a0cb06b22a1c968671e258d4e7e97a83dd9dd7449c0f5043
|
File details
Details for the file fm_index-1.2.1-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 541.3 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01e17ce666c85045a4ab58500348b16dc41d62ed1cc8f578a94dac347180b496
|
|
| MD5 |
12acb229205b7d38b9179a9dde514a9d
|
|
| BLAKE2b-256 |
2b402dc7c9272badf1adf5ad53c8776994dfe7c0b60c44cc7dddaf33e1e94426
|
File details
Details for the file fm_index-1.2.1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 411.5 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c23b3be390b6ea312dd11b1cc195627b903e926cc844d361901174580b41dfb5
|
|
| MD5 |
89ff23713fce5fcf47a1d613de781f98
|
|
| BLAKE2b-256 |
a9b1e5e6069a579cf5752b4e67e8c753e24f4e194eadd8d047be2dae3475bd4d
|
File details
Details for the file fm_index-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 796.0 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f186a58526beb128b9833f167799d5936bf49fd02a95bdc343c2c20bfef6bd81
|
|
| MD5 |
282fc05a3c7c317e7f00fbc82ff64218
|
|
| BLAKE2b-256 |
3a0860c31293d8f3da7b99b262950e4fb9de5d45ec50c03f454bc665b17d36f6
|
File details
Details for the file fm_index-1.2.1-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: fm_index-1.2.1-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 839.2 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73743ac8f6af8583e3ff44935c2fba809917e30525483c7bd19fe79c92d131dd
|
|
| MD5 |
2bb3e7e0d10e8a89245bb86a0f88ee05
|
|
| BLAKE2b-256 |
907e8f246097333e94b52b4ded34639869837ec6682d9d1a3fc6f20d6638cb61
|
File details
Details for the file fm_index-1.2.1-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fm_index-1.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 851.1 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
651da947e121fe591e6e14df8ae33da6643dd8a5724a8e1b997f3569141e9ecd
|
|
| MD5 |
363e5fa13295f2fd0def1c657d9b1aed
|
|
| BLAKE2b-256 |
138367254b554ed47a2ba01873e2f9548a9190fbc67b55dded20236d2a636980
|
File details
Details for the file fm_index-1.2.1-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 757.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79ae776d2b2cedb6b5ce15c7bc422f9199ef0511f5b9c39a1440f87dc005dc37
|
|
| MD5 |
f92958d3127133e7d955cbb02155a475
|
|
| BLAKE2b-256 |
112e5d0c18b0f96d554115d357a9e938672cef0867cf22f5e9a977f05bc66f4c
|
File details
Details for the file fm_index-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 586.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad5be43f80adcb4fcc4c9a9dcf1131e9007c5451fd960d117139988f65117861
|
|
| MD5 |
e6763dd7284fae70c2d301ba9e6fbfdc
|
|
| BLAKE2b-256 |
91a8a64b194072a704033ebe8ae68d360f95a0af006dda7dc6052650c43e29fc
|
File details
Details for the file fm_index-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fm_index-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 609.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
282683e9fbdc53d4313560787840487a620cb83a971d674dca016e6271e7b9b1
|
|
| MD5 |
9c3919b111f4bb24f55b24afa466f6a9
|
|
| BLAKE2b-256 |
72ae2bf3f783e6119c9a83830884ebab3e1b017c8c0479216a58785de67c5ba9
|
File details
Details for the file fm_index-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fm_index-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 734.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4933632af20737c89be0be55c6f54ca491f53dbe03ce2d3a970dd09d9c7b8e82
|
|
| MD5 |
0396f3d08ccbda38079d38d0a9361773
|
|
| BLAKE2b-256 |
e6dfd67a916f445ffdbbeee3c4e8e0404d641fc0d0415c42250c6abd6df3e23a
|
File details
Details for the file fm_index-1.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: fm_index-1.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 641.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ffeb59dcb0afebc770cd4683406fd84f3d446c77d97981b4219c6bcf579696d
|
|
| MD5 |
4eb57a74c665d877a4ec7188beaa9585
|
|
| BLAKE2b-256 |
cd61c36ab1343a9d7487701df4a06f5936d7d6b02bf88b3eff596b567e128760
|
File details
Details for the file fm_index-1.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fm_index-1.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 582.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee594e4e1f50d6dc3f0168197463fec92e8dd54c8b5be0dc90540608a266b20e
|
|
| MD5 |
0df8e40f50a43546d5f391126ccf2bc0
|
|
| BLAKE2b-256 |
2cca6adf5e7f58270507f67f4e058e729f20308f613df2153a2106cb6f3256c7
|
File details
Details for the file fm_index-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 575.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa4fb6566eb4bd3f6528a550cbe81d66a822cfcafc097f6ef511afb2e5caf82d
|
|
| MD5 |
32cf378435459bd5412eed6fbcb311e1
|
|
| BLAKE2b-256 |
e2465156ff683339ab9a2e452f109d78663fe47ce02a561c09f2f9508df31fe6
|
File details
Details for the file fm_index-1.2.1-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 797.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3089e7e1ae90c1e098203e426ac022297c34cb4dc21803c5937b100f425aaf1a
|
|
| MD5 |
12ce0ff45773c9155b3584d6e601b104
|
|
| BLAKE2b-256 |
cf77d38b260488c5b314f287f79b44337a37c876d98df94b14e72c59164af9a4
|
File details
Details for the file fm_index-1.2.1-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: fm_index-1.2.1-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 840.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a337d3bf57e0e085f18f093df0d12d8e485e782beb9ac9a80294d62744fd0c99
|
|
| MD5 |
69cb27b4d24ba2c98d7df60a7fa7a6ac
|
|
| BLAKE2b-256 |
6ba70b049bd7202550bb03739b10b050ce3284fe79a49c4a9df437ee520f67c6
|
File details
Details for the file fm_index-1.2.1-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fm_index-1.2.1-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 851.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a06d18a5471991d5921905ded8c5d8a8c90ed34e8706e69c0f5bb0c104676691
|
|
| MD5 |
dcb946b2f8ed369271088b08b7323ec2
|
|
| BLAKE2b-256 |
abff07f9c6a30a31fb150d9d0f2ac0d2d664f7cfea2a23a2c3fac27819929ae2
|
File details
Details for the file fm_index-1.2.1-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 759.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b068482209f75f47e0fec7103438d7ba20cfec151f95da6c682a926ae78ab43
|
|
| MD5 |
2bd1101f27e931716162d7884540170d
|
|
| BLAKE2b-256 |
f4c41e42e7ab88cd137158212a1bd982fb2a8e36afad207f64b6811a19af181d
|
File details
Details for the file fm_index-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 588.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7544d2392a543bd2fc58ce313119ededd9b726a25f3d8cad2517f15df20168df
|
|
| MD5 |
d461227b09dbe7d67bbcc01e28ae2f74
|
|
| BLAKE2b-256 |
077db0d4d9c6cd2b6efaf179ccc8c0953ac8fce1908b435d2c4e01a5fc283725
|
File details
Details for the file fm_index-1.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fm_index-1.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 610.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a50c2ecfdd822090f3de3473e9a8c8f35046c79f8ee5a33cd9a55a8e831aa7d
|
|
| MD5 |
705777f098e5b342809934b333caab39
|
|
| BLAKE2b-256 |
fd5c7cfe54a6ed15146fb391fa48b21b93b595a63ae8f20009b544ce86019f01
|
File details
Details for the file fm_index-1.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fm_index-1.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 735.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0969aff11c13db9e0a9d7f47b5054a0cd092c7c6801153dbe09aedff29199b93
|
|
| MD5 |
2f92c6cd73caf2675753b8c0f97bad36
|
|
| BLAKE2b-256 |
fd4918820e3b5c8a3ca6581e6aa724dbb1dd9991fc525dffb5138dfdcdad6601
|
File details
Details for the file fm_index-1.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: fm_index-1.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 642.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db416fe8293144560cb9bdfacdfd36b3f6544931976d78aaab6d2123fff04359
|
|
| MD5 |
8ad1ef01f496be12fb74a52696b2537c
|
|
| BLAKE2b-256 |
b5b889213ee26995d84b9e5f1c08cd4df3d20a1cc154db45459358e6f2ccf0c4
|
File details
Details for the file fm_index-1.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fm_index-1.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 584.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1eb18384d66bf557878a41a863768bba1c7f7a8d50a966d0b5f12f148d7630b
|
|
| MD5 |
e951d18d112983e6f842656f3f2fef1b
|
|
| BLAKE2b-256 |
c7c707c4b199ce9434ab53acf188317366071c5eb85ad989bfb2c99cea8b4932
|
File details
Details for the file fm_index-1.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fm_index-1.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 576.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0accc1cae054a614ab4bf7bcb5333fbb18d5e05adeb5a11a43ab1b598f41309
|
|
| MD5 |
101e972685a8f5520963ce7d62866456
|
|
| BLAKE2b-256 |
396557cd70b44805bc8f680955ad9699e7925a2a532cbfde1c5870cbd256b980
|