Rust-accelerated Needleman-Wunsch global sequence alignment for precomputed score matrices.
Project description
pynw
Rust-accelerated Needleman-Wunsch global sequence alignment for precomputed score matrices.
Inspired by
scipy.optimize.linear_sum_assignment:
the same goal of robust, high-performance global matching from a NumPy-first
interface, but specialized for ordered sequence alignment where gaps
(insertions/deletions) are modeled.
Installation
pip install pynw
Requires Python 3.12+ and NumPy 1.26+.
Quick start
import numpy as np
from pynw import needleman_wunsch
# Build a score matrix for aligning "ab" against "abc"
# Rows = elements of seq1, Columns = elements of seq2
seq1, seq2 = "ab", "abc"
score_matrix = np.array(
[[1 if a == b else -1 for b in seq2] for a in seq1],
dtype=np.float64,
)
score, seq1_idx, seq2_idx = needleman_wunsch(
score_matrix,
gap_penalty_seq1=-1.0,
gap_penalty_seq2=-1.0,
)
# score = 1.0
# seq1_idx = array([ 0, 1, -1]) (-1 = gap in seq1)
# seq2_idx = array([ 0, 1, 2])
for i, j in zip(seq1_idx, seq2_idx):
s1 = seq1[i] if i >= 0 else "-"
s2 = seq2[j] if j >= 0 else "-"
print(f"{s1} <-> {s2}")
# a <-> a
# b <-> b
# - <-> c
API
needleman_wunsch(
score_matrix: np.ndarray,
gap_penalty_seq1: float = -1.0,
gap_penalty_seq2: float = -1.0,
) -> tuple[float, np.ndarray, np.ndarray]
Parameters:
score_matrix-- 2D array of shape(n, m)wherescore_matrix[i, j]is the similarity score for aligning elementiof sequence 1 with elementjof sequence 2. Non-2D inputs raiseValueError. Non-float inputs are cast tofloat64automatically.gap_penalty_seq1-- Penalty when a gap is inserted in sequence 1 (sequence 2 advances). Typically negative.gap_penalty_seq2-- Penalty when a gap is inserted in sequence 2 (sequence 1 advances). Typically negative.
Returns:
score-- The optimal alignment score.seq1_idx--np.intparray of indices into sequence 1 at each alignment position.-1indicates a gap.seq2_idx--np.intparray of indices into sequence 2 at each alignment position.-1indicates a gap.
The match-score component is composable, like linear_sum_assignment:
matched = (seq1_idx >= 0) & (seq2_idx >= 0)
score_matrix[seq1_idx[matched], seq2_idx[matched]].sum() # match contribution
Empty matrices are supported and return a score of 0.0 with empty index
arrays.
Why use this instead of linear_sum_assignment?
linear_sum_assignment solves unconstrained bipartite matching where order does
not matter. Use needleman_wunsch when alignment must preserve order and
model gaps (insertions/deletions), e.g. for strings, time series, or token
sequences.
Why a precomputed score matrix?
Computing pairwise scores can be just as expensive as the alignment itself.
By accepting a precomputed matrix, pynw lets you build scores in a vectorized
fashion (e.g. with NumPy or a domain-specific library) outside of the
Python-level loop, keeping the hot path fast. This design also makes the
interface agnostic to the scoring function: any metric -- edit costs, embedding
similarities, log-likelihoods -- works as long as you can fill an (n, m)
array.
The trade-off is that you must allocate the full score matrix up front, which uses O(nm) memory even when the scoring rule could be expressed more compactly.
Scoring convention
- Matrix entries are added to the total score on diagonal moves.
- Gap penalties are added on gap moves, so they are typically negative.
Deterministic tie-breaking
When multiple moves are co-optimal, pynw uses:
DIAG > UP > LEFT
This affects which optimal path is returned, not the optimal score.
Edit-distance parameterizations
Needleman-Wunsch can reproduce common metrics with the right matrix/gap settings:
| Metric | match | mismatch | gap | NW score equals |
|---|---|---|---|---|
| Levenshtein distance | 0 | -1 | -1 | -distance |
| Indel distance | 0 | -2 | -1 | -distance |
| LCS length | 1 | 0 | 0 | lcs_length |
| Hamming distance | 0 | -1 | -(n+1) |
-distance |
For Hamming, strings must have equal length.
Non-goals
- Local alignment (Smith-Waterman)
- Affine gaps (gap-open + gap-extend)
- Heuristic / approximate alignment
Typing
pynw is a PEP 561 typed package. Type
stubs are included, and the library is tested with mypy --strict.
Development
This repository uses pixi for development:
pixi install
pixi run build # build the Rust extension
pixi run test # run deterministic tests
pixi run test-hypothesis # run property-based tests
pixi run lint # run ruff linter
pixi run typecheck # run mypy
License
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 pynw-0.1.0.tar.gz.
File metadata
- Download URL: pynw-0.1.0.tar.gz
- Upload date:
- Size: 41.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a77c6313a8756def6a33d3dfa24c830222d64a507368541d23f16e93d2763220
|
|
| MD5 |
7589c31d4408edc894ae7e6801e2d7b2
|
|
| BLAKE2b-256 |
a79f1774786b37d65f3f2801fa1d2260bc0a9b239f4ec139e4ba3adc44cb7584
|
File details
Details for the file pynw-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pynw-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 460.6 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef6950c9c5123534719520f44981449539d36cb7bf2aebd393263b03e07c4c67
|
|
| MD5 |
87894450285608af17536aaf4fe6db7a
|
|
| BLAKE2b-256 |
5618bae686362ce99c4cc7650d85b2cce685c328131a54303e569b0a307fa4ce
|
File details
Details for the file pynw-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: pynw-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 485.1 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6190c55fbb6d162283881c84653eddd76c2bdbfd5f56cfaa84e52bab6556f2ab
|
|
| MD5 |
0ce276da725ffe4aa84be3b1ff268569
|
|
| BLAKE2b-256 |
a67341d7b738cf0122aa08b61e72370ddfc5cb88c85cb521c4bf47de11cfb389
|
File details
Details for the file pynw-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pynw-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 531.0 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
781e12bda7a3593c81740249413774d5a6dc2909d27de48e4b0eb516c863824f
|
|
| MD5 |
79912c6ccc00f9e3b23df0e59880b157
|
|
| BLAKE2b-256 |
7b6fa017111bfa3ced0106a955ef6e91e161e97420f82fa1a1999fac4b6be355
|
File details
Details for the file pynw-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pynw-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 424.3 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
223ddd11330112b60d874725ac0a6cf46bd1fd66ca97a6d8c905074458cf3d0f
|
|
| MD5 |
45b4cc5aec3805973b224a76676c3572
|
|
| BLAKE2b-256 |
efe2f37c2f94bd1d286483b617043d0312f7d6313a25f3a0b1e0432e90dcd541
|
File details
Details for the file pynw-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pynw-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 248.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fbed109a52c56b6558dfdb83ce927c3133402a40f9d17201f5e9f0bf9ffaa280
|
|
| MD5 |
194038e0ca11ad2f1a4bea8bd7262040
|
|
| BLAKE2b-256 |
71756db5b6a735bf971f06b628a8995fd53b70ef648802bdd839ec58b5d76b57
|
File details
Details for the file pynw-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pynw-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 278.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c41eaea5ffb4bb66eb3e4f073b7bfaf0e431b8b6f37739f0055048bc4e83c60
|
|
| MD5 |
cb6ca46760e09e8540ca56d0acfd77fc
|
|
| BLAKE2b-256 |
9908728c721c1ac18e85daecbd31324cfa1fec78acfe62dbf4eb2fdec1ccb340
|
File details
Details for the file pynw-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pynw-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 275.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ed8f5ae5b0e318f0002ad0f41e074cb957c685b2979167422acf2c29dc2589b
|
|
| MD5 |
d9c8c67146b22bdf4d4e15767a0d50de
|
|
| BLAKE2b-256 |
0a9856eba9bd73726ad0390f3ecfaa80c0ff7c528e86c83415e0ba8afe6c4d52
|
File details
Details for the file pynw-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pynw-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 254.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af0072aeaefe2f83f00266e78fa17e2181af200e66318cd9c9aefd5f67b7517d
|
|
| MD5 |
d1a4c3c08f9790cd57aff5f3f473fc6a
|
|
| BLAKE2b-256 |
44281e075e0907b5ddd5d34688170be0e7dc8e5016c26cde8ccfece04fd7158d
|
File details
Details for the file pynw-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pynw-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 247.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f51e89eeecdc1fa553d96b05798591334f31ce648dec84819fcec6847cb7b0b
|
|
| MD5 |
3a4978346fd16189f4f7e3e941e8fb62
|
|
| BLAKE2b-256 |
75a49d213c82324097ae55ce642ea60ee6c08ac15e431984492064f921f4bd02
|
File details
Details for the file pynw-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: pynw-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 264.1 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a270b7deb316c0e2b5110659d49e6de495798313bdeab4e43b9f49977ee54f2
|
|
| MD5 |
ce608238bd27b6fc5ebe781b062f6638
|
|
| BLAKE2b-256 |
e35b67f3cd5491351d6e82ff6ae8eef28e01289df1527647035fa7d3a419c7c7
|
File details
Details for the file pynw-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pynw-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 458.3 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e1b6138f64105a1232ecdb44bde0d051cb284a63de69776c97eba09296aeb63
|
|
| MD5 |
4730ece96587cf26203168a3ed759e30
|
|
| BLAKE2b-256 |
09a78c0b181bdbf2f82e114753086c9bcef8ec9f65c1e67840397a9f0cce4814
|
File details
Details for the file pynw-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: pynw-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 483.1 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60b86c38a7f022fb6543b1f9ae5d0b6030aa704881bb8d35612df23997219268
|
|
| MD5 |
639cdbe9f9cad3353e999b01505b3dfb
|
|
| BLAKE2b-256 |
f8ace46b89903ed5c96e4273896f171448d5cef60f89ae49555eb1b96f0f7507
|
File details
Details for the file pynw-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pynw-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 529.9 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4672e12c340f75540757c343d8f6cd0aaa11d4d2b23e203494b24ac78ad5305e
|
|
| MD5 |
8593d1832f33b3ce3e795c83f74e6b06
|
|
| BLAKE2b-256 |
58896ac5a432fb473cb0513674dd3c5bda1242b73c7eec11b0ae0fc1ec0a6158
|
File details
Details for the file pynw-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pynw-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 421.8 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ad236117aae4e367a4a149fc8f061f4a7fa2cba56f5a8b5036831613d621c6b
|
|
| MD5 |
033f0aad5204144af2be68330be12808
|
|
| BLAKE2b-256 |
26ea58db954689e94af735dfebbd78f4e076f5d619ddbc2a931730f85e58ef57
|
File details
Details for the file pynw-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pynw-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 277.2 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2bd2ef5e34843b804f725de75250212923be0dd2d2a76b85aa397cf3155f7d0
|
|
| MD5 |
354ce17181a12c6dafe90afbf7e5ad2c
|
|
| BLAKE2b-256 |
f64ba900f16e0da75b70d27c3e0e6bf3d8dbed65a8713130ca72894ae6c8870f
|
File details
Details for the file pynw-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pynw-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 271.9 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4112c29b0ce6c7b1cc5e132624bbe43cbc05d5e7b46834b3bceb49fa797eccf
|
|
| MD5 |
fef2c4709622ad61fe7dcc21372dfae8
|
|
| BLAKE2b-256 |
f716db58451cb9db7e632d558e535763fbcb62b9550d1fcee5321374da2c7f77
|
File details
Details for the file pynw-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pynw-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 253.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a17c4cf8dc8cca7a22b5f9ef2da30e3a477344fae4594e455789c13cd5cc7044
|
|
| MD5 |
568e13886610ee42e957fa566ba99237
|
|
| BLAKE2b-256 |
9cc825b16e43bf538cf7524547a39d5fec7797ce7e249842e22ac7af19d699a8
|
File details
Details for the file pynw-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pynw-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 244.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af28a92020552c358de9c76bf87ae79841ba7125a11b77fc4a692800d25b0d1c
|
|
| MD5 |
884fa0d8faf9ba2de2467f1c32729ffa
|
|
| BLAKE2b-256 |
ee7e04646ab5cedde0721cbdde4fc37e82d6a22b46e0d0f0a5ef281946c33a16
|
File details
Details for the file pynw-0.1.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: pynw-0.1.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 129.3 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a5168058068a4db33436b18551e509e3bdebe20491bf9bff5683cd40395f28e
|
|
| MD5 |
4ca3502c8c4e4169322e5cda1c704cf7
|
|
| BLAKE2b-256 |
e41468bb4e86e2498728817f79a1a690c8cba6b39fd2ad7016d8d6c978a12ee4
|
File details
Details for the file pynw-0.1.0-cp314-cp314-win32.whl.
File metadata
- Download URL: pynw-0.1.0-cp314-cp314-win32.whl
- Upload date:
- Size: 122.3 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4850a4020bc62f426d0f721f90ca74f0b3abf1f6decf817ee53139479225bb4
|
|
| MD5 |
ad4d048fdfc7a0d4e08d1231fb68d8a0
|
|
| BLAKE2b-256 |
b8670ecb5ab1da71d55966d8553bfb732ab336bbad0c51081fe14a9582794803
|
File details
Details for the file pynw-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pynw-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 459.6 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45f555da1a131712c96f8eb8d042f41dd3bed8155c12a0605a3688dc3279e442
|
|
| MD5 |
29c6de4e842bce32a787861d38f927c2
|
|
| BLAKE2b-256 |
8dec2e39609dac8186814b05414c2fd07c37f7e375926c4ab875d823442cb811
|
File details
Details for the file pynw-0.1.0-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: pynw-0.1.0-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 484.6 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e63b5ed34f602eb2352df4f8397a3dbd3713fe4c42835fd102389f07dcf65f02
|
|
| MD5 |
bc083ab85a5bc74213fc16fff1eb8385
|
|
| BLAKE2b-256 |
09dd0d4ac95010d2a8bb4f1294251ce290cbeaf56111e19d0781b8fe2752c85b
|
File details
Details for the file pynw-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pynw-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 531.4 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
482e5f4102abeeb0a30389553e64ab5abb2282bac707bbd2bf342792a807a462
|
|
| MD5 |
42b29b301f31e81880d74d69ec975730
|
|
| BLAKE2b-256 |
9992a31c21c6969e86b11e09fa082b3cdee6f224ff3e2531271bd536c192349b
|
File details
Details for the file pynw-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pynw-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 423.6 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d6a70df100a82ec318688be9512cf77311dbf92b2286204a90923c6396eb0d3
|
|
| MD5 |
c6b6556c62c8e2368eb3cac9298a386e
|
|
| BLAKE2b-256 |
79a963d2314833ae8c0549f0249d6908736c329b0695a2893358c276d78e03a4
|
File details
Details for the file pynw-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pynw-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 247.9 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15a5dc38f99fad3529cdef840fa65d533506a8f7931c8fdd5d188aa16f3f246f
|
|
| MD5 |
068ce2a2c61dbd7fe5f326a7e5c7b989
|
|
| BLAKE2b-256 |
7e085774d0c0279cca8880be10d5ba892d2ebfb03bebbe723053dabb4a6338d9
|
File details
Details for the file pynw-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pynw-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 278.9 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
719188aad10bbda656ab26195217eb69fd4e9a969d4dd01ff4fb9b6909c98328
|
|
| MD5 |
7b8a08e1434ecb3c135d7c99678fb306
|
|
| BLAKE2b-256 |
fa8cff657d34d3c009fc291d5bd70a0f4e64fc1404482712729abc4ca515e76a
|
File details
Details for the file pynw-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pynw-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 274.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad4803a84a8d87e3dc9a964f05d0252df5c3edc175e5b37c29a0f1488bafc8ed
|
|
| MD5 |
b2474ef1a6c386a71bf845b58c853d3d
|
|
| BLAKE2b-256 |
fd6ce3e169a5f8122690556cb80b542c18fcafb3ce9a03211dff6905f73255d4
|
File details
Details for the file pynw-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pynw-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 255.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fe575ef01888db9dd20f0dc01f29d11b3c3436afa058f795b0f817986ffc5dd
|
|
| MD5 |
928a57c96ef0dbd00b0f476947f3a37b
|
|
| BLAKE2b-256 |
2e6bf62034615a235e1158701eee2975bd2ec4a9eadbfc7d5619421b8f0281ac
|
File details
Details for the file pynw-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pynw-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 246.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b86809cb6674451b46a882f31c2858d41d4dd09db2807db4c0fb0a85faf3a6b8
|
|
| MD5 |
6020fd0e7dbe353f2be5084a3e1d38d4
|
|
| BLAKE2b-256 |
492e3cfed230d3f978ab9e7de4c5fb3226f8ca1038521a577e5e30701795d55e
|
File details
Details for the file pynw-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: pynw-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 263.9 kB
- Tags: CPython 3.14, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3275d88dc3bed9249a38a562d240983953ca1fdcc4e1578f023217a7d4f066ff
|
|
| MD5 |
bb4bdfd2343212df403d72690abcaecc
|
|
| BLAKE2b-256 |
05df584898439ec160dac6f819d55f327b216cf025a4a957fa9568cc58136122
|
File details
Details for the file pynw-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: pynw-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 224.5 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
600e350d6652c5a097105db2092f806889f8014b00dea078ed3a54f907fcb9f4
|
|
| MD5 |
2ef14c69f12d73310c321f5c1913fc06
|
|
| BLAKE2b-256 |
7e73938b07073522093f8583a4d84ab4530b9d255d06fbcfe9589d91ddf04ab7
|
File details
Details for the file pynw-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pynw-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 458.4 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d5b2934eba5ebe03e4c097263607f8fd0f9b6d5c1657e35d54fbc41b4dfb0ae
|
|
| MD5 |
94cc5e898dec7653195e565c6c0fb58e
|
|
| BLAKE2b-256 |
0ac309b1e696c148cccddd59fdf3c257f7aa99259671f682eca758816019dae8
|
File details
Details for the file pynw-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: pynw-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 483.2 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd2138212a50f3616d3dc348b306b21ec629c2c2df3af3438e2cf31c4e86c826
|
|
| MD5 |
66a7c90367ac3319326d7e27aa4ececd
|
|
| BLAKE2b-256 |
b1cd7e8add3f14b2c87b16096dadd2145af521c1befa2888c8f82f09034f757d
|
File details
Details for the file pynw-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pynw-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 530.1 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7bbfd1a82cd82aa10e107556698b1529f9effe21818c23ed5241d42bc30fec2
|
|
| MD5 |
ac0bd83bc0d18ae51f0f54f4b3ac5035
|
|
| BLAKE2b-256 |
9ff5a9e0ff264ff40beb119f9b039da74f5588cb7b62322768b09b2f449679e1
|
File details
Details for the file pynw-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pynw-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 421.9 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0ae5c3416de3dfafdd8f78776fff08e59d6ea1bcd0d3120e8189a962cfc60b7
|
|
| MD5 |
a4f5da2185d213da80d7e786de3a0c8b
|
|
| BLAKE2b-256 |
95eb9059d6f5bb9e637d0f588fb32738effa60a4fde6e799e2d6293bf62562b7
|
File details
Details for the file pynw-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pynw-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 277.4 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8345d727cb30f943c74028762b5a669306fdae5b8a482c3d7c597a1b717ebe84
|
|
| MD5 |
4350f47ded60a269e2d3f864e60ba8bd
|
|
| BLAKE2b-256 |
e4c8df56696f33dda30caf2f280fd69ecb5d869fc969028710e4c0bad6770112
|
File details
Details for the file pynw-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pynw-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 272.1 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07ffe7a73cd76944211620fbd3a5e2754b67a54fe8c5cd73529e4523026d18e8
|
|
| MD5 |
3d1ff40899000dc514a394fb4b1d6968
|
|
| BLAKE2b-256 |
afa1aa792aa06857c558ea095c0641cef86ef47c5193ec640ff9a78db4022291
|
File details
Details for the file pynw-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pynw-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 253.9 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07678f9c9892e65c247267157797b4ab5e13cf0a52d7508e04e1baac83a72c6f
|
|
| MD5 |
9963ad5bb6dcfe56ae80a66ff5b20ed8
|
|
| BLAKE2b-256 |
94a967a7c5e9c98cc2980cbb7b097d8106ad8064bec9608522b917ae019f9e9a
|
File details
Details for the file pynw-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pynw-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 244.8 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb83dc4419737f0a3ce64719c22cd4353f3b7c397a8b5cf916e5a82c4edece2b
|
|
| MD5 |
27595aee084f0df204d831130bd09264
|
|
| BLAKE2b-256 |
251620ab3b3d62eee310d5f723f51ee6bdcec94a704189b318c9658dfa85791e
|
File details
Details for the file pynw-0.1.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pynw-0.1.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 129.4 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
236235747f348ef57f0e0c9fe2d400b1e7f17871203032050723c3e4cbe41edd
|
|
| MD5 |
ebd541d09ba4c89c563319ffca2c7dc1
|
|
| BLAKE2b-256 |
0d8dcc955ab443e44f7b859a047446b8b9376a8fe5487ed5a92bcc81af61f30c
|
File details
Details for the file pynw-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pynw-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 459.8 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d41d8c31888de2d3ddc873437c67e8aa4fd22e99fbc56c22f2f7cd2ad7c761c0
|
|
| MD5 |
91da0e008694e2bc073a87b6b814f44e
|
|
| BLAKE2b-256 |
beee911be919477fa8a1b5e16e680eef972ff919250627991a8e4e2c320c934f
|
File details
Details for the file pynw-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: pynw-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 484.7 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
835f7c6c6d1eba723a5464e1aae340ee0ade5b1b999661b8d2e59de157dcd94d
|
|
| MD5 |
28f836269451835451ce7cd336e02c99
|
|
| BLAKE2b-256 |
86286365a9adbfbee268b8b282af6e1c7003698738d699c193a97258394e8d26
|
File details
Details for the file pynw-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pynw-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 531.5 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
781f3e1ef1822b5f582aec6af7ca0a24603b3a29e4af41661af19849d0b9308a
|
|
| MD5 |
7f4ee9946fb105b7939b66cca46ffe03
|
|
| BLAKE2b-256 |
686fc9759a95fa2c0a314c23908314a56aec4d7a11676eca5f2c3e5a75d743b0
|
File details
Details for the file pynw-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pynw-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 423.8 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07af853b672eb9aceb65ec7a4aa4e5f4a77d854bc1fede02b9f536b1b3a0f1a9
|
|
| MD5 |
1e1a8d0e8d798d30545b302ff2d8daae
|
|
| BLAKE2b-256 |
c746c7775378e9a9ea60c6a8ab0f362520cb82a7eb8b716715571fddbb82385b
|
File details
Details for the file pynw-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pynw-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 248.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1913450f82ec00c9247dc264a1f582e3b121522ab600140c5233d059875f9f6
|
|
| MD5 |
acd07580eec444a5046e2fdce1b68524
|
|
| BLAKE2b-256 |
1af56ee07372f6827c223f337659331c989d587fc4fe9629758aee9cddbcb71e
|
File details
Details for the file pynw-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pynw-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 279.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25be72c0eee0fb697f93e180c791f3940e20e509ceeac8703f11e9c87d45224a
|
|
| MD5 |
611adbd270f9cbd330ad41168db0177d
|
|
| BLAKE2b-256 |
8f43bc12b935585a092559ea799f21863a5f3906b375eced9e165e2ec9a672b4
|
File details
Details for the file pynw-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pynw-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 274.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e2dcdb7b75b367e1c0c73116b39fe99c5b7dc054c6d86a3787b6912b567ab2b
|
|
| MD5 |
0c4d4d2735d0933b82cb76cc8472e877
|
|
| BLAKE2b-256 |
775bec51ea43ae902f737ec178213b44e993da272c979b22d2cd0646acfdc76e
|
File details
Details for the file pynw-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pynw-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 255.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7686419b8f85766c54efef0804352e0a1390d6b0b31da57baa9c681c8feeb8f
|
|
| MD5 |
51415d01bcc97c0528a73646f5cc6221
|
|
| BLAKE2b-256 |
759f4a5363f995f550069c41e4edb6590d6d1b4b5bf5953b89e1eb7f30899299
|
File details
Details for the file pynw-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pynw-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 246.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9667888285de35b9fc9b4e20152ffac36413fb4ec371cfeb48619792d3033b4
|
|
| MD5 |
2c5d9158ed7f1c8a16a89b6c6fb2223c
|
|
| BLAKE2b-256 |
89dac6ab062c601fdafd17ede53a0777108ce426ffd9d1ffc537dcac0c8a7b64
|
File details
Details for the file pynw-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: pynw-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 263.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd79def46144f089e250debd8c97cbe3cecf9211d7f5d235f5b8d6a4e626146c
|
|
| MD5 |
8f6b2269070b8ae61aab6136ac487fcb
|
|
| BLAKE2b-256 |
55badebade2572c1ae35b7c8c2b94be702911acbed35f4e92891357af0e1af4e
|
File details
Details for the file pynw-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pynw-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 224.6 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7bd49d2008331e674391e25bc1a53f8a92b14aac043289d714d2b2b3591250c4
|
|
| MD5 |
e9c8a68a0b9da1d9ee4d6ef899b8fc4e
|
|
| BLAKE2b-256 |
9ab35a95b7510ff4f29ef719e6e9c48967a470eab54101ff2371450f4a7e63db
|
File details
Details for the file pynw-0.1.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pynw-0.1.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 129.4 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f27518d77c3e442b286061aecf655eb94a140c3becc5caa0ed887bc75e1349e4
|
|
| MD5 |
f5f3ad5ab6ca3bc6043d0aebac794a88
|
|
| BLAKE2b-256 |
c02bb9dbdacde30e633cd08a2a269c5888a683ca7be237fb1045bdbe382214ae
|
File details
Details for the file pynw-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pynw-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 459.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3100444af1feb69563ac9388a450ad4bb9d44cd6f465a869b486abe2142de829
|
|
| MD5 |
7523f9889d49925ebe63008522f2d6c7
|
|
| BLAKE2b-256 |
e09a15026b86a277c3a20962d0699e354ba7e6c7876e37859e948ad25337e12f
|
File details
Details for the file pynw-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: pynw-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 484.6 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df350b948c3e562101a237b1594fb6a8131c615e03c0a60a1fea8d5105815c01
|
|
| MD5 |
133633e7216783652c11d66c10ddc63a
|
|
| BLAKE2b-256 |
7b71fce23326a9fed502dfcbcdc296273a6fc8a6a4ab888945d7a19ec610f286
|
File details
Details for the file pynw-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pynw-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 531.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85aeae026781e156e3882d73d2ad95512e96a3f4be8d7513215d0153b26f9e73
|
|
| MD5 |
e55b6624e7496c9deda2fff4ff48142a
|
|
| BLAKE2b-256 |
c084d0ea30357e0a92a76a2566d93845d8f4728de4e5eb859dac44511067853b
|
File details
Details for the file pynw-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pynw-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 423.6 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7141fd9b2a729b5f993f30d2803fcc06e66fcd505266dd7c2fb24c989a91321f
|
|
| MD5 |
a3144bcb4be7f8c0b1afbedc3e7b7d88
|
|
| BLAKE2b-256 |
7fb97d1b6d3d69dca25fbc1ea1a31b8c1247bfa84003e4565956919cf6d8247f
|
File details
Details for the file pynw-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pynw-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 248.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2691c41825225a692dbc05a7e5a808969e2d63afda862522f9ef4376acd8b838
|
|
| MD5 |
2227801b66aea9cb04d81349210ee261
|
|
| BLAKE2b-256 |
9f5d094e8c1c0058ca6da1b227fdd08fecc3a4672ee99506be70b1b56419b3c3
|
File details
Details for the file pynw-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pynw-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 278.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef7c32de096d40db54e4705d2915cc867c972bbbede017535f774c2d040c361c
|
|
| MD5 |
58e41a41127ea4e7ea6dc9067497c7dc
|
|
| BLAKE2b-256 |
8b7d536a221dffd56a0ad5d3ba9540b85a575d4c054b30815e42776fe3cd175e
|
File details
Details for the file pynw-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pynw-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 274.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3066fee1257357ac3b2dfef1dd79d1c3b624e7fd942e54c428a8791c0d834dc8
|
|
| MD5 |
eb1a00f69d605acc74388724d6b07c14
|
|
| BLAKE2b-256 |
acee7578eb5561b661a941ec6269150b1a5e5ccf604c61407d7be6885d0989fc
|
File details
Details for the file pynw-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pynw-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 255.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4354c6fd5d7af79f841ef022725e0aaeb7699920aabed698cb02dba3c40dfd44
|
|
| MD5 |
d4243a394e70734d6f7e06ad9c2835fc
|
|
| BLAKE2b-256 |
1ea5147769ee87a0e98598b5ef7dafa61d4f9c9b0fd3e27bed7030c3b53c48ca
|
File details
Details for the file pynw-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pynw-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 246.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9dafcb2823ff2ba17fb806881cab43d2f4d7218697671a0cb4218949eff373b
|
|
| MD5 |
b0799ae627cda8427e439ed56874853a
|
|
| BLAKE2b-256 |
c1ead7a21992d271c2f42359d21def43319532db8fbea36b81500c876da2e958
|
File details
Details for the file pynw-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: pynw-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 263.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
605e5796a0031072d4f92f845df642bb1689a346eae763af27fa613de35167bc
|
|
| MD5 |
37c023a6713cafa0599de458dcc27d20
|
|
| BLAKE2b-256 |
67f3e00b108fa6892342febee13d41826e3dd3089949e1f461982d62116aa2b1
|
File details
Details for the file pynw-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pynw-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 224.5 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
521250b45d941299f2e4e4f24bad232be8d21ec64e92fd1e49e5828270f534ad
|
|
| MD5 |
74807b651da1d56e47d7d5298e71a951
|
|
| BLAKE2b-256 |
e66142b2383c6d5e8db3b4f8ae3f3cfeda3d9052df805a986dc74f75e4953da2
|
File details
Details for the file pynw-0.1.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pynw-0.1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 131.2 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0114d966eed19a8d12b2b1038cbbce09fa87b8f28d9e9f4c98c3eabd4b1f1c2
|
|
| MD5 |
1db462c03c9d8c6a13f58a2506db5f09
|
|
| BLAKE2b-256 |
a40f21262df28e371a71a509c88306a8d9c6b5ab8afd94254cf44b6877b7c7ff
|
File details
Details for the file pynw-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pynw-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 460.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
830c368450bc05afa9fe085445c5d0b362013a9a021e743ec88afc2094665654
|
|
| MD5 |
bf3905cbd678f1adfaef117a38b6a280
|
|
| BLAKE2b-256 |
8ec0e1af9965a321ec181b97648d2ce0523f7ac9f4cf86c233676b6d14a34334
|
File details
Details for the file pynw-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: pynw-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 484.7 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b037991e2be70213f243e30747b12a1ab0a0ca963e234479f09ec7d997477492
|
|
| MD5 |
b4d95698be9253bb0bcb38f34497dca9
|
|
| BLAKE2b-256 |
d03ead27e87d3d5ea40a03a1d6577b2d351db527ce71c09749ecfbe5e6e56f35
|
File details
Details for the file pynw-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pynw-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 531.0 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ac312506f920c19ce2ac3c0c39f5d16f58a32ef6451cbaddc9e23e3ee7d491c
|
|
| MD5 |
262c2afa7a703a74a2beec51a53edc6c
|
|
| BLAKE2b-256 |
6a5e331bb8dc57da100121271759abb6538147818587480e4f3e26fcceb47d43
|
File details
Details for the file pynw-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pynw-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 424.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7bc6d39d3b3a253564b186b58a6530aae869da622fda22e7c62b191b9d870f1b
|
|
| MD5 |
a1909b7fd3937579a70493a5a6b3c16c
|
|
| BLAKE2b-256 |
fbe02443b6133bdbcfa89cc6ec835b4116b0785d2c08b29d0300e3a0e19db520
|
File details
Details for the file pynw-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pynw-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 248.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02f5f894ffd616dfca61c83c6189a2ba5345a3d4817a5eeae53f535a4f31da83
|
|
| MD5 |
b78e734357b256fd921911e7db0a6b10
|
|
| BLAKE2b-256 |
f47872e3e7b4ae587da0cf1940054841ce3d38edd4aab42a7f5ef6d7708448c8
|
File details
Details for the file pynw-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pynw-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 278.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08226faadb0865cfe85a2c86855aa8e8932e182046d505826a56f399d0e90421
|
|
| MD5 |
7c125a7733346e2f59cc088ac4f658d3
|
|
| BLAKE2b-256 |
e2244f49683c5714624c84990fbae445947dd887141c3f7bcdaf77fb2a16f486
|
File details
Details for the file pynw-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pynw-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 274.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f351237bae0491993b4177fc48796eef3f0d994e51d3f9b96e64a51b1a4edf5
|
|
| MD5 |
70548decd45e428713402392ccc5f169
|
|
| BLAKE2b-256 |
e451be9825c9cc3a1d63254cfe773ab7792176f0fb512271361617f10316d26e
|
File details
Details for the file pynw-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pynw-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 254.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9847c93fc37b2d1af689598feec99eac682a7ac8d7aa71941354a27706d9780
|
|
| MD5 |
37ff39897e375f5d852de1fd486b58e3
|
|
| BLAKE2b-256 |
710a8508a09307a6bb6da651ebd97ff2b27998632f81e67439b146f921b89775
|
File details
Details for the file pynw-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pynw-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 247.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4276cced2a3cc0583b48d7c5af6adf51fdc6cce927855b8b11b2c9a63dd7f5be
|
|
| MD5 |
4bd179822035b4dcc5a73fbdc1d2be1f
|
|
| BLAKE2b-256 |
8a8365e9df95b2449d5006b9073ebafbf697a51b1eb3f8b8d4419997e4b3271a
|
File details
Details for the file pynw-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: pynw-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 264.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96e7c79534720f8e9bfaf080f88974bd06c8e2b28ce77425ac84187d76466c2a
|
|
| MD5 |
73210389060f3e648cba5e7c6750860a
|
|
| BLAKE2b-256 |
720b43aa85b05d6e8768ae301ba43acc485cc142ebac0992a32a567d16cbefb9
|
File details
Details for the file pynw-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pynw-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 225.0 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe5b4e0eb0b19e644b53277dc9a1077d2455680433065e0e8de600434262a3b1
|
|
| MD5 |
44e763a54ab5b1f6cf1f519a26b9cf14
|
|
| BLAKE2b-256 |
a31826945e7a38cf1e18148bccb1298a70d5c40f1b2c42a2405f400597e2bc8f
|
File details
Details for the file pynw-0.1.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pynw-0.1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 131.4 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d821bf96c584f25260ffba7012188972148e424026a5042effa2e475fe80d8be
|
|
| MD5 |
fe25818c61ff1c674ae2bd3b193749dc
|
|
| BLAKE2b-256 |
4c0a0f2fbbf2247b17706baf1f278f5fca7995fd2144b3c4273ee2012943e97b
|
File details
Details for the file pynw-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pynw-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 460.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b82af5c6597d34bfcce4dcbac6fb1086e02b6c9b8ba664d5bb6169995d7262e
|
|
| MD5 |
83b883c04e896d9684240407c9bd0367
|
|
| BLAKE2b-256 |
db2f70f7c815926e8b864091819c5e477873b365ddfd9d5f3216ebefffa5027c
|
File details
Details for the file pynw-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: pynw-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 485.0 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a86ab81f09d516b786264ed78d6a64694586470bcbb1b85c0d61fa59e10b7d2
|
|
| MD5 |
5b142c5524c34335a74b4a1cbd85da61
|
|
| BLAKE2b-256 |
21a62f7a0764fb3067ad087b9f0bd78a285014d06162823f5e8abb81e4a3bfa3
|
File details
Details for the file pynw-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pynw-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 531.2 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
220a4cf0cbbdcda551ba25e9215bec33464dd90e4a3230e3a436e38128c5493f
|
|
| MD5 |
c3526ef4b8297f84a76ecf2b4193395e
|
|
| BLAKE2b-256 |
c2a12af605ba32f466a8979132b79e1cd20b2a6e77efdee236efd40dcc9e6433
|
File details
Details for the file pynw-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pynw-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 424.5 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1792eaf947a3933d34510beb35bfad770c5cf053613149cb39c8d971db063e0b
|
|
| MD5 |
c09c7a0cb18d391f254accd9b9563256
|
|
| BLAKE2b-256 |
693483fa79c0f49a9dc86d6afa11d67c228f8c58cfec6321dd1fa1ac3a691d1b
|
File details
Details for the file pynw-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pynw-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 248.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c2b7f3b2fc7ba1d086c60bd8ef79a06b0ab41f045b08e5dd465a5eb9af4e9e6
|
|
| MD5 |
c3c07b39f948cd52f229a1c754023714
|
|
| BLAKE2b-256 |
85c78827dbedd75abe7ed82470e6ca72b11df7d0037ca0d6730b9399adc1abaa
|
File details
Details for the file pynw-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pynw-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 278.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80261c0d01e648f8a745d6813a3a7dba15df93e00d5b5a9efa01ec7e566023e4
|
|
| MD5 |
656e66af9609517707e7f51feaf6b3b7
|
|
| BLAKE2b-256 |
2bbbd0dc00a8a5d855f4a3c8383da0afc568094985656039c439721b24bea80e
|
File details
Details for the file pynw-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pynw-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 275.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b83da0406273bb15aa3e7ac8f213630bd4943668d0184524413b9e6bff00d47d
|
|
| MD5 |
f1514c7c8a51160a388c42ebdc9f43ab
|
|
| BLAKE2b-256 |
aa495daa6cb570ecbf74e72425bb8d2c661b965a6d5f57eac4f11a661a89533d
|
File details
Details for the file pynw-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pynw-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 254.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b279a5d5e43d604ad1036de2adc9e7c1dc3ba7efe2068009fa56fa3531eeda9
|
|
| MD5 |
80e0df514a51773d22a0216a55b24883
|
|
| BLAKE2b-256 |
4e0e0df19f1d2f5a70a4defbca515382f51c1f74f9ee8baea76a173ada88faba
|
File details
Details for the file pynw-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pynw-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 247.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee8721905e2da117ce7b76d5e13e806947b1f98021300f14d82110355ce0cbeb
|
|
| MD5 |
a7986572d1387b0590f9115961f33053
|
|
| BLAKE2b-256 |
07be1c642c89f7d4c8cc09a450fa5b0b056da1bda67b5bc7ecb366e1e8f96d97
|
File details
Details for the file pynw-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: pynw-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 264.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c9e2112c32351667c0cdf8a61eb360777fe481de94e0c6707c99a72250537a1
|
|
| MD5 |
083ee749dc8877255b27789c154cbb35
|
|
| BLAKE2b-256 |
b04ec8c030305d0105cc66e2ae684f144edd466664363296ec9117e554d38876
|