High-performance indexed sequence data structure powered by Rust, supporting fast rank/select and range queries.
Project description
Wavelet Matrix
High-performance Wavelet Matrix implementation powered by Rust,
supporting fast rank / select / range queries over indexed sequences
- PyPI: https://pypi.org/project/wavelet-matrix
- Document: https://math-hiyoko.github.io/wavelet-matrix
- Repository: https://github.com/math-hiyoko/wavelet-matrix
Features:
- Fast rank, select, quantile
- Rich range queries (freq / sum / top-k / min / max)
- Optional dynamic updates (insert / remove / update)
- Safe Rust (no unsafe)
Installation
pip install wavelet-matrix
WaveletMatrix
WaveletMatrix indexes a static sequence of integers,
enabling fast queries where runtime depends on bit-width, not data size.
from wavelet_matrix import WaveletMatrix
data = [5, 4, 5, 5, 2, 1, 5, 6, 1, 3, 5, 0]
wm = WaveletMatrix(data)
Frequency Queries
Count occurrences (rank)
wm.rank(value=5, end=9)
# 4
Find position (select)
wm.select(value=5, kth=4)
# 6
Order Statistics
k-th smallest value (quantile)
wm.quantile(start=2, end=12, kth=8)
# 5
Range Aggregation
Sum values (range_sum)
wm.range_sum(start=2, end=8)
# 24
Count values in [lower, upper) (range_freq)
wm.range_freq(start=1, end=9, lower=4, upper=6)
# 4
List values with counts (range_list)
wm.range_list(start=1, end=9, lower=4, upper=6)
# [{'value': 4, 'count': 1}, {'value': 5, 'count': 3}]
Top-K Queries
Most frequent values (topk)
wm.topk(start=1, end=10, k=2)
# [{'value': 5, 'count': 3}, {'value': 1, 'count': 2}]
Extreme values (range_maxk / range_mink)
wm.range_maxk(start=1, end=9, k=2)
# [{'value': 6, 'count': 1}, {'value': 5, 'count': 3}]
wm.range_mink(start=1, end=9, k=2)
# [{'value': 1, 'count': 2}, {'value': 2, 'count': 1}]
Boundary Queries
wm.prev_value(start=1, end=9, upper=7)
# 6
wm.next_value(start=1, end=9, lower=4)
# 4
DynamicWaveletMatrix
DynamicWaveletMatrix supports mutable sequences with insert/remove/update.
Trade-off:
- Higher overhead
- Values must fit within max_bit
from wavelet_matrix import DynamicWaveletMatrix
dwm = DynamicWaveletMatrix(data, max_bit=4)
Insert
dwm.insert(index=4, value=8)
Remove
dwm.remove(index=4)
Update
dwm.update(index=4, value=5)
# or dwm[4] = 5
Safety
- Powered by safe Rust
- Memory-safe by design
Development
Running Tests
pip install -e ".[test]"
cargo test --all --release
pytest
Formating Code
pip install -e ".[dev]"
cargo fmt
ruff format
Generating Docs
pdoc wavelet_matrix \
--output-directory docs \
--no-search \
--no-show-source \
--docformat markdown \
--footer-text "© 2026 Koki Watanabe"
References
- Francisco Claude, Gonzalo Navarro, Alberto Ordóñez,
The wavelet matrix: An efficient wavelet tree for large alphabets,
Information Systems,
Volume 47,
2015,
Pages 15-32,
ISSN 0306-4379,
https://doi.org/10.1016/j.is.2014.06.002.
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 wavelet_matrix-2.0.9.tar.gz.
File metadata
- Download URL: wavelet_matrix-2.0.9.tar.gz
- Upload date:
- Size: 54.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6e54e4b2fb5f9465dff4e5f6de059936cf7223882662e83f9ad73080f255145
|
|
| MD5 |
a31114db5513d50da2b3f3f7145fb2e6
|
|
| BLAKE2b-256 |
9331bf9843024264296b0c58792e2dc0fb55c5f838c7ff4b6da4eb1f7e45b7ae
|
File details
Details for the file wavelet_matrix-2.0.9-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 774.5 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ab4a03b26d42f5fb64b531d1b902711f6bcba683d1c71bad76e35787b87293f
|
|
| MD5 |
710974f9c775489e22a98baedba73820
|
|
| BLAKE2b-256 |
6e58a601040c5d5ff1dfb7334a0680e3afa674a37a4eab412d6534a42d448ce6
|
File details
Details for the file wavelet_matrix-2.0.9-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 844.4 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86a241a2e9840bb71433576f63a2f7b56524e2b32164244ae7ae50e6a78f802c
|
|
| MD5 |
c3ae597f16d24836087acd178fbc4970
|
|
| BLAKE2b-256 |
16984d001323c4e4d5563c589e62435a945cdb8f6302fe2112ce50408d7631ab
|
File details
Details for the file wavelet_matrix-2.0.9-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 865.2 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc1be35c1736b06ac7030d3f8d818356bb883903ded1c4f90e8b9c99d3371aa1
|
|
| MD5 |
c42cdbdd5cfae5fdd53a8e18557149c7
|
|
| BLAKE2b-256 |
a9fbdb7869a4580d9df003c036462a197a4cbc48fffda6b59e11d4254919f092
|
File details
Details for the file wavelet_matrix-2.0.9-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 722.8 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d817f2e15a3219420abc6eabca0f8bf74e952655266562b699e23ffeebf50fdc
|
|
| MD5 |
1ae2c92e45ad60ea6906ccbfc280d0cc
|
|
| BLAKE2b-256 |
3deea4a35f31e4f195e0d6ce0bd59642b43e909d97c0606b8edc2135e0d42f0a
|
File details
Details for the file wavelet_matrix-2.0.9-pp311-pypy311_pp73-manylinux_2_24_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-pp311-pypy311_pp73-manylinux_2_24_x86_64.whl
- Upload date:
- Size: 568.3 kB
- Tags: PyPy, manylinux: glibc 2.24+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44d1862d8c0cf516aa591ba120043fe85abdde0d06366a159d58232a1127496b
|
|
| MD5 |
f93a614315e8498ab92072186fef6d13
|
|
| BLAKE2b-256 |
af1cf474bcc66db009195898f1aa83f163e4c23584c2257f41447dfdea727ed7
|
File details
Details for the file wavelet_matrix-2.0.9-pp311-pypy311_pp73-manylinux_2_24_s390x.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-pp311-pypy311_pp73-manylinux_2_24_s390x.whl
- Upload date:
- Size: 600.8 kB
- Tags: PyPy, manylinux: glibc 2.24+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a1d933f36d6a15350419b5ff8d661584d011195ac2c1eb7243ebe2eb4714e13
|
|
| MD5 |
447098e0383f8cd4fabbaed20da09e30
|
|
| BLAKE2b-256 |
4a305cab97a34cee26c2fc44059003b7117c0af7a617d95ef6f53726981f7df0
|
File details
Details for the file wavelet_matrix-2.0.9-pp311-pypy311_pp73-manylinux_2_24_ppc64le.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-pp311-pypy311_pp73-manylinux_2_24_ppc64le.whl
- Upload date:
- Size: 710.2 kB
- Tags: PyPy, manylinux: glibc 2.24+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6dcee50ffd4af15c1b4ee0ac431d21b896b08b3451c1989d142ed645273fdf8
|
|
| MD5 |
71217a7ac4b4effce9ed55f2e849a0d2
|
|
| BLAKE2b-256 |
ab0c943e641cdff4a65c5f8953403e9cd1c79f9f1bc76d99765e2a9a2102c5e9
|
File details
Details for the file wavelet_matrix-2.0.9-pp311-pypy311_pp73-manylinux_2_24_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-pp311-pypy311_pp73-manylinux_2_24_i686.whl
- Upload date:
- Size: 649.9 kB
- Tags: PyPy, manylinux: glibc 2.24+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf81a60ce227cb5d2a8101040d7e140b185dbe02602e08c5ba4034180c677d4d
|
|
| MD5 |
618150c2b7e328fa163b4c7ef1d668db
|
|
| BLAKE2b-256 |
5cc292d61d842ba45a67816575b7e6b3bd97adc4a0aca6f86c3a17c2766fda73
|
File details
Details for the file wavelet_matrix-2.0.9-pp311-pypy311_pp73-manylinux_2_24_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-pp311-pypy311_pp73-manylinux_2_24_armv7l.whl
- Upload date:
- Size: 595.4 kB
- Tags: PyPy, manylinux: glibc 2.24+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d65b51bcacc939271a7d0ba4f99621156327d316cb764bce346668f3cd842af
|
|
| MD5 |
b903ad5b0251711b28c3de70275f1f1a
|
|
| BLAKE2b-256 |
907e6507e7f7f2d63304fa640ba3037b018af0410a838271897205fb63e3c95f
|
File details
Details for the file wavelet_matrix-2.0.9-pp311-pypy311_pp73-manylinux_2_24_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-pp311-pypy311_pp73-manylinux_2_24_aarch64.whl
- Upload date:
- Size: 539.8 kB
- Tags: PyPy, manylinux: glibc 2.24+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ec3a278c451583557e2c897fbea8e975db8f575b1539ce3b731c8b17e98f19c
|
|
| MD5 |
04938e1bee2929287ac6b6fbc3f746e7
|
|
| BLAKE2b-256 |
0158f1c17a5b3dcd6e95851139ef892259dac9aa7751d0af734d1510ea3b0112
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 786.1 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33cf59abeb1708bfb8eca099d7727c63511ea973bd47d325c10cacdf0eef9c23
|
|
| MD5 |
db003ec90a1cbd279532d1decba50687
|
|
| BLAKE2b-256 |
abc3177d60973750749ebfe30ee25e517910678c1b33b924d6366fff5558f85e
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 850.7 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce079fd690bea7572d6e62db45c1468b479f3d5165629fe419ffa2002e7bcc24
|
|
| MD5 |
d7dea34aa7ec9d73f003469195418a61
|
|
| BLAKE2b-256 |
114452d53091b5bfd616338ef6b01aad60c1e7bd985a7c33fe7aa8a5bfd0dfd8
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 874.0 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4643d070ecb5436f194f77c9b6a05298e52f891741aab41bb8aa69cf1d8d41b
|
|
| MD5 |
a4a50604a84bc3d9ea255daea583515d
|
|
| BLAKE2b-256 |
ef053af46a42bba99e584588c76804b6a71b4d55cc96bcd5a75f0f8bd8494b9b
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 725.2 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a5ddbf9b30c1d0fc1529f8e2b621e7ea082426fba517766f3c42ba43ea09d65
|
|
| MD5 |
ca16b697606779886b87d03717594d46
|
|
| BLAKE2b-256 |
9abad8d1ad1ecf342573f1f62e5b48e3fe39be347fe794eae5101ed1b6a4f15e
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314t-manylinux_2_24_s390x.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314t-manylinux_2_24_s390x.whl
- Upload date:
- Size: 609.0 kB
- Tags: CPython 3.14t, manylinux: glibc 2.24+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa9e3ec1c78d6e5f3c53e1b2a9a852ac7de0c3f15cc1cb75f15f22feeb540f6d
|
|
| MD5 |
96b642d9c946af93e113b4720da94881
|
|
| BLAKE2b-256 |
b4888a64a80910ff4a149246467f0a35be70e30075d837a7d3e90886bd063221
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314t-manylinux_2_24_ppc64le.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314t-manylinux_2_24_ppc64le.whl
- Upload date:
- Size: 713.5 kB
- Tags: CPython 3.14t, manylinux: glibc 2.24+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d18f8b1c4c1b6bbd1689f414421b9d75a14b9fa22e9a1e0f0181dc57abd6216c
|
|
| MD5 |
939e46f8a4227b0e54d5287d9fd3652b
|
|
| BLAKE2b-256 |
29883548329622dae1391795910dcd372da246464c1dedb1d503d063546291bd
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314t-manylinux_2_24_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314t-manylinux_2_24_armv7l.whl
- Upload date:
- Size: 604.4 kB
- Tags: CPython 3.14t, manylinux: glibc 2.24+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9de32f0db91c24893a1bd7d0143c302ded2e2627480bebeabc52dc3b22a544b
|
|
| MD5 |
cd71075c99d65a00aac044cac62cff2c
|
|
| BLAKE2b-256 |
534b1fde477a330cf85eb727695bee2a42441b755e04293755d891fc3dceb74e
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314t-manylinux_2_24_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314t-manylinux_2_24_aarch64.whl
- Upload date:
- Size: 542.9 kB
- Tags: CPython 3.14t, manylinux: glibc 2.24+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65b756f7f059fa6a475f4f575b3d6c654026ff33d9a8218e8d21a16817fb4498
|
|
| MD5 |
b56516c92a6074c55449d0764be2e09e
|
|
| BLAKE2b-256 |
ec63efe32e35500918db48070d0b09d9921cc25fdb86de440016118040fad1c8
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 409.0 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c531a0e23a115495cea9a4cf48c53403fe748f7e81c2ccf9c3041084bfea9d02
|
|
| MD5 |
6505ec8a23479bb774809eb70e0d9bcb
|
|
| BLAKE2b-256 |
3614869f9bdd6e53ce8eeef61bdb5d56ecda1c7b69df36880e49c62f779aae6e
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314-win32.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314-win32.whl
- Upload date:
- Size: 406.3 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd5cb6ffcf96193d4255342ae346800095aaca848c45eb0e171009f5f9d98ec9
|
|
| MD5 |
79303be9bb509d89b4675817d0f4161c
|
|
| BLAKE2b-256 |
032f023216df140475256b95dbfe654d6ce25e53a9d2b0c1650eb27cacbffe1e
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 774.9 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e732c7e4f9dec36d8bbd2c790026a3834dcf7b37e355d6078055eee33768c49f
|
|
| MD5 |
670a3749796fd98205ec116aa3c06f83
|
|
| BLAKE2b-256 |
1fee296e475b0333237ca0f88f8a526fa974a70a1624a1f58ea2e08e5e48db26
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 843.2 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4df94bed5cc21fe35f1f252fde3cae1e4121c2d55476a9721fcc8aa34b029189
|
|
| MD5 |
f8e2a366be60004d1b774a9eab6c8a8c
|
|
| BLAKE2b-256 |
40cfecbf1f7d6a95ddbcbd2c5648b69051ce447a720fb6e1314909ebeb9f5b85
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 864.8 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41605e754018f1894262a2d2206275dd719407786ed1a99a2dc35fd2ddb3c991
|
|
| MD5 |
bbb04700ded13ce957500e88ba7f9fa4
|
|
| BLAKE2b-256 |
5bf313e108847f708482632e755118d6b7c94a95065f98db5ff87944db0dd121
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 721.6 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7d1c9a41b7b508dab5b3e95b25093df3918661782adee93821f1f06ba89c38b
|
|
| MD5 |
714141f8fb239192caa808eeb54b3761
|
|
| BLAKE2b-256 |
bf0faf691987e6af90b26fd1c0fcd4ac1f5d97efe0c30816d296dce60c746974
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314-manylinux_2_24_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314-manylinux_2_24_x86_64.whl
- Upload date:
- Size: 568.5 kB
- Tags: CPython 3.14, manylinux: glibc 2.24+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cc450ea1790f601311a03c2648d6e876997d84b327f23cb28995ffa67cb53c1
|
|
| MD5 |
373236db84c030e59248e8108e758884
|
|
| BLAKE2b-256 |
75acfda24f6601e0951e622927c40bb07f1f6fc2fc77f6b7e717057ac4b1c07c
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314-manylinux_2_24_s390x.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314-manylinux_2_24_s390x.whl
- Upload date:
- Size: 601.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.24+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed85e746cbf21ac992bb3040ef73be1d01a138cc70e535307a576ab1c16c84cb
|
|
| MD5 |
25b21abea7e37af61c8759f8973c7cf4
|
|
| BLAKE2b-256 |
939e01396977eb44fbbf3c25c97b8689e9125da0fcdf328dc16d2ba6db1569c4
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314-manylinux_2_24_ppc64le.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314-manylinux_2_24_ppc64le.whl
- Upload date:
- Size: 707.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.24+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1da36a553d96a7c41bdd35a6f55f9066dd3396b7d2f0e746e5573403938ec85
|
|
| MD5 |
9b9f580a1029087375a4394ced6b0ed9
|
|
| BLAKE2b-256 |
2f7baefe6aaa7636c246ace8b14db3d536ca12f64e4b4d9b7ca51ee1f15491d3
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314-manylinux_2_24_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314-manylinux_2_24_i686.whl
- Upload date:
- Size: 650.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.24+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2b6c569d513f1e80d1cf4dfdda419c114c61a4e1ca0b106853ea9ede718f737
|
|
| MD5 |
961032c360cc90f4f7ea66c30d6a9e27
|
|
| BLAKE2b-256 |
1887d3f78aa545b215350a782d8e26d547bb5ba5cdb024c8ed3707fa63dc7d83
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314-manylinux_2_24_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314-manylinux_2_24_armv7l.whl
- Upload date:
- Size: 595.5 kB
- Tags: CPython 3.14, manylinux: glibc 2.24+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dab135386d64a6fe57135029f01d2f58105370cf9ee963fa129fd190fb10fbd5
|
|
| MD5 |
f8239af23c6184ef467fa0be0388d0c7
|
|
| BLAKE2b-256 |
e70b7ad5bdb9a18e6dcc2edbe9545eea50aab32fa22ce39b5854da222ccb894f
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314-manylinux_2_24_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314-manylinux_2_24_aarch64.whl
- Upload date:
- Size: 539.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.24+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
716673560099b0eb975d7324a04e02f049e96814a704f9d97bdebd52b820f7cd
|
|
| MD5 |
66518287d4898cdb6b03c4ce846d9cba
|
|
| BLAKE2b-256 |
05cf9d4ea65f2f9fade34ac8c1316a458acce84f536ebdf086ecbfb7b209e631
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 517.5 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2376123a67bd2767c5e9b5c2830f6fbdb7e4446ca392e081a86b1bde52c1549
|
|
| MD5 |
a91ba497509b5cec0c74a6157469e1c1
|
|
| BLAKE2b-256 |
0d9b7cd3cb2840fcc31303e66b75a2996aa248a20a2822f83835bc54670383bc
|
File details
Details for the file wavelet_matrix-2.0.9-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 545.2 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b67e3be8cf1f20310e307aa77d278fda21d15f65f04d9de3eed398e5c229355
|
|
| MD5 |
b442b01fc12ae848d9dfab93a463c442
|
|
| BLAKE2b-256 |
609683ca659e008b234f63aab27cdbefacee7b1b551cb3d5cb3b7d7e59422ec5
|
File details
Details for the file wavelet_matrix-2.0.9-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 785.4 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14bc5fc801472e88138f492b248ed8036aa238cf78f36d9418fc65746663c962
|
|
| MD5 |
c033c5f9ec803e4bb73a21186c3d62f6
|
|
| BLAKE2b-256 |
83db8571f8f48673500591b9fe91fc4785cbbba52a7a365ca6ddc02b23984ae4
|
File details
Details for the file wavelet_matrix-2.0.9-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 850.0 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93d15c734e1a1f57c7705f19e0fa95458f9c4f0b1c920c4d490ba149aaed3fc0
|
|
| MD5 |
204b2f96f479582fa6ec8068a3798120
|
|
| BLAKE2b-256 |
9118f8357158e370a4b5726143965d876860b9a919913c3dabe372b2bce9cc14
|
File details
Details for the file wavelet_matrix-2.0.9-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 873.6 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3dc114eecefd05eed2624f5aa33e7a691bc669e7f974112f2ac3a209a98c9ef
|
|
| MD5 |
feed281622e791fe79ca412f11bcc046
|
|
| BLAKE2b-256 |
b72a636216e828c4147191c08c3cfe5ef7722faf6a1bc2d86e830de5b9c61bf4
|
File details
Details for the file wavelet_matrix-2.0.9-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 724.5 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae85d645db42e21292fcb7e0b560ecfbfefa9b87090b89fe560cf7f5dc855ec2
|
|
| MD5 |
3fe678e5fd8c48b479c70d07a538bc68
|
|
| BLAKE2b-256 |
5058bcabc08e9f942a4f714febb03475a38668550c99720db7379292182303f1
|
File details
Details for the file wavelet_matrix-2.0.9-cp313-cp313t-manylinux_2_24_s390x.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp313-cp313t-manylinux_2_24_s390x.whl
- Upload date:
- Size: 608.2 kB
- Tags: CPython 3.13t, manylinux: glibc 2.24+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ffa77fb5d55b00f6e0b8befa69b05b64510967efdee602dfadd39bd773b6e58
|
|
| MD5 |
a7232915c3809ef9561d210bf6d57cdc
|
|
| BLAKE2b-256 |
791a75e2a15a6318814f9600c3de4c3affd34b17609d1356165b2848fedbc4cd
|
File details
Details for the file wavelet_matrix-2.0.9-cp313-cp313t-manylinux_2_24_ppc64le.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp313-cp313t-manylinux_2_24_ppc64le.whl
- Upload date:
- Size: 712.5 kB
- Tags: CPython 3.13t, manylinux: glibc 2.24+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc5df68d28958d63ccd667f8d37b4ea051a515ed9ff11e3d2734bbcac5eded05
|
|
| MD5 |
8a50f4a5eb874181b143900e60349ba9
|
|
| BLAKE2b-256 |
3b86d2298f1445322be4b6ae82394a5a68fc64791bcfcb33f4e8cc49fd609dbd
|
File details
Details for the file wavelet_matrix-2.0.9-cp313-cp313t-manylinux_2_24_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp313-cp313t-manylinux_2_24_armv7l.whl
- Upload date:
- Size: 603.7 kB
- Tags: CPython 3.13t, manylinux: glibc 2.24+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65781ab242b1e691154ee9d67f6e4459461a01fc6b1dc91dadd095e816170063
|
|
| MD5 |
356db17d4ff5d5240629b1b712b098c9
|
|
| BLAKE2b-256 |
aa0bca5fa908e34fac4fb0e03612d61c9a44f77f8d17ac5ce0cfccb36a468868
|
File details
Details for the file wavelet_matrix-2.0.9-cp313-cp313t-manylinux_2_24_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp313-cp313t-manylinux_2_24_aarch64.whl
- Upload date:
- Size: 542.3 kB
- Tags: CPython 3.13t, manylinux: glibc 2.24+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85f112440732ccc43fd21ba260f749af3757174039cb16949bca2fc1c4ddf145
|
|
| MD5 |
4be1af0e552081e503f45e98512a97fa
|
|
| BLAKE2b-256 |
0d25e01fc896ebb6b178d06cd0dbd5447a2639b5432a76643eac7b035ef948d7
|
File details
Details for the file wavelet_matrix-2.0.9-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 412.3 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
233710721fd609de6676a38aaf8573d741098bfaca93a1ac4eb5d5e03b82013b
|
|
| MD5 |
860e15190f101edf389556f3f5791574
|
|
| BLAKE2b-256 |
1087fd3375e3d58a2204bd23bf37dd6b45d04ef25d9d655ce9bec725232d482c
|
File details
Details for the file wavelet_matrix-2.0.9-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 778.7 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6c92c00b947cb3d3ec60cbdb1ae0889db9fc22d14498bdd766691b0faa427e5
|
|
| MD5 |
f5450fbffe9e2787d40c455aeb4c687a
|
|
| BLAKE2b-256 |
99924e72a217611a88e35501041d4a5477d8ba02b3a89390984d1eec03e0b305
|
File details
Details for the file wavelet_matrix-2.0.9-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 845.7 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
329aef4af23dc38f4741f460d7d3a00779ced4c69aa6d88ed899082535218e11
|
|
| MD5 |
9a68dbf01ad60974e405c57e26eb5031
|
|
| BLAKE2b-256 |
3a5d80ab62f7c6d6c539a280f88ce08fbb98c89b400a6364c5d66d96c2e8e044
|
File details
Details for the file wavelet_matrix-2.0.9-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 868.4 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6b871a2163cdf30376c406292f931b93e11f14b85d92bae80be0306ce3a5c0b
|
|
| MD5 |
52a8a891cd3342618e2e76b7f599a27b
|
|
| BLAKE2b-256 |
04fcabb147716a1584933a16907c9ee9968e9dc391a0a3f60a1bdadaa03dfa06
|
File details
Details for the file wavelet_matrix-2.0.9-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 722.2 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c9cb92596e0627c1182c2060065c6a5dafc3246b07e21a6f23d7a06ffbcb79f
|
|
| MD5 |
3150a5fc7a181d3378d26caf67642af4
|
|
| BLAKE2b-256 |
c78201c70c48c94f846f7a6bb7faba2c302765d95d2189fc6411405ba94124d7
|
File details
Details for the file wavelet_matrix-2.0.9-cp313-cp313-manylinux_2_24_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp313-cp313-manylinux_2_24_x86_64.whl
- Upload date:
- Size: 572.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.24+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
409e932dddc3d9335d13c28d33a70e88dd1e3d675315ab3843b05b1e36b2f2c5
|
|
| MD5 |
0a210d85eead26bf4865757185bc1a1f
|
|
| BLAKE2b-256 |
35e28be487ec5d472e4fb08f95a7ab28f2d0728d54c363897ab6cd72177e1180
|
File details
Details for the file wavelet_matrix-2.0.9-cp313-cp313-manylinux_2_24_s390x.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp313-cp313-manylinux_2_24_s390x.whl
- Upload date:
- Size: 602.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.24+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31bf92fca3857766f623b85659c53c6a9204ea9173c5a2010dd60fffbfbf71b5
|
|
| MD5 |
b92a14b2766168a3f9543de57853b067
|
|
| BLAKE2b-256 |
1489f9ebd52eb38d650d2bd996d1db0cf06d6b2504514c0d21a5a5c5358eb033
|
File details
Details for the file wavelet_matrix-2.0.9-cp313-cp313-manylinux_2_24_ppc64le.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp313-cp313-manylinux_2_24_ppc64le.whl
- Upload date:
- Size: 705.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.24+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d43626b7a7ba60b480763429f24fcd314d31db1798648736372b55d425a6989
|
|
| MD5 |
fc5d334b8405040644beb0576e9efb57
|
|
| BLAKE2b-256 |
94b032cb6d3ee6f7f6fbd8d4ceac747b7e8dd7bbb4649f481cde914a69ab9095
|
File details
Details for the file wavelet_matrix-2.0.9-cp313-cp313-manylinux_2_24_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp313-cp313-manylinux_2_24_i686.whl
- Upload date:
- Size: 653.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.24+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9fe1c85e26312b7bd0cabf2ef79942297b8894d8e661352321e1039b258135d2
|
|
| MD5 |
f8fa32722f2f026b93e527358b4345d5
|
|
| BLAKE2b-256 |
7a5d39de4dbbb64a0c92a743eaefea16bd6432a7c646d116cdd0e23191439d78
|
File details
Details for the file wavelet_matrix-2.0.9-cp313-cp313-manylinux_2_24_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp313-cp313-manylinux_2_24_armv7l.whl
- Upload date:
- Size: 598.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.24+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca817a2699b7a88cac9f08cc916d1b7347fbd4560da875b053b87ba73095d6b4
|
|
| MD5 |
eef0576af194c4e72ea05b29a31a83c1
|
|
| BLAKE2b-256 |
a6dba0a51140b0eaf5f3c7ab2a7858423e5481862ac45de76baee060f3d2332b
|
File details
Details for the file wavelet_matrix-2.0.9-cp313-cp313-manylinux_2_24_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp313-cp313-manylinux_2_24_aarch64.whl
- Upload date:
- Size: 540.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.24+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
090bf8811f1847fc0ddbb2da49becafcd5cfbb1e15f617c78d44547f545e7bf1
|
|
| MD5 |
407358d6789cc0b4757cbf9a6a5d5e46
|
|
| BLAKE2b-256 |
e0d44e4ebd70bdea812aad34bf36f1933453cdd5a6e58ba5640bb4a509793a3c
|
File details
Details for the file wavelet_matrix-2.0.9-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 520.9 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e53f16d62e6ba69df803bbddab2b49bc94497c22e569c9f0f6682152e2f2be25
|
|
| MD5 |
98a0f45c821088e08a71b0287de05d8a
|
|
| BLAKE2b-256 |
4707014c5493f6edd9c061583ea62b20aec8dc7259dd80f9ffa5aa7caff3b123
|
File details
Details for the file wavelet_matrix-2.0.9-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 549.2 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2f3518fdb7dab95e16b56d489c1139d9d295599b476797699d45498a9084078
|
|
| MD5 |
d63cbe57729545ffff0a0aa3212dfaa7
|
|
| BLAKE2b-256 |
5620c5213d79f17c72a41dcd74d6bbf069ce6bd7548f49119626351245f9fc05
|
File details
Details for the file wavelet_matrix-2.0.9-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 412.5 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
856f56d503276eab08fcb9af1003b0ce0d389015559c08d23fe13f96582faf19
|
|
| MD5 |
69186532691724d4966ac9beaaaa374f
|
|
| BLAKE2b-256 |
0d7fe29371ad556b8279a1b668fe3c5531430d134778049b95d25ca9d134e3f5
|
File details
Details for the file wavelet_matrix-2.0.9-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 777.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a658a49665df15ec097fd44d0031357a3f9a6ae723fb1a492b89dfd18d7d8ef5
|
|
| MD5 |
90c5bef210bd7fe530aeb1f1373eccda
|
|
| BLAKE2b-256 |
f532dc64d86ecc3d1b777ac33de2c09e10bbe7aacaaebbd4e1a241db9522fc24
|
File details
Details for the file wavelet_matrix-2.0.9-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 845.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2febe913ab9e06c36c60ae0b6da9a2bf0abde97757fb951d7642599a6e52019c
|
|
| MD5 |
645d983db24cb37474da190fc007828e
|
|
| BLAKE2b-256 |
8534fb0a1b7c50d5e18ee64e46eb5ce1bc0d93c3a5b98a0aee7c00418800e69b
|
File details
Details for the file wavelet_matrix-2.0.9-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 869.0 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b2ec4714d3c69a3eebb4cc90ec2484b594ec5960f9263bb083021ee40f65ef1
|
|
| MD5 |
86701adab7f0981f9f041782c72c4159
|
|
| BLAKE2b-256 |
98ef7ab4b2ca8eed79d4dc9c659edc0c6e12b9746e5ad6963c7b7a8315f72226
|
File details
Details for the file wavelet_matrix-2.0.9-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 722.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2cd731b21b6b5e8757172ae32380729a1d91cac46ffdb3bf018d01554d066b51
|
|
| MD5 |
a02f115d9c287f02494543d75307f780
|
|
| BLAKE2b-256 |
b002b36737f67dec740ac1bce23b514bade3be1f9109a3668b6c120889e68d18
|
File details
Details for the file wavelet_matrix-2.0.9-cp312-cp312-manylinux_2_24_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp312-cp312-manylinux_2_24_x86_64.whl
- Upload date:
- Size: 572.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.24+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
292eaf6db352386b4346d6f9ebed4f1d5fa4fdeba36917489301a5bd713dec9e
|
|
| MD5 |
b3e686ea03727049bd1e3662e0b8188f
|
|
| BLAKE2b-256 |
585bff51d0b2fd1ed93d2d5a9b65027ebe6ae62e5a41ac8a24264ce28bb7fa91
|
File details
Details for the file wavelet_matrix-2.0.9-cp312-cp312-manylinux_2_24_s390x.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp312-cp312-manylinux_2_24_s390x.whl
- Upload date:
- Size: 602.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.24+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
815d6ade96dda894a0500076617b5225e121f15a812aac2c3febc524a944777e
|
|
| MD5 |
58476ebfe1b7fd195e5ff4e5c105e51e
|
|
| BLAKE2b-256 |
cb6b6e652930c993b08eda3fa3aa343145f6f8a5ff8633629f2a255321747716
|
File details
Details for the file wavelet_matrix-2.0.9-cp312-cp312-manylinux_2_24_ppc64le.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp312-cp312-manylinux_2_24_ppc64le.whl
- Upload date:
- Size: 704.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.24+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
366d50512dd63efad776fd00b88525e1b64467719e68c3dcbf770bbb013a9db9
|
|
| MD5 |
938ce58666e4d768d530306ff4165e7e
|
|
| BLAKE2b-256 |
cfcfb54b76ef64476304de9a7f7b72f2d8371ef3a14bed9f88a0420ee163f238
|
File details
Details for the file wavelet_matrix-2.0.9-cp312-cp312-manylinux_2_24_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp312-cp312-manylinux_2_24_i686.whl
- Upload date:
- Size: 653.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.24+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aab82da577e8c85888d7f9714b267ef58799adecf0df0fbb5e2e6186d8a7f9fe
|
|
| MD5 |
ddbed49aeadb2738ef657e3ad3c1dc8c
|
|
| BLAKE2b-256 |
1107dae278f32cdf06fe99517220809ce1f9358403d6da50255bbc66aab8e9ba
|
File details
Details for the file wavelet_matrix-2.0.9-cp312-cp312-manylinux_2_24_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp312-cp312-manylinux_2_24_armv7l.whl
- Upload date:
- Size: 599.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.24+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3ed41b0238cb01e9c5f81ac3597f1db8d4bc811750d26df083adb5f9e207bbe
|
|
| MD5 |
52d82ee827a387fdd8b48cb65f231f76
|
|
| BLAKE2b-256 |
69ab19597313b035c3bf9b3c9106dd809d70dcb69b105bf955c697e6fa63ecdf
|
File details
Details for the file wavelet_matrix-2.0.9-cp312-cp312-manylinux_2_24_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp312-cp312-manylinux_2_24_aarch64.whl
- Upload date:
- Size: 539.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.24+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd9de7ba87a79ee5660d325f1554af92bf1fa91c9a8cc04f9caae6684c152ada
|
|
| MD5 |
0f8ee0f3305fd2df4f204cccbcec118b
|
|
| BLAKE2b-256 |
c617370a6c50e82949b7e12df9efa96bcfacccbfca4fa7977876f972eb63aae8
|
File details
Details for the file wavelet_matrix-2.0.9-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 520.2 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cec9a2cea2520e48281f21cd72306422319a3d1f20eb44f81412a4cb51cb2d3d
|
|
| MD5 |
72f9f6287ec725c7d1ed696d61ed5d4c
|
|
| BLAKE2b-256 |
9820aee178ef97862492a77bb3c1849d664e7701720c94db62095f268ec0f38d
|
File details
Details for the file wavelet_matrix-2.0.9-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 549.1 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b57322cc8a1887a615da29fccc44554ebc3ff00e0ec6b979bc155fbb4c8f10da
|
|
| MD5 |
57afd863fb7c12addf6e532842025d1b
|
|
| BLAKE2b-256 |
f95a071bf9755f9985b42b1786ecb7f89625179fd4dea71b5abdb45b83a5bdc5
|
File details
Details for the file wavelet_matrix-2.0.9-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 410.1 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e69415b683177a35376bb9639574bc0d61031fd7c91daae21df36177165085d
|
|
| MD5 |
56ac9369079543d2ceadacdb4e8a3343
|
|
| BLAKE2b-256 |
1f8d8199f2ce4d022f0bb1a4e20f1bef81816ff873ee6500e5b23188ed929b9b
|
File details
Details for the file wavelet_matrix-2.0.9-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 774.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1b672b50ce59dc697308d5143f2ab7c95d15a259841b4e7f7a72acf4159d1d7
|
|
| MD5 |
97207f2881a6d533a02ddf14f614f800
|
|
| BLAKE2b-256 |
f624105f79caeb215e292061202160cf1bb487a0bca67617f41a19a0a47ca4c3
|
File details
Details for the file wavelet_matrix-2.0.9-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 843.5 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d77a7f9ab1fd094a244ec401befde483e64102800f69449ba99228607cd48aa9
|
|
| MD5 |
4f4d86e388279ddc023115ba14ca3af9
|
|
| BLAKE2b-256 |
6267fb740a6f3d01feed1bbde33810f8f7aa114fe6fb9f7689e08f08b34c455d
|
File details
Details for the file wavelet_matrix-2.0.9-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 863.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
713dd29f1c16acf993e8143a95979bea8a14905b692bb7acd382c1ebfb3f7bc7
|
|
| MD5 |
304af971c43ab8af93ca941ff8538abe
|
|
| BLAKE2b-256 |
072bfa7f562d82cbd03ec602ef6a8fed21800cd0022a721c6558d160fc30c917
|
File details
Details for the file wavelet_matrix-2.0.9-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 722.1 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99a4cd66337f7610e6e2b30f338be05ba1959ceb45d6c210d6830ae8836cbfd2
|
|
| MD5 |
3660d074f1973bbe42aa7ec672902375
|
|
| BLAKE2b-256 |
2ec49dd3478ac322742712a605027638dc0bba336df6caa42302d843f4223360
|
File details
Details for the file wavelet_matrix-2.0.9-cp311-cp311-manylinux_2_24_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp311-cp311-manylinux_2_24_x86_64.whl
- Upload date:
- Size: 569.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.24+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5152aaef45da0e8ce7f1b84776c33db86988fe8595d3f10aaf41c3f565878558
|
|
| MD5 |
58be49d2bc3af452ee0200b75f15ddb2
|
|
| BLAKE2b-256 |
0b44949f225a8ebc1db96d0ed6e2a0a8882d333b18c2bc7b8c3c83e8e7881c9b
|
File details
Details for the file wavelet_matrix-2.0.9-cp311-cp311-manylinux_2_24_s390x.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp311-cp311-manylinux_2_24_s390x.whl
- Upload date:
- Size: 600.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.24+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f8118af06527024d032239a0169564fd04b5a29e28a1af616b701ef99ad27c8
|
|
| MD5 |
bcc9590ce9545a1a19aacee064610a54
|
|
| BLAKE2b-256 |
37770b9fccbc0045d13bcdc969f5c8209054761d008b42b039ba244ec13be7a7
|
File details
Details for the file wavelet_matrix-2.0.9-cp311-cp311-manylinux_2_24_ppc64le.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp311-cp311-manylinux_2_24_ppc64le.whl
- Upload date:
- Size: 711.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.24+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c567e0dfe4a072a0439503ad79530fe252451bef3467cc1ca0c92fe07d44e12e
|
|
| MD5 |
93bde80fa97404c33f1beaaf3736289e
|
|
| BLAKE2b-256 |
a2baa02e542de07cf483c7d6fce10d179c6da359b0e147df62520cd3dc570169
|
File details
Details for the file wavelet_matrix-2.0.9-cp311-cp311-manylinux_2_24_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp311-cp311-manylinux_2_24_i686.whl
- Upload date:
- Size: 648.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.24+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
687cad64b2afb3c97f31ff15f8e35039d091bf5240c1e6d5c0abadcd50226a1d
|
|
| MD5 |
9e9f70523f343621008472e0326a27e2
|
|
| BLAKE2b-256 |
0e365613fbc975ad112f477d62798ea76e36706437c44242c4b820317cd25aa6
|
File details
Details for the file wavelet_matrix-2.0.9-cp311-cp311-manylinux_2_24_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp311-cp311-manylinux_2_24_armv7l.whl
- Upload date:
- Size: 594.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.24+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5bcaf8f95e1c189dd45337a8127e2b0bd1705691ef3b9f98caf2e6ad6b502487
|
|
| MD5 |
e49db69a4dccd7c91efa99d1a01fbf36
|
|
| BLAKE2b-256 |
e18e652f424d6c8dc59d5d4e562a684ab4ee461ea0cf613f876d576c2f137d0e
|
File details
Details for the file wavelet_matrix-2.0.9-cp311-cp311-manylinux_2_24_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp311-cp311-manylinux_2_24_aarch64.whl
- Upload date:
- Size: 540.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.24+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0623817040fb083d4c2a62cff9cb881e63aa7ca5667f8214bd21113948c7d9e5
|
|
| MD5 |
ea0f2aaf1a436b867b98b7138c06a51d
|
|
| BLAKE2b-256 |
1f02b5ae7b5dd9a9dff03340f4c8849dee0810b3088ba7d8fb042be8a81e654f
|
File details
Details for the file wavelet_matrix-2.0.9-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 518.6 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c32b9433ae343b879ffcac43c096c0bc8bc7f2da6baee13de67fd57a6e939d3
|
|
| MD5 |
45850ff395095b1f4ff2a002f4acba1d
|
|
| BLAKE2b-256 |
61caf792891b2521abbc7e33fc207733a4a26e082f9a5277210f2595070a8ac7
|
File details
Details for the file wavelet_matrix-2.0.9-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 549.7 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
748c036c04cfdb113c6bc9f9ec23a470490f6f5f77ac11d5f72fd8c3538fa987
|
|
| MD5 |
8d3eead2828c6e337f48464969168c5e
|
|
| BLAKE2b-256 |
a874c7672bb07e69cb435243dce88fac1fe0b2361f4182cc1da765adc1597a89
|
File details
Details for the file wavelet_matrix-2.0.9-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 410.1 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0271fa91a11a31bc399f8e00edaa77e7eb580f871d79dd20f07a3198915f117
|
|
| MD5 |
de7aee6661ed8882e4cedd482f0e69f0
|
|
| BLAKE2b-256 |
fad0d8411d8e8dbc25e36711ca73dd29396e13a7c29d6375db7b5ffdc43a0d64
|
File details
Details for the file wavelet_matrix-2.0.9-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 775.0 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
960e5b6941dc07f764ae7beed1142af154475ac24a0c483d5a52e6737af9396d
|
|
| MD5 |
a5b0b00813f010bd11b7497b3065d851
|
|
| BLAKE2b-256 |
62453e446abef563a429ac40afb232e2e458adfafb3cc7e33a9939066b10b9a3
|
File details
Details for the file wavelet_matrix-2.0.9-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 843.7 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df0ab3c5e657b2fcee7aa0b92f9cc77816bd0b77cd1f72c41d797144685725db
|
|
| MD5 |
a7443a13e09352552317c6f0a56f9e91
|
|
| BLAKE2b-256 |
db835d14ba111eda25c345be0bbec56e7f86e065feb38c7ade89b2fa8835c40f
|
File details
Details for the file wavelet_matrix-2.0.9-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 863.5 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5c082f8cbbcd63b125073ee16201bfa79c3d313221f08fa1bc107b9aa6aad35
|
|
| MD5 |
1fc9a9b786714c246707386dacf02bd4
|
|
| BLAKE2b-256 |
3081774e502180c4bc1d485474349b5d3eb7ed9f6c683f902aa9c88ea61347f7
|
File details
Details for the file wavelet_matrix-2.0.9-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 722.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ead8ab09560c290b0d5280da010bd7577fef1ab99787aaacbd6564ca9d539f34
|
|
| MD5 |
d571d9527fa7aaf7b0d2c46b896ce7e3
|
|
| BLAKE2b-256 |
7628b0d1e34321f16d5381051a614e10d7e13401750ab0293d243798e05d56a9
|
File details
Details for the file wavelet_matrix-2.0.9-cp310-cp310-manylinux_2_24_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp310-cp310-manylinux_2_24_x86_64.whl
- Upload date:
- Size: 569.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.24+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
818b5f86428da6bc245b39ee21f82b216c396eaac4443a4b492e06d775835427
|
|
| MD5 |
27befa49a451452a02cac485ba42c241
|
|
| BLAKE2b-256 |
c140c8417cc42dc17fb698399442e61a15ed9a02715752629498777baa8d92e1
|
File details
Details for the file wavelet_matrix-2.0.9-cp310-cp310-manylinux_2_24_s390x.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp310-cp310-manylinux_2_24_s390x.whl
- Upload date:
- Size: 601.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.24+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e989671f623c9a8768494a84873d5f100f66fe19d3d066031cffa5cbb7146c78
|
|
| MD5 |
11342f8481fc1842c4091871c41bc860
|
|
| BLAKE2b-256 |
2b17cbcb65b21c3fd52fc1cfbda5cae9914323e51191c9566dae02cc1784f998
|
File details
Details for the file wavelet_matrix-2.0.9-cp310-cp310-manylinux_2_24_ppc64le.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp310-cp310-manylinux_2_24_ppc64le.whl
- Upload date:
- Size: 711.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.24+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c78910a38e40edf6a22b3650097ea1edc59e110345e5597fed6204e3daf059af
|
|
| MD5 |
7f86d1a520cf542aaeee69d514a90383
|
|
| BLAKE2b-256 |
74a653501d3acd369ba3baa11add89aad473323225a3f16b21e31867d13258ca
|
File details
Details for the file wavelet_matrix-2.0.9-cp310-cp310-manylinux_2_24_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp310-cp310-manylinux_2_24_i686.whl
- Upload date:
- Size: 649.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.24+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6197ae005a5fbf4c666b540c1404418bdf8187c34801cd804edfeed586b79439
|
|
| MD5 |
45ce979cc3ea3cd24c918a5bb117b23c
|
|
| BLAKE2b-256 |
eb3584f9286234c0c4c3634edfe2ef7fc382f9707dfd1c570a9924ca8c791fba
|
File details
Details for the file wavelet_matrix-2.0.9-cp310-cp310-manylinux_2_24_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp310-cp310-manylinux_2_24_armv7l.whl
- Upload date:
- Size: 594.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.24+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d9189d1086ec19276b26c1a8b71b1bae28271682bd2a01c4a49ed565d59d1f9
|
|
| MD5 |
1ed2cf55702d158d71423f0dd4814752
|
|
| BLAKE2b-256 |
e4dfd967d71457679432dad513bf3b11a4217c98c0028e6885cd5e2286aa6a91
|
File details
Details for the file wavelet_matrix-2.0.9-cp310-cp310-manylinux_2_24_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp310-cp310-manylinux_2_24_aarch64.whl
- Upload date:
- Size: 540.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.24+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa006aacd14dd120646ab2186677106d69d44298311e884f9ece3645d505ab30
|
|
| MD5 |
e638cba4d0554d0f6a40cd43d3db73e7
|
|
| BLAKE2b-256 |
97e8605fef5157bb60419955f8b39368b283144065d0730b81c9a26f360dcdd5
|
File details
Details for the file wavelet_matrix-2.0.9-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 412.2 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
145b359d6ad61eebee82134ac3e91340e01ca7d37a1d38970bf2ab12fd368d39
|
|
| MD5 |
275c039249e7c4bde5e0aa49ad50296a
|
|
| BLAKE2b-256 |
40dc09241af7f6f920b1f06763981bef6fbb702317c2b657a54cf17b6928d97e
|
File details
Details for the file wavelet_matrix-2.0.9-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 777.6 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
543a9a0ee6b9d76383ad2a1d573252eab284acf67fe5b50f9ecbf438c63e64b5
|
|
| MD5 |
4620be38789dc838fb6be184a74fffcf
|
|
| BLAKE2b-256 |
4ea771549f54c46f521422627f7caf2b78665ab86a8f6c73ce0619f2af009626
|
File details
Details for the file wavelet_matrix-2.0.9-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 845.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b93cf8dc245ea729e1992cc28665189dad6b74e5d62f45dcba53d59654280a5
|
|
| MD5 |
da01cb50f80f3950e935677a3752d2bc
|
|
| BLAKE2b-256 |
9b9c8c724fa5f9e4ad9a2d297edccb7dd68662a562e28b1c4f24025cb3157c80
|
File details
Details for the file wavelet_matrix-2.0.9-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 865.9 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc51da66b8f2c631d6749168a08b6b99b48f31763094ff32c4f0c044bcd79043
|
|
| MD5 |
b9c073a8922891efb142b239c9453981
|
|
| BLAKE2b-256 |
b252ee9b4cc345f75630ea75a328064586f093d8f75a7b475da770cce252b165
|
File details
Details for the file wavelet_matrix-2.0.9-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 724.7 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba1970c15572c529e6d21d6ae32a5f28c1ed2c8db81686cc47e65306926e8cb2
|
|
| MD5 |
24310badcc418dff5c4e495c0e0abbea
|
|
| BLAKE2b-256 |
186a13ecf92de632ee362c37ad4864636e7110600535a802ad6dedfc951e0999
|
File details
Details for the file wavelet_matrix-2.0.9-cp39-cp39-manylinux_2_24_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp39-cp39-manylinux_2_24_x86_64.whl
- Upload date:
- Size: 571.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.24+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab36dd82500822c533637b47133f9d9cba0e31fab5b4d338b0780404a3de555f
|
|
| MD5 |
4ef9894a410ea70e4ce8c983d22e4ca3
|
|
| BLAKE2b-256 |
3848e7f93441c72fdb83a939ea13d7c2cb79fb6645fc98fa721a52a698899664
|
File details
Details for the file wavelet_matrix-2.0.9-cp39-cp39-manylinux_2_24_s390x.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp39-cp39-manylinux_2_24_s390x.whl
- Upload date:
- Size: 603.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.24+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
919a319eb0a0e02719b80c35c3a1c13bfb51af1ca7657d3e4591a5a2291aa83b
|
|
| MD5 |
9a53b385e87e9ba9e665b1df2cec71c9
|
|
| BLAKE2b-256 |
cd30cc544ae377d6ba13d6af611a411e6517560afccfd98bf46e76e739ba484a
|
File details
Details for the file wavelet_matrix-2.0.9-cp39-cp39-manylinux_2_24_ppc64le.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp39-cp39-manylinux_2_24_ppc64le.whl
- Upload date:
- Size: 713.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.24+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c16f27a362b58eb43aaf7053f0cc5ea639f56b56fd47f9d72219aba2fae2fbb9
|
|
| MD5 |
35e9b3407d72668244755c2ed6e3881f
|
|
| BLAKE2b-256 |
5f36a4a2ad94f4221e52e4ece7b857cc49d46f32585afdfa1ea2217b0068848b
|
File details
Details for the file wavelet_matrix-2.0.9-cp39-cp39-manylinux_2_24_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp39-cp39-manylinux_2_24_i686.whl
- Upload date:
- Size: 651.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.24+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6dc9b5243b1dce309e94fdd961509205c01434a6b79334fdcbb87a4567df59a2
|
|
| MD5 |
c655f4d8beb4d2451c2447745369b9cc
|
|
| BLAKE2b-256 |
56baf413b91070d71ec964dad065df70d624447421d9c04bf832ebede64ab802
|
File details
Details for the file wavelet_matrix-2.0.9-cp39-cp39-manylinux_2_24_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp39-cp39-manylinux_2_24_armv7l.whl
- Upload date:
- Size: 596.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.24+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da1c2b543157817eaaf18a545cf61cca565d07afe65ca51cd866c9e7095b5ff3
|
|
| MD5 |
895559cdc79289e30c874665a91aada0
|
|
| BLAKE2b-256 |
28492e94b373704ffe8bd4ac861d9ad5e9e6e2b9bff1ccc86c27260b1636bbe3
|
File details
Details for the file wavelet_matrix-2.0.9-cp39-cp39-manylinux_2_24_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.9-cp39-cp39-manylinux_2_24_aarch64.whl
- Upload date:
- Size: 542.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.24+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c6c34ca6320511955dc76a1876f1be7caf26fbcffa0ba6eafcea5fdfe94c699
|
|
| MD5 |
6aaa7820d05b2fc9daaf78ae83c9d5f1
|
|
| BLAKE2b-256 |
d32c7d87c9bb509c11f8efcbdb433bce3b66afbc936df7c0c8e8f601f41bcb84
|