High-performance indexed sequence data structure powered by Rust, supporting fast rank/select and range queries.
Project description
Wavelet Matrix
High-performance indexed sequence structure powered by Rust, supporting fast rank/select and range queries with optional dynamic updates.
- PyPI: https://pypi.org/project/wavelet-matrix
- Document: https://math-hiyoko.github.io/wavelet-matrix
- Repository: https://github.com/math-hiyoko/wavelet-matrix
Quick Start
$ pip install wavelet-matrix
WaveletMatrix
>>> from wavelet_matrix import WaveletMatrix
>>>
>>> # Create a WaveletMatrix
>>> data = [5, 4, 5, 5, 2, 1, 5, 6, 1, 3, 5, 0]
>>> wm = WaveletMatrix(data)
>>> wm
WaveletMatrix([5, 4, 5, 5, 2, 1, 5, 6, 1, 3, 5, 0])
Count occurrences (rank)
>>> # Count of 5 in the range [0, 9)
>>> wm.rank(value=5, end=9)
4
Find position (select)
>>> # Find the index of 4th occurrence of value 5
>>> wm.select(value=5, kth=4)
6
Find k-th smallest (quantile)
>>> # Find 8th smallest value in the range [2, 12)
>>> wm.quantile(start=2, end=12, kth=8)
5
List top-k highest frequent values (topk)
>>> # List values in [1, 10) with the top-2 highest frequencies.
>>> wm.topk(start=1, end=10, k=2)
[{'value': 5, 'count': 3}, {'value': 1, 'count': 2}]
Sum values in a range (range_sum)
>>> # Sum of elements in the range [2, 8).
>>> wm.range_sum(start=2, end=8)
24
List intersection of two ranges (range_intersection)
>>> # List the intersection of two ranges [0, 6) and [6, 11).
>>> wm.range_intersection(start1=0, end1=6, start2=6, end2=11)
[{'value': 1, 'count1': 1, 'count2': 1}, {'value': 5, 'count1': 3, 'count2': 2}]
Count values in a range (range_freq)
>>> # Count values c in the range [1, 9) such that 4 <= c < 6.
>>> wm.range_freq(start=1, end=9, lower=4, upper=6)
4
List values in a range (range_list)
>>> # List values c in the range [1, 9) such that 4 <= c < 6.
>>> wm.range_list(start=1, end=9, lower=4, upper=6)
[{'value': 4, 'count': 1}, {'value': 5, 'count': 3}]
List top-k maximum values (range_maxk)
>>> # List values in [1, 9) with the top-2 maximum values.
>>> wm.range_maxk(start=1, end=9, k=2)
[{'value': 6, 'count': 1}, {'value': 5, 'count': 3}]
List top-k minimum values (range_mink)
>>> # List values in [1, 9) with the top-2 minimum values.
>>> wm.range_mink(start=1, end=9, k=2)
[{'value': 1, 'count': 2}, {'value': 2, 'count': 1}]
Get the maximun value (prev_value)
>>> # Get the maximum value c in the range [1, 9) such that c < 7.
>>> wm.prev_value(start=1, end=9, upper=7)
6
Get the minimun value (next_value)
>>> # Get the minimum value c in the range [1, 9) such that 4 <= c.
>>> wm.next_value(start=1, end=9, lower=4)
4
Dynamic Wavelet Matrix
>>> from wavelet_matrix import DynamicWaveletMatrix
>>>
>>> # Create a DynamicWaveletMatrix
>>> # max_bit sets the maximum bit-width of stored values (auto-inferred if omitted).
>>> data = [5, 4, 5, 5, 2, 1, 5, 6, 1, 3, 5, 0]
>>> dwm = DynamicWaveletMatrix(data, max_bit=4)
>>> dwm
DynamicWaveletMatrix([5, 4, 5, 5, 2, 1, 5, 6, 1, 3, 5, 0], max_bit=4)
Insert value (insert)
>>> dwm
DynamicWaveletMatrix([5, 4, 5, 5, 2, 1, 5, 6, 1, 3, 5, 0], max_bit=4)
>>> # Inserts 8 at index 4.
>>> # The bit width of the new value must not exceed max_bit.
>>> dwm.insert(index=4, value=8)
>>> dwm
DynamicWaveletMatrix([5, 4, 5, 5, 8, 2, 1, 5, 6, 1, 3, 5, 0], max_bit=4)
Remove value (remove)
>>> dwm
DynamicWaveletMatrix([5, 4, 5, 5, 8, 2, 1, 5, 6, 1, 3, 5, 0], max_bit=4)
>>> # Remove the value at index 4.
>>> dwm.remove(index=4)
8
>>> dwm
DynamicWaveletMatrix([5, 4, 5, 5, 2, 1, 5, 6, 1, 3, 5, 0], max_bit=4)
Update value (update)
>>> dwm
DynamicWaveletMatrix([5, 4, 5, 5, 2, 1, 5, 6, 1, 3, 5, 0], max_bit=4)
>>> # Update the value at index 4 to 5
>>> # The bit width of the new value must not exceed max_bit.
>>> dwm.update(index=4, value=5)
2
>>> dwm
DynamicWaveletMatrix([5, 4, 5, 5, 5, 1, 5, 6, 1, 3, 5, 0], max_bit=4)
Development
Running Tests
$ pip install -e ".[dev]"
# Cargo test
$ cargo test --all --release
# Run tests
$ pytest --benchmark-skip
# Run benchmarks
$ pytest --benchmark-only
Formating Code
# Format Rust code
$ cargo fmt
# Format Python code
$ ruff format
Generating Docs
$ pdoc wavelet_matrix \
--output-directory docs \
--no-search \
--no-show-source \
--docformat markdown \
--footer-text "© 2025 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.7.tar.gz.
File metadata
- Download URL: wavelet_matrix-2.0.7.tar.gz
- Upload date:
- Size: 57.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16f0d843b542937ec1da1f7c4415bc5b25dcf8345a4474097fc8b32a1f08cfa7
|
|
| MD5 |
d63a2269586570997364296858d1e2a0
|
|
| BLAKE2b-256 |
ea2b97656dee3d90c4e577354c20bea2cb4ddaf82e5de6bb560253b317c55580
|
File details
Details for the file wavelet_matrix-2.0.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 774.3 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44a12a1aa5440b58937c80f49a1b6d5c8d986b957ea9c82d37e35b227c88cecb
|
|
| MD5 |
5a3a92e40a8ebd486293b3164b4b988c
|
|
| BLAKE2b-256 |
6f62204207e0a8f51f8de4fcedaded4e8d7f81a0a2b1cf29282c8ed929a825b0
|
File details
Details for the file wavelet_matrix-2.0.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 841.2 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b676f758921e964fdf4ad9516231b3295f7ffdf160eb6cdc750c3a3cfc564553
|
|
| MD5 |
12bf5ee443e3bdf5a99f0a2295491cf0
|
|
| BLAKE2b-256 |
181e06c73c7b2038edc408bd816dd1f800c2fafcca7c2fc00727cc9004635035
|
File details
Details for the file wavelet_matrix-2.0.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 864.9 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18a8c93e25670ce90eb196c42b3ce77192f72e9b22702e8a007d984b9d308bdb
|
|
| MD5 |
14bb4b6ae0be9f54643a03fb94a20fb2
|
|
| BLAKE2b-256 |
6625516cdf6652d7c56fe7e765e76be13ec0b398f2207fa375e0cbf2859c1c3d
|
File details
Details for the file wavelet_matrix-2.0.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 715.1 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db106db10a45a91e2e6b12024f60a535ba6f1b5fcfe2de0908510d11d0a60ca0
|
|
| MD5 |
49574ab093955b02d9d0ae7ec306794c
|
|
| BLAKE2b-256 |
cb759f996fdabb9466ef45223cfd3fb70cba4f978e0a191426e84752eecad12e
|
File details
Details for the file wavelet_matrix-2.0.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 568.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22dff5c53215d97d7ee142f7a8702695890b256d13e1b018967c14ce27c1862a
|
|
| MD5 |
021a9e7977ecd5ed14e57cc36a26cbd6
|
|
| BLAKE2b-256 |
65e88bcc756fb4a3138fad0fa4c130a3f18093e0512dcebd79cb1c1b18116759
|
File details
Details for the file wavelet_matrix-2.0.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 599.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1385f86f6532128f4cc9de30c15f48c6a54f6590786496a6b89651966407c9b4
|
|
| MD5 |
b10fbc6f260c321c01856df04d4e70a7
|
|
| BLAKE2b-256 |
f9760ae1ececf0346078c7aa4a8970956f02e8a12aa4b3904f055f7196e2f166
|
File details
Details for the file wavelet_matrix-2.0.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 700.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb725994c5744b3ce5b8be6873cdfdf24ebb47f92bab3441af94532dfe820d3c
|
|
| MD5 |
27ca1529345978afa8c2a6995e31e1c5
|
|
| BLAKE2b-256 |
382adc66279583a33431d46dc256d25fef9bb578eeaab91d1acd6d999db012f4
|
File details
Details for the file wavelet_matrix-2.0.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 595.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a6083306bd6f362af488db3755823a33a397be8e5528c51d4f6214881f851f6
|
|
| MD5 |
ec919c7e445d9958421213441079cb92
|
|
| BLAKE2b-256 |
64e72838e484b5152d7e608955446d6e0c5ef0c223b50ba99161b76f4e7479d3
|
File details
Details for the file wavelet_matrix-2.0.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 535.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d52d30fa143b6367286b5d10fa0bd7d2d521103507d9cb7f09fda77a73fb187b
|
|
| MD5 |
51e4b69d0245da9a757246831887ae02
|
|
| BLAKE2b-256 |
155be07f299dc82a2ac8a07f8acc48aca38033212273f67bbe2de0cc0e398214
|
File details
Details for the file wavelet_matrix-2.0.7-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 647.0 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0cd2e607c583c13b61d9fb164261366b069f479d731680f7b095e08f303788fa
|
|
| MD5 |
a575702dcc07c3438c58e8243dea44db
|
|
| BLAKE2b-256 |
e0ffaca761ae9e9a63936da99a8ff01cdb64dc8400d9fb86d42c5bcdb0556098
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 783.8 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2cf11bf4d3f3bde0e2c64c33cace8281ba76ec36edd32d69e11164d64ac5c8c9
|
|
| MD5 |
ff611184d02d95e274917b72dedcc7b7
|
|
| BLAKE2b-256 |
38b90efba1720733812d8511a6933c2785e876f0b8f48ef9e49187f6f665a2ab
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 847.8 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
886dcb26b8da28d69873c194412d04c41f2c827927ce8ad4ff41f4c0d3d5bc01
|
|
| MD5 |
b7fa9badfffba5b254017b442195f963
|
|
| BLAKE2b-256 |
94659c85cfa9e5a04004163333f4e5d94feb518f90b133d2980a3c4ba758fe63
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 874.4 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7830fe158eb8d01cd3f136d9e27b1654be50c218453f6ceb2a77c19fe958c988
|
|
| MD5 |
2ebf4db2db2db60e606769f93a2c3dd8
|
|
| BLAKE2b-256 |
de70984c87e749f953640eeb627d4b202c6307c238f3c2ed867f9eb497b6f08d
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 719.5 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fbe0ff49c1ef9a7c61635a953d9cdef1860a26113a2edab64329c03d5c12fa85
|
|
| MD5 |
0c8c4b76fc45645fea2abd410c4dfa95
|
|
| BLAKE2b-256 |
5f92fbd3cbb984899b02095e6071b355d65977564c0394fce99145034387c5d7
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 605.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29ad34e560042d313a52579d7799a1d58a2e6b315db811215d70dd21ed25fdbc
|
|
| MD5 |
1e79834b365090c491ac2e3c3837d731
|
|
| BLAKE2b-256 |
1fb68c0bb481cbbb522aed9084547c7275fd4093750570d3040842ac1e41e68c
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 704.6 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36acb8f19fd911f0be92ca3299cfc40bd712f7a1c5ebff0a54f46bfbaeb621b8
|
|
| MD5 |
88bcda4012847315de441e3d327c793c
|
|
| BLAKE2b-256 |
9a4f2e6f271a69f72d7b6edfc9acb4d52c66fa6bc4e7492dfdf1a112d415c813
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 604.2 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7cdae066a112ab08ec4dd60b25fd2ae6a875e9b01b57df2bd4d3429fe69c646
|
|
| MD5 |
6fa109679d0202ac3abe6312408eb2a9
|
|
| BLAKE2b-256 |
af710797d747239bf87ffdf0cffebac5af6f62535427dacf16db064b097ff528
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 538.4 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b83fbf8a5f7a0740e9e36578c578ca26ff37f7ff3e600c395a99fe02c0b8ed6b
|
|
| MD5 |
26d93bd84ea70dd507abac5521c8908f
|
|
| BLAKE2b-256 |
9e47f90e26f43f87b21e584ca704214e781359a795160b7e2aef07f29b45e1fd
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 402.2 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36c14456ffa5ca092eae44589edebc6c7f26befdae5bad9b706a7ae8c9c04323
|
|
| MD5 |
e3ac152dade145545be5738d93c35ab8
|
|
| BLAKE2b-256 |
807ead21a8837547551ce24c3bb06d9cbb64d217f5d8055a3ce6b57736304082
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314-win32.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314-win32.whl
- Upload date:
- Size: 402.2 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c14b09ccfa2ea9a1678f6dd5d4bc3b03d6bda94dcc630f04912480c7748d3b9b
|
|
| MD5 |
27e7bf49d96bd3a82eab97fad39f4cd2
|
|
| BLAKE2b-256 |
e537111222c99eed4c79475423a5a1241c6db98a0553c98a1fb5bffe3b907e68
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 772.6 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f23e3ae2e91c6ce592bcffe7ca78e2d80de1bd25096f0b55f361ccebae0e1ca7
|
|
| MD5 |
6d94dc4d9e962698ab6c3024c77b12bb
|
|
| BLAKE2b-256 |
410ed54cccc431da816dd1947722200c48d0861ef7f2227813d69934f722fd49
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 839.2 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf666bdb29350b581f2767adeae727db21ff6cf258a43bdabca82950e860290c
|
|
| MD5 |
5c5c60b87da71840768440ff2598d352
|
|
| BLAKE2b-256 |
e625b622eebc7a6fc233a2704c36e6da11be6319879eef42c3f87dac9f245c25
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 863.9 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
898775beebf250e8064e744a4013e621731fc08fce91024ac6d01e8b69b937f6
|
|
| MD5 |
f2e89af3cbe553e1963c09689f3ab4a4
|
|
| BLAKE2b-256 |
766853222d8d666e0e6e9312aa3496d18fce1142a2e05b8f1ac7e13bf513ebdf
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 712.9 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b556bbe16cdb8da1692e69fe55fab828496c4cb49a4a5a57225ccb6de7b09cb
|
|
| MD5 |
0a20f80143ffde8268426f63216f186d
|
|
| BLAKE2b-256 |
e52d9af49e99fd9fe12de29d13874c42183d62868188e2a221cf5ed41bc07d62
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 566.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e38783769751a0fafe435bd4ed754b9eda8e1f917b0c0e4a0793d2f04929ec3
|
|
| MD5 |
33e76bb2d3e7fb1de034371d6deb2159
|
|
| BLAKE2b-256 |
b463f704cdf11c10c68b8e294be4c3d53d6721d0a60679943314aa0bdc1398f7
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 597.7 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee123148eeb856de441064fe9746476a808f6240d4cb6fc232cd79da54da33cf
|
|
| MD5 |
a58a78724441e3bef325ef9bd3727b1e
|
|
| BLAKE2b-256 |
94cf66f007e745e11e617f60108f429480a0c28fa85860a723d2431a17907426
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 695.7 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c02a834bf8ac33f85b70cdc34d356a63369a3000998a776cef7e8dbe49eb1bf
|
|
| MD5 |
311d4d3cb2a7ecc3a98cb70318df0b40
|
|
| BLAKE2b-256 |
192b15721cd669853b699bae6373d4903ccaa648214edb828705601ab6da395f
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 594.7 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b57b8c8809b8891eaae17cd36c475119347c7769fe04987c77810a5227b24c41
|
|
| MD5 |
cef16fe65e4d95a0677757a3b86f31c1
|
|
| BLAKE2b-256 |
206d14ac5ebcd0bb95fb31d78d34ac9ad27d84c4f999e730c3b6dfecf0c53673
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 532.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5384ea68688dc4835fb88e4738782433d56a419fe02fccf14d68ebe599006eee
|
|
| MD5 |
87fd3903a4964b0bab92b09acd56741b
|
|
| BLAKE2b-256 |
6bfce788d3866a75d5109e0b3d2a62f34d7cdcd0b346eb3eedf67b279877fa9d
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 647.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d153e965409a4a2b457b595bf188524745b7cc8637ec27cf83d861677f6f350
|
|
| MD5 |
05581cd68278cfbefd094affbfd42609
|
|
| BLAKE2b-256 |
9b320eab2d18da4ef74e1fc147857e20e6faa74f2273cd051cd540b57b1f5db1
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 509.5 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23100e4308c7595c8bd4389a9dd53de0ec4ccfb87776f660381486f89616bb1f
|
|
| MD5 |
cb4535611432e4ab24e6b3e9da0fc3b9
|
|
| BLAKE2b-256 |
03849d902ef9304bcaceaf84c4a31bfde59e2dc4ddeaabd6290edf08c49defc0
|
File details
Details for the file wavelet_matrix-2.0.7-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 543.0 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ecd89be6eafefe5c5f15088bf9805e725be708a95b282e538443895a4543b82
|
|
| MD5 |
338d4bf414b78f06290d31deaa17b4aa
|
|
| BLAKE2b-256 |
71c656849441cd2dbe80ac8e1dd007746ff43c57ecc0d95878d0588cf684ecd0
|
File details
Details for the file wavelet_matrix-2.0.7-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 783.1 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0dfe297810ef2ef496140a2fca9533f3c20a5cb515be4c3c62085976cfa810dc
|
|
| MD5 |
ed6b31ed446d1cd729d4bafe32b9c932
|
|
| BLAKE2b-256 |
91bc4aa07f6751d837b811456e2e570e94b6b5a13f3955e2a563861f0fb69444
|
File details
Details for the file wavelet_matrix-2.0.7-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 847.4 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
509acceaa29597b8ca5ce6ddd12361f18372e6283ee379db24f2efd9dcd06005
|
|
| MD5 |
21ec0367dd58dd86f87d9353aea61ecf
|
|
| BLAKE2b-256 |
19f9310ca8064ad9c4a78c2d983d31206c93a77295597375d46b39c8e7706561
|
File details
Details for the file wavelet_matrix-2.0.7-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 874.2 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3bcda81e27640fe9ac858f283ad7705ef1c97e026ce5cab1e27548cff6e2186c
|
|
| MD5 |
7976dddc9002425cf110d12450739b61
|
|
| BLAKE2b-256 |
e382ee737be0123e0f9d8eb0acadb70fdb5c9cf865c8ddc1e4ae64475a8d2531
|
File details
Details for the file wavelet_matrix-2.0.7-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 718.7 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd9e625b480d8151873e1be756318242bd8cfd7f5ef1be172f9309ad46318b3f
|
|
| MD5 |
c436c238399c0d4a6b513eedbb964ddc
|
|
| BLAKE2b-256 |
389ace6d5ca9838f088dba44031dc5911dafefa3b0822b38c52852153e2f010e
|
File details
Details for the file wavelet_matrix-2.0.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 605.5 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa831f105551f48c0705a87fc8c2390fad81b30b4b8aafa89372a164f311a637
|
|
| MD5 |
6c5177ce0b9ea74eb229ce8fa33b728c
|
|
| BLAKE2b-256 |
f951b50a86b4cdf848b15b916c171409a7bff119d681222ddc6c540ccdeecb6c
|
File details
Details for the file wavelet_matrix-2.0.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 702.9 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25b9eb967ea80756bace3cc7af040dfa8b2329b44afb6080880afd86eb0e46a8
|
|
| MD5 |
4f8e3fa6fa22e8e84be85fc4a8a11b7d
|
|
| BLAKE2b-256 |
10b020e759209fbc14edaa85021891c2c5463190026ea76f780de435f52023b2
|
File details
Details for the file wavelet_matrix-2.0.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 604.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02f16e152dc58ecc13ddde1a66e8d8f06bbf6f4e5446a04f2e2649bdf9f35e00
|
|
| MD5 |
70a07746080382741bf56e5905f4d331
|
|
| BLAKE2b-256 |
b017f65bc85b28c5c62556e27d3961e45995e65dd724c3723bfc3ba570a6d7e1
|
File details
Details for the file wavelet_matrix-2.0.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 537.8 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f87374b939d15cd0b97472e8b8037a6107d1b81a6a7e4fa73073b80565bfe4a2
|
|
| MD5 |
cee5d230794676d33ddb2d362f13479e
|
|
| BLAKE2b-256 |
aae70f00e33e8e5bd6302c218842fdeae67fc028bb4be7f8cd5fd815b0b99d35
|
File details
Details for the file wavelet_matrix-2.0.7-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 405.1 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ea034aee2eb45461bd691ae5ae272d5db7b8859c64cad1cc58738587db6a98e
|
|
| MD5 |
8c8d09da810cfac40a37342695c948bd
|
|
| BLAKE2b-256 |
af92c0080ee576f1aa5f2747fde4499fa68acc8f4d2c518f3a9029326dde25fa
|
File details
Details for the file wavelet_matrix-2.0.7-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 775.6 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec2f958171c688bfc231f597a7aba405f64b481d488b11c7cec2207aaf0ec72d
|
|
| MD5 |
6ffe2d5fa141e72a460112f221cb8dcd
|
|
| BLAKE2b-256 |
e16f706d12e7ec4477cec7dc7903b06632aff5d5b21c176d216841d0709c6f34
|
File details
Details for the file wavelet_matrix-2.0.7-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 842.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcbc64b2edd413f1225d7e95d890704e2eff4456fe0a9921e6350865e8f43af4
|
|
| MD5 |
44f66f6cbe1f4032cd33d7a65ce0da02
|
|
| BLAKE2b-256 |
308a606a34f25c4d94ff2a5730a10100dd4ca143117fd47466e80a089877ecc2
|
File details
Details for the file wavelet_matrix-2.0.7-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 865.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09af8ecd0bf16e2f6b87ad5b8c5d232cdf231d2d85afbbf4788977d98da9ee55
|
|
| MD5 |
0ac131a02c9c4d8dfb338b5b2e7d11db
|
|
| BLAKE2b-256 |
42cd23bff1d68fdf10e3a0b6355171ddede742f33feecb9900afcc259d16d094
|
File details
Details for the file wavelet_matrix-2.0.7-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 713.8 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba21ffd1a9351a0abf937388256ae4c82f7206405494614c9a21075fa1966c00
|
|
| MD5 |
c875fd4a4ad1f55116563f3367bc9403
|
|
| BLAKE2b-256 |
8e0d3d8f5d8a32ef8738bc2eff25aab64044e78bdd25d8b34768ddefbf847ad3
|
File details
Details for the file wavelet_matrix-2.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 569.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96bd5da027368c9dbedf56f9e6344cdb534219f6eab14444611a2281156a7746
|
|
| MD5 |
4d09880fb49422ec028e29e738b018be
|
|
| BLAKE2b-256 |
49be443692f12e841a3ccf26ccad4a086e9b8537869650e4cda9b1ea74a68851
|
File details
Details for the file wavelet_matrix-2.0.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 600.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae5b1b1d50a0ed8271466f5480a4df310c5c8f64e4dcb067c4fee1a9b6f63d47
|
|
| MD5 |
9ef9cde8d7e6c0dd65125e59efeeca12
|
|
| BLAKE2b-256 |
7ed8e9016fa478b11dd48b847e8975b249045a156e5a6d9be439470b35d7829d
|
File details
Details for the file wavelet_matrix-2.0.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 694.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b8259e70598115e0737ca26f405b034a0564330daa192147ef2b8b158963afb
|
|
| MD5 |
048100b7151a5ba063288081076507da
|
|
| BLAKE2b-256 |
91aaad3763f509c09922bd6a407300d8699e52cf1a6147270c8f15cd6f7186c1
|
File details
Details for the file wavelet_matrix-2.0.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 596.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd50b2729de09222702e06be18b4594268efb3750a8ba1f7c7d8908b4d3128fe
|
|
| MD5 |
874cabf740bd74876d869fc48e633ddd
|
|
| BLAKE2b-256 |
d84f960ae6dd88eb62152d1099b4ea1129b5fc51084164d8be1601274493488c
|
File details
Details for the file wavelet_matrix-2.0.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 533.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd7bc13c2c6ef8744f34ffb14a2389ebb9a48ccc985ca60aa91e6de670465203
|
|
| MD5 |
e2fa25803001a26eaec4c43d92152b9a
|
|
| BLAKE2b-256 |
884bd2273efeabc4e79129898a90cdc2acf5dae89049c5fbdc55a317c7f94c5a
|
File details
Details for the file wavelet_matrix-2.0.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 650.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8217200f7c689b88c78e7bfc69d5240736dcc723f79fc8cbf688583b8b53ca55
|
|
| MD5 |
75f7fdaf59a31eede0434b315e54604a
|
|
| BLAKE2b-256 |
bdb45da19eee6ceec8bc6fb15a6bfed13935eec0bcb3b82567e2bb1b604df48e
|
File details
Details for the file wavelet_matrix-2.0.7-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 511.6 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc5eb26eb39cbdd8397f80f8e8c7f5080278a0abff4037c8231385f5c44ce05d
|
|
| MD5 |
01366ed675ab511e54aa747a9c999117
|
|
| BLAKE2b-256 |
1ebc338a4bac9d94b89802aa929c3804b14d437ef45715f169917c7316bdc311
|
File details
Details for the file wavelet_matrix-2.0.7-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 546.0 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fe51e6cf1305dc764a6a4f1111ca37e38fb6a00bb6ad9d752d03f431f21b82f
|
|
| MD5 |
08c380ab75f260d4a4d5d7f888d8e601
|
|
| BLAKE2b-256 |
b331f06e74db5461cfc51220eab2dd353961682f5f83965bab7bbc21fc0406e1
|
File details
Details for the file wavelet_matrix-2.0.7-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 405.5 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f658f69565705f6ae329e6ab7dd9579ce2884edd02fe709914cb8539db18b681
|
|
| MD5 |
3594157096ea3cd00d1e3ff37d3c0341
|
|
| BLAKE2b-256 |
4030414cfd001cfabab3df07fc241f1418c9ae3fc1696a40364781bac2481fd6
|
File details
Details for the file wavelet_matrix-2.0.7-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 775.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca248663adec7bcc3db110332c21245e603394cc2910fdfce1a8ab8cfa11a0a7
|
|
| MD5 |
c2c711d8dd10f83469375a67257f7628
|
|
| BLAKE2b-256 |
16d7b9195d4ee43956c07d30e7186a26231ccd262bf06df6de1cec4bac948352
|
File details
Details for the file wavelet_matrix-2.0.7-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 841.6 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4bee720cb1f905b58a1c7d6242bc079c8dc4c86f1e659686bfe2ebee8ff3f9f
|
|
| MD5 |
4f682e868629a5059e6b7a4c1649076e
|
|
| BLAKE2b-256 |
de8b9ad771f55dbcdd7e4cf4e4cb3496694170b331eedbb777f23cc8dc3b81b4
|
File details
Details for the file wavelet_matrix-2.0.7-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 867.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
758aee40407d1669b7881a9b41ed3cbd95297d04a451f8e0f9fcb8cf442202c2
|
|
| MD5 |
669fe5732ab80cb441a6276e34923291
|
|
| BLAKE2b-256 |
1ec95160962593aa68160721fa57d9b310ddc9c0a6621dde79cf1b89bf4b1c37
|
File details
Details for the file wavelet_matrix-2.0.7-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 713.2 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3aac6c14ba2aca287ddd22fcda4354e15af667eba34e0987d0c15a63480cf7b4
|
|
| MD5 |
537bcda92f13e41f9807c87266e72657
|
|
| BLAKE2b-256 |
deff06a92b97080d6b5277fe0851332f8dd1ee3b73b994b5456007a540f705bf
|
File details
Details for the file wavelet_matrix-2.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 569.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77bb79d952c50b76940835d05fe8c04e74a97971dfc43e21d324b4a3c6cd410f
|
|
| MD5 |
1203a2770995dd6cc2d1dd2d313fa539
|
|
| BLAKE2b-256 |
cc29e8dd138f9dc5152bbd1f80305cfed1abc08fd15ee2f236e9cedafbf21106
|
File details
Details for the file wavelet_matrix-2.0.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 599.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8781db054b5430caa01573c6caf0dbf1d911b6607f8312d51211c186e340feb
|
|
| MD5 |
8376f89a825833138855ccda2bf52b29
|
|
| BLAKE2b-256 |
8031f4876dbb4cff2ba1db1cd3ad8859d0fcad1166cd38be372f3ccb14b77fdb
|
File details
Details for the file wavelet_matrix-2.0.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 693.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a10084a34410bfed026b0a78b267d55270a891649d86412c1e1e5becbf7e6d56
|
|
| MD5 |
9ac96dce00820a33c4a1a5985c7f4dd2
|
|
| BLAKE2b-256 |
8d92389f25af77067bdc85b7c7a3013f601262b547db07f018afe0ad9e719608
|
File details
Details for the file wavelet_matrix-2.0.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 598.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e68ec4a39703ab6dc582811bd1f6b0789ef791bad5859128844276cd4824d5ba
|
|
| MD5 |
03fc61e9568e7150ae975d3c6e3e144c
|
|
| BLAKE2b-256 |
1100ec876f6122745b11f7a0ed6ffc8a6e754120bf02fb306dcbad469632f03a
|
File details
Details for the file wavelet_matrix-2.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 532.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45917a7fe6ca8ecbc169883fe99b1932b40426517d88ecf7228c02af787c2800
|
|
| MD5 |
970f273e22a12be4e6be71d796879d6c
|
|
| BLAKE2b-256 |
17f77a32b3d8e300d611ec2b1c973080b8af314f939590dee69760d3e2d25799
|
File details
Details for the file wavelet_matrix-2.0.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 649.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c918aae79c2331164842b58403fc910efd64a611cd69b621a53271d6a3303c19
|
|
| MD5 |
c6c03597ea00ec0b985fc0cf8b9f35a1
|
|
| BLAKE2b-256 |
cbbe649e0437788aa16ef5e17cf15d0c50f77e0bfc87f1d4b1de749d62639342
|
File details
Details for the file wavelet_matrix-2.0.7-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 511.1 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f3b3d8dfd1feb758f6a5073f8d675824642e76b1c31525e58a0da4c5b198301
|
|
| MD5 |
75129c12370bc1f08776e6d83969e234
|
|
| BLAKE2b-256 |
23a9060e59994daf1dddb556b89870e3a3d586d9a09a121a886c714a99b0e416
|
File details
Details for the file wavelet_matrix-2.0.7-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 545.8 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82f3b1f5440b9e20b0bdbb2add4e38160da05618752664625f37a976e69c71c5
|
|
| MD5 |
6046b98c1b9e235540050ae3f280c75b
|
|
| BLAKE2b-256 |
98c4cd0244e48cb73415e7e8cc803ad7f60273c0ed98da39f934a766fbb2bd2c
|
File details
Details for the file wavelet_matrix-2.0.7-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 403.3 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae74fa093eebb9f813eb377404358febb0190adb54f5b299140558fefe3d027e
|
|
| MD5 |
27a22cce7cf45ba123a41dfd509103ed
|
|
| BLAKE2b-256 |
2f953eda8d79a8b58d064a89d6e66e7c1b8229c9fb8e7dc9e83e013a8aa41413
|
File details
Details for the file wavelet_matrix-2.0.7-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 774.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fae68b76505ef83c89e16514c7655b5e9bdbdd5079e4bb98d8e029cc52a07728
|
|
| MD5 |
924a478ebdc9e56b3e60af5c72d90fe2
|
|
| BLAKE2b-256 |
242a792d9b30f542c20fd9a4b15c59a3bf24a4b18274015a09cda68fb902a959
|
File details
Details for the file wavelet_matrix-2.0.7-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 842.8 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b41655fc99ef1d2d11d962be2521051e250f537d669100b8d3f84185c7304fda
|
|
| MD5 |
ed9bc7949115b4aacdffdda14cf6e0fe
|
|
| BLAKE2b-256 |
cbd149ab4f18f6732af73c82343e7fe380d5787767b81f337cd39fa6d8342bce
|
File details
Details for the file wavelet_matrix-2.0.7-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 865.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a8f57ee0d6c65dfa297e61c34c0f0a846f4f3ab290d6c56279cb3e331f18d9f
|
|
| MD5 |
2d31515d5d8856c7cbb7ff3dbb25ca9e
|
|
| BLAKE2b-256 |
7b29428918c0ad026c7d0ec519bb08a09fb5882ecfdf703c4fd7e2dfaf9e87c8
|
File details
Details for the file wavelet_matrix-2.0.7-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 715.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0f9e6f847b91958a31deb71f8253cf1d2075a2e5aa52703554d352223034bf8
|
|
| MD5 |
f24671a8bced55890956c8f0607a51dc
|
|
| BLAKE2b-256 |
e3afcd3abb8f918413802064a4497786aaab05b7feb2cbb566e2fcdc30760b9e
|
File details
Details for the file wavelet_matrix-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 568.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
250fa797e5b6203a9521ea531c6ba94d1df669657b507eedab2882959d239aa6
|
|
| MD5 |
150940ac4091e4047df2357259b8cc9c
|
|
| BLAKE2b-256 |
582649f34d476ec29312b426fa79882fa9af73e9fa119ae05a5ea0a57b06186c
|
File details
Details for the file wavelet_matrix-2.0.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 599.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ec3684da8e8624a847003bef5ece7b86a8a18de313cbadc722e42043e38b1d4
|
|
| MD5 |
20b9f7cc204d58d578a3ea813fc189cd
|
|
| BLAKE2b-256 |
d6306055e83ea39dcaac1edc6d1cf76cce17df2c4ab6c88645d8545a7340486d
|
File details
Details for the file wavelet_matrix-2.0.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 703.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ec8146a84d0d3f8273ad0f57b1374d0dc2851545913fe7893f47068065491da
|
|
| MD5 |
f4593bcaab35a32c052261a82c47e266
|
|
| BLAKE2b-256 |
f800ab2e56e80a4e65aad42ff3717501b67e71a0ccafc43df00c77db6a6442c9
|
File details
Details for the file wavelet_matrix-2.0.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 596.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7edffdfd3d3bdd0769d3ca0b623f776b11a8a31698b40172ac2ad55bccd125e4
|
|
| MD5 |
d5e3fe7e85b6030f43aeb855ae75a7e0
|
|
| BLAKE2b-256 |
b0ae9885eb784962a63bb4e1631e5e11139cf73b00301e367b3ef17926dc43bd
|
File details
Details for the file wavelet_matrix-2.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 534.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0260616a143261bc91a7c30908b3d7c1ca637f61efb3e190b42a314811837173
|
|
| MD5 |
97dda88708111314fe7bf3aa476b1424
|
|
| BLAKE2b-256 |
58c028a20f72062ce441ef44a754df11f50fcdb746758eedb8ce98f255387dbc
|
File details
Details for the file wavelet_matrix-2.0.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 648.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5920affec52ec7706ec35331c9531abc55dd75248e5ff7497a60cfd41a3f6a5d
|
|
| MD5 |
54c55599625aedf536340399523e42fe
|
|
| BLAKE2b-256 |
6d04e433255baf42dc97a370d54b5816e252eb67706a572d7106794fd4585910
|
File details
Details for the file wavelet_matrix-2.0.7-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 511.9 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b8080e317fbec41fa6fa34968ce47eedd4c7dc2a658553787d995455318b62e
|
|
| MD5 |
88e6ad95414cb5c370f186e41d701a4b
|
|
| BLAKE2b-256 |
3403d89354b4775038d55ce18206d2f723f64d5cea06ecb5fe54fdc1280f5adf
|
File details
Details for the file wavelet_matrix-2.0.7-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 548.6 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
482f0cc495bf491eaf8fbb89bb591122b967831ced7c73673a4e6c453353f20d
|
|
| MD5 |
05f80c923fd517c218327b1fc36a67d5
|
|
| BLAKE2b-256 |
5be4138e51f77fb47582087a8c04e156855f8f499081db0969658fbc3b72aeb5
|
File details
Details for the file wavelet_matrix-2.0.7-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 403.3 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5513efc4f7c412b1cd7adf8eaf13c7cd85329ac2edb452c50450897d267bd210
|
|
| MD5 |
15b50fc9ebd669a4376944fbb47a9a59
|
|
| BLAKE2b-256 |
eb136402b592978b9155ac19baa0f573112b27cae5840f4342c4bca848ca4374
|
File details
Details for the file wavelet_matrix-2.0.7-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-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.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b21c26ecdde19e01c35329dbd63d3fa1327f96abd454487f72c7ed7b564bd08
|
|
| MD5 |
51fbf644d9346000991c512a8ae5dba0
|
|
| BLAKE2b-256 |
b339d4db0b40a53b09ba33a20a260cadaf97a7cb775b7063d0640ac70c02618f
|
File details
Details for the file wavelet_matrix-2.0.7-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 842.9 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07ffae1709995af39a2e564873b5082049fe8a07641072f403b721d00dc99aa6
|
|
| MD5 |
e3833f52707c06e01950d01beb2321a5
|
|
| BLAKE2b-256 |
56b9f03467ad9175036736e3b19a078b5a8471deb564a60573daa649acf7b2f5
|
File details
Details for the file wavelet_matrix-2.0.7-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 865.7 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e91776927faec80c9c254e683b554bc1d3674d03becb7381616c9844015511eb
|
|
| MD5 |
32ba660886d3967364c6f76fdb416f76
|
|
| BLAKE2b-256 |
f146df08c553e5ac4530baf873016f5e9774b70c3c0f016be6fdcaecb0862161
|
File details
Details for the file wavelet_matrix-2.0.7-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 715.7 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9e342aa682f0f7c87c3809b8d23f1df721e75fc667628c21c256ba347c46368
|
|
| MD5 |
fb6bb720760bb58d2bdf5902235ba3cf
|
|
| BLAKE2b-256 |
f96f99db6cf9d4ab7aa3326082d64ebc69f205ada1c1a6fb1aed492aab3df02c
|
File details
Details for the file wavelet_matrix-2.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 568.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
183abf5b13dc45b089838f579ccbd3d52b1fe339f6947a713183b77cceb18688
|
|
| MD5 |
2084739b00ed61c044b61be561b36aa3
|
|
| BLAKE2b-256 |
7349d5a097bb84fc5b287dea3d4d9b230dbf2a87ee7151e55a04af5ac86c453d
|
File details
Details for the file wavelet_matrix-2.0.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 600.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3c331703d23bd0e406e33d74695d372b3120fa08e76bd8a66828f537f9ae132
|
|
| MD5 |
e70fe0803c3eeb9b7e26d4819b196ff0
|
|
| BLAKE2b-256 |
8988324b3a080eeb8b4ea38978134ea19eaa33ac7086b06bc1fe21155ef060fa
|
File details
Details for the file wavelet_matrix-2.0.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 702.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50d508bd2687f958722076413bfbcb498f2b5546c62fe395a1710bd586dc0f5e
|
|
| MD5 |
1e7b2d092ecc0468e73e37ccc9aa4eb8
|
|
| BLAKE2b-256 |
c2e991caca6129f03ace139931f352975ce2356b99765bbfb3591b4ab6202a59
|
File details
Details for the file wavelet_matrix-2.0.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 596.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50f65b8916aacf73ab81782b3b8739e024071299414adfe1947b329a8aca2e3b
|
|
| MD5 |
bf20532f6426aea3192deb63c6fd36bb
|
|
| BLAKE2b-256 |
1cbac2ebf01d913729a63085bb59dd234a33be183a8df86cb5ba7697a8edc9be
|
File details
Details for the file wavelet_matrix-2.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 535.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14703af9ae05ec34a6dbb6f585d215572b09b962e4b68197a5573f6e60aeb13f
|
|
| MD5 |
0b844a1db7b659bda099d190855687c5
|
|
| BLAKE2b-256 |
c60c2b9f81deac5045aae1c07e4fedb627ff6bb429c862597108aca315155ea5
|
File details
Details for the file wavelet_matrix-2.0.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 648.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fdd5a7b553ce193c8bfc64645be0fd27dec91419434f68c0ea82bf2231070d6
|
|
| MD5 |
d9210bf956944906601a9f8877bab2a1
|
|
| BLAKE2b-256 |
7320cb993396933e30a7331f6c50aa399cbed3075743295dcf97799cdacf7bc5
|
File details
Details for the file wavelet_matrix-2.0.7-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 405.3 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d23345b58184d2077a3fc1cd225dc5a7fc3e8098c641eafa2e2f5d18c9de646
|
|
| MD5 |
f2cb21a37160a269d0755e6b894d0357
|
|
| BLAKE2b-256 |
736d3e0fc2124950de60f098ba217778587ea54685840ccdecfcc392c6c3b08e
|
File details
Details for the file wavelet_matrix-2.0.7-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 777.5 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5994da79fcb3d616b4a25b5eacaf3b53b9985b98ade3bc34a292c98998b859dc
|
|
| MD5 |
88176222b1eb30fd3b277b1a210b16d6
|
|
| BLAKE2b-256 |
f95f8f0d301f9f54f02515fa82f2ef6967e735cf1a8a0b0ab1f8c1b5883695a8
|
File details
Details for the file wavelet_matrix-2.0.7-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 844.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b82a67ebf1557eee9332a2321ee2dca4b2c7c82a84cb3f64a95c4cfebbac38d
|
|
| MD5 |
a6be3399c325e4fb2a25daa3866dd069
|
|
| BLAKE2b-256 |
ce0900795ae2c8b6e0453bc24eafbd8e9f94a38c8a294344a50f2eec77c6c36c
|
File details
Details for the file wavelet_matrix-2.0.7-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 867.9 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c25821f0f1424f1e7426163ab1eb726df4b1941b6ae7e4cd45f9200f41d56172
|
|
| MD5 |
4520d45d5bfb8dbe89cd088f74aa4d4a
|
|
| BLAKE2b-256 |
63fb3865d11dea18f2b9764df8393f343a4fdd853119e9a4197da41e37071b67
|
File details
Details for the file wavelet_matrix-2.0.7-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 719.4 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3328dc0d245f4a61bb17398a0cffab95f813019615fc0077b05e5e57f0234d7b
|
|
| MD5 |
18a797e6de60a21c4b1b271e649a0a34
|
|
| BLAKE2b-256 |
f658fa6547c7891c42c33d58bb03a0c1e8499f3d9b42dc37c463408cab071908
|
File details
Details for the file wavelet_matrix-2.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 570.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
554a9d3e6f36c3835e7c00fde81a547e37b32d043cbc474b8e748db90bbb9481
|
|
| MD5 |
f685738b5037d0711969d5dc3299b6ec
|
|
| BLAKE2b-256 |
e372de8bb2949b93cec072c3b68094579ad1a7f36a7704524943efd6b2092d6d
|
File details
Details for the file wavelet_matrix-2.0.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 602.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a3fabc96469ac1a233d367a6e4a54fde75023f969901cc5eb03a0e61b705823
|
|
| MD5 |
52546856c010f2d4b57606dce69445c1
|
|
| BLAKE2b-256 |
5b0eb7f963c39d9fbd90853e31c11099b7fc514ab786902e0dcfeef7233e824a
|
File details
Details for the file wavelet_matrix-2.0.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 706.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
710f426b93a582d6760bcfc28a5d600d24a6d04cd8b6ce93a41d57ca12647a68
|
|
| MD5 |
d1d270a7a8fd18d3400d5e0c60f9b116
|
|
| BLAKE2b-256 |
f6052dfc10b2d70a1cfa2d9b8209d05385dadbc3d498750239719e2ded8a78e4
|
File details
Details for the file wavelet_matrix-2.0.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 598.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab3ecf7609f883539f37a1849b8f2dddaf1465c9194dc4f8dc12e9abb8e206e1
|
|
| MD5 |
7c76c9f645e96d30e40a39aa1414c18d
|
|
| BLAKE2b-256 |
0d5390edafe04d2cef0ebfc9d00eb940b4a68ba7ae30d89214bd91cfd78ddf0c
|
File details
Details for the file wavelet_matrix-2.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 538.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e7155b74cfed08ea4dc41a665043215a0febe59af4bd7e7332ac1edb8117782
|
|
| MD5 |
ecb29063c8622ef9866a37b015964bb1
|
|
| BLAKE2b-256 |
7c43322fff7c0da1a87f0bf2f0536d584c5159f25302f240556e669778b0c8b0
|
File details
Details for the file wavelet_matrix-2.0.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: wavelet_matrix-2.0.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 650.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b8df4382ec91bf6ad41f51110ca5cc77344d59599843d336d6218e967d70257
|
|
| MD5 |
9d918e60cb74ad0c93166c16d4fd45f2
|
|
| BLAKE2b-256 |
6662421af86c54965396e09e6581013b0cca3e8976ef918c362bf736d85e8d58
|