Rust-accelerated Needleman-Wunsch global sequence alignment for precomputed score matrices.
Project description
pynw
Rust-accelerated Needleman-Wunsch global sequence alignment for precomputed similarity matrices. Python bindings are built with PyO3.
Align two ordered sequences, allowing for gaps (insertions/deletions), given any precomputed pairwise similarity matrix. Useful for strings, time series, token sequences, or any domain where element order matters.
Features
- Fast: The alignment runs in $O(NM)$ time; a
1000x1000matrix takes < 10ms on modern CPUs. - NumPy-First: The interface accepts NumPy arrays directly and requires no intermediate Python objects.
- Domain-Agnostic: Operates on a precomputed similarity matrix, so any scoring function (e.g. distance metrics, semantic similarity) works out of the box.
Installation
Requires Python 3.10+ and NumPy 1.16+. Prebuilt wheels for Linux, macOS, and Windows are published on PyPI.
pip install pynw
On platforms without a prebuilt wheel, pip will build from the source distribution. This requires a Rust toolchain (1.85+).
Quick start
Align two DNA sequences using a simple match/mismatch scoring scheme:
import numpy as np
from pynw import needleman_wunsch
seq1 = list("GATTACA")
seq2 = list("GCATGCA")
match, mismatch = 1.0, -1.0
similarity_matrix = np.where(
np.array(seq1)[:, None] == np.array(seq2)[None, :], match, mismatch
)
result = needleman_wunsch(similarity_matrix, gap_penalty=-1.0)
aligned1 = "".join(seq1[i] if i >= 0 else "-" for i in result.row_idx)
aligned2 = "".join(seq2[i] if i >= 0 else "-" for i in result.col_idx)
print(f"Score: {result.score}\n{aligned1}\n{aligned2}")
# Score: 2.0
# G-ATTACA
# GCA-TGCA
row_idx and col_idx map each alignment position to an index in the
original sequence, with -1 indicating a gap.
Details
Precomputed similarity matrix
pynw takes a precomputed (n, m) similarity matrix rather than a scoring
function. This means the entire alignment runs in compiled Rust code with no
Python callbacks, and you can build scores with vectorized NumPy operations
rather than element-wise Python loops.
The trade-off is that you must allocate the full matrix up front, which uses $O(nm)$ memory even when the scoring rule could be expressed more compactly.
Scoring
The total alignment score is the sum of similarity matrix entries for matched positions and gap penalties for insertions/deletions. Gap penalties are typically negative.
When multiple alignments achieve the same optimal score, pynw breaks ties
deterministically: Diagonal > Up > Left.
Edit-distance parameterizations
Needleman-Wunsch can reproduce common metrics with the right scoring parameters:
| 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.
API
Full API documentation is available at chrisdeutsch.github.io/pynw. To browse locally:
pixi run docs # generate static HTML in site/
pixi run docs-serve # serve live docs in the browser
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 all pre-commit checks (ruff, cargo fmt, markdownlint, actionlint)
pixi run check # run all pre-push checks (cargo clippy, mypy)
pixi run docs # generate API docs in site/
pixi run docs-serve # serve API docs in the browser
Linting and formatting are managed by lefthook and run automatically as git hooks.
Related projects
- rapidfuzz: Fast string distance functions (Levenshtein, Jaro-Winkler, etc.) with built-in scoring and edit operations. Likely the better choice for standard string distances.
- sequence-align: Rust-accelerated Needleman-Wunsch and Hirschberg for token sequences with built-in match/mismatch scoring.
scipy.optimize.linear_sum_assignment: Solves unconstrained bipartite matching ($O(N^3)$) where order does not matter.- BioPython
Bio.Align.PairwiseAligner: Needleman-Wunsch/Smith-Waterman for biological sequences with alphabet-based substitution matrices (built-in and custom).
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.3.tar.gz.
File metadata
- Download URL: pynw-0.1.3.tar.gz
- Upload date:
- Size: 52.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b398a29b76a67a9beeb179940bd7d79bef534fefb9c739fd44e22a321bd9831
|
|
| MD5 |
7b92ffcb9fb6059fc4623ac99dc11a5a
|
|
| BLAKE2b-256 |
77441f47e18a9f76e1d4a0141cb9dbc2ebeebf55623b3d8c98e672766fe596f1
|
File details
Details for the file pynw-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pynw-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 460.9 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 |
ceaada637c86f5db22f9ce91f66eec3e2c508ebdadd61ac0e3e6b598873453d1
|
|
| MD5 |
4e914264f2f2c68ca4b8c1a353c626d4
|
|
| BLAKE2b-256 |
2dae3f92eab3ef3b89f436ad0718d679faaf03d462c755b6681b7bcac36a166c
|
File details
Details for the file pynw-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: pynw-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 485.6 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 |
f18bd0ae13b166c52144774255c1b85642369da9087fea78c6f43c019ebfe4db
|
|
| MD5 |
4e7db0ad429b492589570f36c037eb05
|
|
| BLAKE2b-256 |
6b55d29a6ce78132a20923b5197875441f0147d5b8cbbbee4eefa9b0ee696632
|
File details
Details for the file pynw-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pynw-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 531.6 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 |
15446dd823903c9ff90b558bccf507c4ef27343d2abe2eceeca1f51b733f0afb
|
|
| MD5 |
dc5e8fe8e30143c2c5edf758d5e5479a
|
|
| BLAKE2b-256 |
3c45d716e7df1a6ca78a32cd8042c414e642a4448426861707cfce5313b78c5d
|
File details
Details for the file pynw-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pynw-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 424.8 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 |
5538fb1e15e2c1d0e0db065d357a5efd812949856067f7947f415a1b0ce6ad33
|
|
| MD5 |
d472cb1716a3d67ece6706cde0bd532a
|
|
| BLAKE2b-256 |
0c405c5518cd5cd1af18c4f13b6f9ec128e58c37f5d8227c904c229c7b581bda
|
File details
Details for the file pynw-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pynw-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 249.3 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 |
a34df18ecec464a314aa1e9406bfb41f3c0a2520d0e2c54e3392aac5ecabe04d
|
|
| MD5 |
9e272f3209a3f6e402c1e896f1a7380e
|
|
| BLAKE2b-256 |
e991e9b598b53e042670e2e2cdd023b7c935c90ed55f5e4021c831aae6ede3be
|
File details
Details for the file pynw-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pynw-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 279.0 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 |
afad38840878fdb08ab2adab54f2be865feafd7ba7d3bbf4549dd477f13ca729
|
|
| MD5 |
5a5c6f3ef605f8e9145093806d3735f1
|
|
| BLAKE2b-256 |
d89a71c88c1722d4f79e10cf14d822a8709b55479d390778209c3e4c40d9a46f
|
File details
Details for the file pynw-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pynw-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 275.5 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 |
47d04bfae46abe52ac7819322277c30e97323daf8bb2f46f987a2d1e6d722996
|
|
| MD5 |
17b495c51ce1e09954ffe4a734a04800
|
|
| BLAKE2b-256 |
bf7e36b7ec65f28c98a6a7f865e5361943f533f48df5cb92fcc6ee64b10b7274
|
File details
Details for the file pynw-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pynw-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 255.3 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 |
13288b735680b19e683a0f8338c22a60cb329b0756407a5ddd010d6c70eb7701
|
|
| MD5 |
65395c06316716b642453cba2267e49d
|
|
| BLAKE2b-256 |
7ded391624cc6555aab73cdef744be10a90b4a6fda203bd4fd31e7f37ceb8ed4
|
File details
Details for the file pynw-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pynw-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 247.5 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 |
6978c2b218a85b17edc850f56b5e6350db53fcfd9fdb9bda380e7ee6b074cc8b
|
|
| MD5 |
2c614edebfd12f697c4f8448167ecd20
|
|
| BLAKE2b-256 |
ef5154c51eb5b2aba3cbbbb99f7ce35156a9b6c7ec33b8d714bb30a3e7e5c703
|
File details
Details for the file pynw-0.1.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: pynw-0.1.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 264.6 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 |
bdf2cffbf64fc801fff705b74014e4308166483562a0cd50babd7f4ae960b5c4
|
|
| MD5 |
fcaa9d0edf82e251478c241057ee4b47
|
|
| BLAKE2b-256 |
e184a233184e083b3f96cdf8915827f75062c14542a398f5bb6e7dae3db42be9
|
File details
Details for the file pynw-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 458.6 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 |
70a213cd876e08f30be356f2b618f36efa67e4785d7b32489fa89f57f3b46c82
|
|
| MD5 |
2f448944968394178d095edbdaffb287
|
|
| BLAKE2b-256 |
3c77f31b2c103d0bb4566458ef089b595b6711c3a075209a8cea52cc60b3ec4c
|
File details
Details for the file pynw-0.1.3-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 483.6 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 |
c10ed319d8247eb7e26136a6a26554210ed6e8d13ca6c3385d928fdc81b8404d
|
|
| MD5 |
b5bb07fa0f65d02774c7b2df76e0d5b2
|
|
| BLAKE2b-256 |
ef976d81543db9400cca737b5027dcb87b1c597b9a886274c6a8a211960e6d2f
|
File details
Details for the file pynw-0.1.3-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 530.4 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 |
eae234fb78430a1830b4e52b89e8ea52da1a018f76b3c613e5df51a7de10961b
|
|
| MD5 |
b3927a3fe308561e347306e4af70ff99
|
|
| BLAKE2b-256 |
79b6756e92f48a2953bd73d3684e7da09d00f292a51e13566c03bbaebff094db
|
File details
Details for the file pynw-0.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 422.2 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 |
c5b6db8b53c7034633e90cdd2dae9aad9abdc1501d73504dbc167a1530a411f9
|
|
| MD5 |
540bc74d5c8ac9cc55456aef2694919a
|
|
| BLAKE2b-256 |
4b596bedaa272d69af59efd37a215a7b31cf2f67f3c4f21eaa846d54d8c8993a
|
File details
Details for the file pynw-0.1.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 277.8 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 |
dc1203d0401bc39bf8c3714b6f71e1912f87d63eb572f9c17d7adbdc2252157c
|
|
| MD5 |
6411330386ca277ffb7b8cc1bc2b6fd1
|
|
| BLAKE2b-256 |
02de89b5cd4c9e6eb52a4a34dc4d34ece1ad2499d0ab6353fa0f082ee843cce4
|
File details
Details for the file pynw-0.1.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 272.5 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 |
a5559eeb4d4bc65b9d6181642308812e85c1fac8abbcf264a821d989af1e1fae
|
|
| MD5 |
3bafa32005ecf1bbdd120ae89c44f472
|
|
| BLAKE2b-256 |
ddb62ea61c9934ee59461fdba5995c815b47251254611dc967241db0749d272b
|
File details
Details for the file pynw-0.1.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 254.3 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 |
4ca8f0b9893a490c911136fa09eec7871171e06f309cfb507a6f7b7e6caef1c1
|
|
| MD5 |
00b71b0c90c210e5ed5c939d7794bd55
|
|
| BLAKE2b-256 |
6b8dacf84a9157e9de868b65fbb2bd348b36fbd9fa016b8486ba46b75e234a70
|
File details
Details for the file pynw-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 245.3 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 |
4d310691a7705d067178992a6b94ce0d1f75e9f00a3ab34f66823eecc9dc7946
|
|
| MD5 |
38bc9e5ef3e435191858e19fb5f288f3
|
|
| BLAKE2b-256 |
1a208447f9b306e8d69ed491396570fa39514c708b78fc0d6957b7da685bab61
|
File details
Details for the file pynw-0.1.3-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 129.5 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 |
9747467b92444f25ba040bf0305a7a0347b153cba70f4944a5c675c666032443
|
|
| MD5 |
2153d8d817762c9ee79408c57dc34c44
|
|
| BLAKE2b-256 |
28ae66fd8583459a9399ce9631467c574b77da07a15b95a626cd0745596a57e4
|
File details
Details for the file pynw-0.1.3-cp314-cp314-win32.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314-win32.whl
- Upload date:
- Size: 122.8 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11b4c515e3f3a01c66760668e914a0fd0a48e4c7451a0350617140a1a4011472
|
|
| MD5 |
9e7a23f0b1f0e4938a972fe2145bd8f8
|
|
| BLAKE2b-256 |
2af5ce2fe03c5e3f5716e267e763a39e5e09e476fe681c8540eccfad5b751c49
|
File details
Details for the file pynw-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 460.0 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 |
6df5ce05285b7b74db9fcb4e150e51cb09014f135745fb7a7a782a0d8fccc4aa
|
|
| MD5 |
43c162f318ef33b0c21e00db50b7e669
|
|
| BLAKE2b-256 |
be6f0d17e5218cca4d9c940cdc3b0ddca037b336929728965c7be84c9dbdf23a
|
File details
Details for the file pynw-0.1.3-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 485.1 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 |
750cc54a090c89baa11d90abb9f71a763549846e91391966883a7d316b689652
|
|
| MD5 |
3d6cb54e077f01b3aab0292517bc5b6f
|
|
| BLAKE2b-256 |
a238cce7e709bd6d8d8056c07466b55ca42597651c936711015a4e777bee7a86
|
File details
Details for the file pynw-0.1.3-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 531.9 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 |
759ffb955c65552a94c0ad7a38627507b40c1e75871353fa0e4d497a5746fdd5
|
|
| MD5 |
6719add90b0065f597097d950d103920
|
|
| BLAKE2b-256 |
22df9deda40f8d996b1bb908b3599f074d3d9533076fa95c001fe0e710734996
|
File details
Details for the file pynw-0.1.3-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 424.1 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 |
82b3d5aedcf26e738b58487e4897eb875c5088b53dd6a27f367080ac2b1615b9
|
|
| MD5 |
a575ea463906860c1373e92d7a2b387b
|
|
| BLAKE2b-256 |
cf973f73ec0e2f383e311b390091a74334bea90bb102f1b80083f10de77b3038
|
File details
Details for the file pynw-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 248.3 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 |
9d6b5f12621f09530811aadeb7ef15c7afe79e294a412e859df500cd2784e740
|
|
| MD5 |
fbf00559c32f46f22e96b25b95cd4409
|
|
| BLAKE2b-256 |
9acee0a67d08c67b22aff12e9e349dce4f213cb50935cf82384392acb09cf977
|
File details
Details for the file pynw-0.1.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 279.4 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 |
a1d26c6b571d23c2628626ede7e67d6d1d43af04d07d442b2c4a642b04837db4
|
|
| MD5 |
5ab06e19cc449bb439d4c7ca0df544d2
|
|
| BLAKE2b-256 |
0a1125650cfa11a982fd778e013d16426c91173ac99a1e5d117ca27d0ef82ba0
|
File details
Details for the file pynw-0.1.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 274.5 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 |
823d2eee31cdf05d069fa320dc04093869e377ad4e1a8c0a06ae5fcbbe9ffbd2
|
|
| MD5 |
c6558a9780fce5afe95b2b09f761cfa1
|
|
| BLAKE2b-256 |
0e5299766e4363eb251a0f030be7c2c1cc3b9fdce5b4094ea1973385ba4621cf
|
File details
Details for the file pynw-0.1.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 255.6 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 |
32289a46e3b729fda9532a025eea503024558b81e17c0f4de2c8e69465f195f7
|
|
| MD5 |
d74c0a9a2e993c9049bcf8e5f9d4a870
|
|
| BLAKE2b-256 |
187da2638b8e38dc383daf21f7c1c830c9b48ff884e772470a77c86dbf7e2eeb
|
File details
Details for the file pynw-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 246.9 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 |
f09f98088e0619cc4f33c5847c99dc7ecd54712d1083294401a116c53bdfa096
|
|
| MD5 |
6f2d8817cd3a5afef01b2c9d7f29ad65
|
|
| BLAKE2b-256 |
450c63aa82a605a37c4ad62ecfc1dcd8cf2ab512251a1cf86d721a6439a93f5d
|
File details
Details for the file pynw-0.1.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 264.4 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 |
b9a6c96296743d968959c706c8ca6ba1dc80ed3ade7806c35267a8291bd24ab7
|
|
| MD5 |
29492ba2cb9c560db6c200c2e04c9351
|
|
| BLAKE2b-256 |
169d95490ae6d91f4941397138121b3fc3ac444cc4a2b1c57f2164673090e84b
|
File details
Details for the file pynw-0.1.3-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 224.4 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 |
b8dc07791adeaae685b0b22c6ff22268b993a9dbf45c49dcf91dd85dc41e8b44
|
|
| MD5 |
b58b7c065d8bca357a2d35841e83e64a
|
|
| BLAKE2b-256 |
d40b501ad8174befdd08dd7d994f6b9eae2e4744403e2fcfcc15bde4949a86db
|
File details
Details for the file pynw-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pynw-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 232.5 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41fc3bffc5e2bf1dcae63754620a16555a9a703a5ce792ee6ba224158555562c
|
|
| MD5 |
fc08509920501176d27ff77c43cfab03
|
|
| BLAKE2b-256 |
717d5a780ab3ca6addef01d88a327f6f7c5b142f526f40265bd4c56a7217029a
|
File details
Details for the file pynw-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pynw-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 458.7 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 |
025512ee59687d15cb91d6ffe49eb65c0002815bd82ced5d5f7d7235281a3c8d
|
|
| MD5 |
19fa4bb64fedb76f4c624d67541dc8a9
|
|
| BLAKE2b-256 |
42e95648962af4eca6a8546acaa417db26a04a4cb1df1c4dcae9c811dcb5af9f
|
File details
Details for the file pynw-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: pynw-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 483.7 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 |
23c543341ac8dbfcd5e7f897cac358ff274a8744d5871d2bd2c27ada7821cfca
|
|
| MD5 |
b855654d2e5fc9f7ab9ed69cb0e35bb6
|
|
| BLAKE2b-256 |
186b209e71447a4c77ae59d2844f88c1e0cf4fec1a70ffa43b3436ab2c2d5c19
|
File details
Details for the file pynw-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pynw-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 530.6 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 |
206cb1ca362b4d665110d2ff2a8a976597ce51a1df7c591434463fa78bd6ca80
|
|
| MD5 |
a3021934f3c5499859c36de47e036e77
|
|
| BLAKE2b-256 |
ef107ce8a3754357cbe74be4a12a9584fbffda441b36f618bf304ad85eb4bc1e
|
File details
Details for the file pynw-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pynw-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 422.3 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 |
9eb10da8db76f6892aae1965082590d0c47cc6729d8a0e9f66ce462c6e1466ac
|
|
| MD5 |
ce8973e0d11dd9893b0ce74453544fc7
|
|
| BLAKE2b-256 |
ad47cc3773d3c31f86e47ce01e82e2516adaf0dfa811ef0261db4912c8345553
|
File details
Details for the file pynw-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pynw-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 277.9 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 |
9eea3cf8c7eaf09c64157a5166850247b77b08da4d2779515f47ce200dfb8783
|
|
| MD5 |
ae1dbe46c8db0b30c4800bbd3642c4bb
|
|
| BLAKE2b-256 |
b937f39d0c061f88090dead3df89ca96b097566dea31564f45b1ab77542b8f38
|
File details
Details for the file pynw-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pynw-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 272.6 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 |
44430d380c6902172ee8481022fe3e89f99c186939103766ed08c21053cc9349
|
|
| MD5 |
376423b10ecc6f86d3ede9863bf9261b
|
|
| BLAKE2b-256 |
073bdfbb47f46f5f80cf8e0aaa86cfe2b4cb788c5351a15baafc24cdbb5451bb
|
File details
Details for the file pynw-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pynw-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 254.4 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 |
311c46e706e4eb6479f617b4c34e0704ae7b47941ac0f977cf4af52eda6e166d
|
|
| MD5 |
823bf1feea3cebbfd105397b536f5f44
|
|
| BLAKE2b-256 |
fe1546cf2a0eb68bb3d5e38147b00e4fb517b501c7cef4c7f93ae2e38c18d5e9
|
File details
Details for the file pynw-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pynw-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 245.4 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 |
8806042f36f3f83361a5000b04c73c0a63f1c6d834609812accc75d25c6a9ea6
|
|
| MD5 |
9b51a8e89645d4b7f0b2c45c42a20444
|
|
| BLAKE2b-256 |
8d598c99297830414839525e55df2fbc42834cef5e4e13e01a5264889f22ddde
|
File details
Details for the file pynw-0.1.3-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pynw-0.1.3-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 129.6 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 |
dc028e925cdca145c6be6e793a74a9f453254da0d032aecc1167d5f693352121
|
|
| MD5 |
0a8232024ea6173945fb6fe8270e57c9
|
|
| BLAKE2b-256 |
616ff7b60c47bbf4e9c5e9c3723106c160926ea6054f9f15b4cfb6e315170eb8
|
File details
Details for the file pynw-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pynw-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 460.2 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 |
81d15c8bbd7802e2ce3708d8107acdac25ab6f43b45b97b52a09cbf34f8f0f89
|
|
| MD5 |
67ff960b4497dc7721a21e9615ed1ab6
|
|
| BLAKE2b-256 |
532243443eb434d7d722eaea8b4458521cb00d779d2162a091436b2e9d2590b2
|
File details
Details for the file pynw-0.1.3-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: pynw-0.1.3-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 485.2 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 |
f9341b9d2a6615988d8248c43271e3f5be3bed54642099d4ce78b8079cf0f9b5
|
|
| MD5 |
7f59d7b5ded3fe75714eefab4c84c4d6
|
|
| BLAKE2b-256 |
b7d6cfb33de4e2f9be8efd9be07792c9cee2ca94fc9bb539b1057babe7b95930
|
File details
Details for the file pynw-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pynw-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 532.0 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 |
4cb9ef42c93f91ba8ffaf4c49a0b3efe816ffec562d7835345756fbcd0c2b4de
|
|
| MD5 |
56f5c7040ecbe3147b8e71685c2af1d3
|
|
| BLAKE2b-256 |
242889f8fb9233d6193cd5e359d498b254feb4d107e5bb61d1ac487d097ec6d1
|
File details
Details for the file pynw-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pynw-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 424.2 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 |
e98ce399c5e9b967d43749a09b98d6e87d5e3408112ae15f7de6391147ba14df
|
|
| MD5 |
6921753e8ac00598c327d9f107e80bd9
|
|
| BLAKE2b-256 |
1db9eedf174caaef86888a21e92e1226c1cccd211a9f78a5d33236aaf7092a7f
|
File details
Details for the file pynw-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pynw-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 248.6 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 |
7676290a0e8af3fd241a2b783f085b11ae4cf4dd1387a5c2c9cd3e0d755450d7
|
|
| MD5 |
259e316b2f0d2c982483a486a3d923f5
|
|
| BLAKE2b-256 |
2467f5b30b17969aa08646e0be8f01ecb45a76ff9dab3c0ce745dd2bcae16fa9
|
File details
Details for the file pynw-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pynw-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 279.4 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 |
c47ac1b5396504c2f84640f161e87ac9d9fa1a91c07e6662862a0f7d6d4b4ad3
|
|
| MD5 |
4928ba8c99421a1ae2db9e5573c4fe17
|
|
| BLAKE2b-256 |
0eea30022e9e82b3154d4608d2d9aead78ec833fd6003accb07fc0b6b8731bcf
|
File details
Details for the file pynw-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pynw-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 274.6 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 |
9ff696259a6944fe398ee242002d857d52d43b6dc439ebc7c15311e71f542775
|
|
| MD5 |
e6f072592705b8fae34dbb49d8f04c1f
|
|
| BLAKE2b-256 |
fc2191e18961f0ed519daeb2e28c1d326979de2abfc306f0d6c96f68ab1171d5
|
File details
Details for the file pynw-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pynw-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 255.7 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 |
88816efcf9acf73a025740ffd4a592dedf9ef815bfa87b3cddf19b0bb5c2b402
|
|
| MD5 |
a508427646abcdd07cab7de183943864
|
|
| BLAKE2b-256 |
738ce15469f200420c5e61ba005818e3096ecb56103026a19586e92140b29a1b
|
File details
Details for the file pynw-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pynw-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 247.0 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 |
caaa6894997ab71d45916bc9cad97392009406caded201460ef9f5567accbef0
|
|
| MD5 |
6c9157dda743bf49c68a008712e86b6e
|
|
| BLAKE2b-256 |
5684453c29af7a3885c6863ede6bf1a7ab009db65399f50ee791d7cc1e2fbac8
|
File details
Details for the file pynw-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: pynw-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 264.4 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 |
1ae7040d98662956bbc700c8cc403e1b4b4ff9bfeb70bcee45e47579ee62b4d5
|
|
| MD5 |
bc1719b98d163522637fbb58b333f51a
|
|
| BLAKE2b-256 |
6253ae71b672baa3d0d02e5c7545993da635240cee4928487c5351b57fd03150
|
File details
Details for the file pynw-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pynw-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 224.5 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 |
5567daeea60ad6cba9bc4f90c11262141e727b10ac914b8abbcd9a9f99984a55
|
|
| MD5 |
57e69d1c5b15d128496fb9e960b9c417
|
|
| BLAKE2b-256 |
04eeba82b4238f5d603ba3b04e86efe8697befdf2a647c2b024a052cd74e5aaa
|
File details
Details for the file pynw-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pynw-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 232.6 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1bf9a4a26cd706ffec6b886134c0a48ccc8f01e25464297c1cd606bdf1984e09
|
|
| MD5 |
42c0aa08a57a5b159e28e79fc7fc7a31
|
|
| BLAKE2b-256 |
5309d052bcffd77225bfcc6be949ea7e7c2f89ed8fc556415ef99e6a573b237e
|
File details
Details for the file pynw-0.1.3-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pynw-0.1.3-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 129.6 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 |
7bb2741424a8b2c6817c2ad4bb9be4fa7d7da51595ba44919e87ed2d852a6b32
|
|
| MD5 |
8086bfb833c55ecf5c24015a62893d0c
|
|
| BLAKE2b-256 |
9c1507705bade3138a9d48db7f59bffff227a19d00e7255768f5e3383b936e65
|
File details
Details for the file pynw-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pynw-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 460.1 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 |
2c6cfdc39e05fce4968a345ebd0445cfa61f45ed3fbf9e968bad4a79684eb1b5
|
|
| MD5 |
a304313f5fce3453a9d11c866a7fa715
|
|
| BLAKE2b-256 |
962271be192d0e79ae3ca06679283bc325137db608a35c60f228ba2d3ae98e45
|
File details
Details for the file pynw-0.1.3-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: pynw-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 485.1 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 |
5a1ae011f315cfdea37d9696eab5bd01f4ce81e11dbf0fb72fb90245bd436549
|
|
| MD5 |
9cd1edf1b75678e4c5042ef750b0ce2a
|
|
| BLAKE2b-256 |
d79c5bfefff89929ef35f3cc7ba48c383a7c386e4a1228b6789913b9d2a2b46e
|
File details
Details for the file pynw-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pynw-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 531.9 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 |
fcc2152fd4dfe4fdae2108357f72df4027504521cbe84ba28289a01927232820
|
|
| MD5 |
74efe818531f865f74bddf5a94f9c0a3
|
|
| BLAKE2b-256 |
5aad4b9e065e2a0d86ae16c3c26e56bce105b99c2dcc955d92dd7ab946db3757
|
File details
Details for the file pynw-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pynw-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 424.1 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 |
8d2d3ebbe068435eaf009c5cfa0bed33df84e0f723155b93dc0d3db0fce496c8
|
|
| MD5 |
25e3e11081959b417504dd687441cbb3
|
|
| BLAKE2b-256 |
cba3dd8fa333ae13f4d75b99fe454e5e3dae7502db7c7201f8bdcc39cc8ad091
|
File details
Details for the file pynw-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pynw-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 248.5 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 |
14fa66762aa8d2aba898ede86a805b2f373ab995ba9706e67e0512c0a7a563db
|
|
| MD5 |
1d66c50379c17c5111ccf5b9ce40ff86
|
|
| BLAKE2b-256 |
60dba54b0f457c9fb58934cb5a85d93f52179c307177b83b0f6e383d284dd847
|
File details
Details for the file pynw-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pynw-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 279.3 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 |
ba7a42216469d9a3f22b182177200ee3aac3f5d0070dd6408914acd92dfc7458
|
|
| MD5 |
06da52b6f6a900f5560ee66ca8eb5fcf
|
|
| BLAKE2b-256 |
a6e7053bbe1180e146b96541d10d20d958270bba27cac04fcd403952c3504f9d
|
File details
Details for the file pynw-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pynw-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 274.6 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 |
5c0fa432f9dca8967f15477ba0e5537e888811897411ab5fa632d45d330df963
|
|
| MD5 |
73f106818d3471aaa2849ac6012867b5
|
|
| BLAKE2b-256 |
92d6294b75f2d1e5592068c28d48af705c671e72a4d5599230304ab603d52000
|
File details
Details for the file pynw-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pynw-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 255.7 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 |
8bff20dcfca4a5e45533d548e5d45d10580d7c36ae35a190404dad4c33e08244
|
|
| MD5 |
11dc745d9cf9b79bfc981e9cf69d1b83
|
|
| BLAKE2b-256 |
e175b73bb509247e6fdf4958df63644d7435818d4954297477d68a42af9699bc
|
File details
Details for the file pynw-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pynw-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 246.9 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 |
d463edb9e8f791b0b78428e27aa4672a241901dc6918537b63f0ee17b3720796
|
|
| MD5 |
083414a0698ecdeb9efef247b36affce
|
|
| BLAKE2b-256 |
7a6bef56d0741952ebcadfcc81593b70fc9176a7626b6599c35dfa4f0c83a277
|
File details
Details for the file pynw-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: pynw-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 264.3 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 |
ea20d322f4506ff8159c737eb92e116b9576c4ea7d9f72f16d96e93700ac748a
|
|
| MD5 |
b4eca485811e5851c3b69d0bd7a85cb8
|
|
| BLAKE2b-256 |
f118e73e0d950b28a5e554d8ec1cb215195e7980f4f04c26741bd417305c7eaa
|
File details
Details for the file pynw-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pynw-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 224.4 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 |
8c661f706acb4df32070c19afd27002c96caeb4a3d26d11618eba273be4c62cb
|
|
| MD5 |
cd7a56eac89359929780bd4fc40141fa
|
|
| BLAKE2b-256 |
0bd58b99a4e6464f7ec530180f1c6c17b1e81479cfd473e10934c4ac74347426
|
File details
Details for the file pynw-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pynw-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 232.5 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2edd40ebc012697045b6d88d00a0491117fa3ad89e80e7f6f01b7d3004bb598d
|
|
| MD5 |
226cd00275cb744474bbad21c66da7ba
|
|
| BLAKE2b-256 |
d02ee63f7c1be608ae1de0350477e1df43ccec5c3e9352408e5da0f542ffd9dd
|
File details
Details for the file pynw-0.1.3-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pynw-0.1.3-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 131.4 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 |
45fcb43f1c9f5046f9e58696167bbf5e12285a98aea71737751fced6b9c46757
|
|
| MD5 |
16db04ecf65c78d131d3b371a22b078b
|
|
| BLAKE2b-256 |
8dfcce3b7d1e760e3dd83c6c2823abed7cf6b448356e641683cf3af8a9d257b7
|
File details
Details for the file pynw-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pynw-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 460.7 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 |
b8284d7bdab3e624487edc9a42b69103e55f37ba72fcad83ecf38d995b5e3ff2
|
|
| MD5 |
ae0aae8629208bdcd74a17fe57a79c44
|
|
| BLAKE2b-256 |
4831b5c4886aeda6ae0676489775f14aba474f6faac4226b313da8891d61ef1a
|
File details
Details for the file pynw-0.1.3-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: pynw-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 485.3 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 |
75063044a25f26ead3748b4b93d09fc246e9fa237b4933c36eb2fb200a76d674
|
|
| MD5 |
03d2b80d5a37e9d0e3623ed8be6fd16a
|
|
| BLAKE2b-256 |
b7357879bca5a5e02053fd4887ed411ff64f3eb8f06b2a46b8a57ef9c7b637f5
|
File details
Details for the file pynw-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pynw-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 531.4 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 |
255feaffa1856dd4797afd81693bebe740db8642cdcc9cbca04f4a19ac54515f
|
|
| MD5 |
4bbbb72a0ddd6474b7d4e73ae0bf27bb
|
|
| BLAKE2b-256 |
5c6d021cc6197055ed6af5b08e9d0212a3842417632d519eb1d4429e67b5b94e
|
File details
Details for the file pynw-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pynw-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 424.7 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 |
0f4e4116c2e3ef2f023cdf65b12b117ab41ae14210233c559a2b143df3480598
|
|
| MD5 |
9251675aea3cadabce9f99ccc5fc2dc9
|
|
| BLAKE2b-256 |
19f0e918f0e378836e07867eae84d78036cbbeaf7d172cfd317bbfb59dac61e2
|
File details
Details for the file pynw-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pynw-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 249.1 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 |
6b070de53f5d9282ea44e486589c78fd3d9cd73416972660693db94181bddf41
|
|
| MD5 |
76fe5b2220733560fda38901757d1fba
|
|
| BLAKE2b-256 |
eb894195359596ef21587add3f866e3397eccde2ffca1c954c249570972824ba
|
File details
Details for the file pynw-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pynw-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 279.0 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 |
3d6fccc1970d7fc2cfc4cb41ac780c209bce11c355706ec397a055370435d47f
|
|
| MD5 |
68e80c676702f2064a428e1c7cf7d9c5
|
|
| BLAKE2b-256 |
743a3ee337d8c6a544e8ac12e24547b947657a61b98042aa53b267fe0bff12d7
|
File details
Details for the file pynw-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pynw-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 275.2 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 |
1dd87ceebc081ce3ee40e0417a0086fc6e6ed5d15c4a67309b0d63d7e84a85df
|
|
| MD5 |
50a798b95dec9388bb8e7f4745afcd6f
|
|
| BLAKE2b-256 |
7e7b30dbfb5e6515336e9c4814c799d7146d6c349cdbd7e8ab4f28d457f23591
|
File details
Details for the file pynw-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pynw-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 255.3 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 |
e75758aa7ae09c07dc7dbb5e43aec22cbed56a3450fcfaba99d720a4c828ea68
|
|
| MD5 |
f22a76cfe9a81ba4e555c4a88cab68b5
|
|
| BLAKE2b-256 |
edce4d887e3e3fefef8451e04f2957871075c07b14ba14b2ae62e4d8dab049c6
|
File details
Details for the file pynw-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pynw-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 247.5 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 |
e79e0750e2a2c0a467d3823fd985f10d1637bb99fe7237897ef0d5763421e4cd
|
|
| MD5 |
45beadb22100ba359b55c524699f60b3
|
|
| BLAKE2b-256 |
d98b23e6cc930c72dd120e47b26e029d51b5f9d200ffccc2451fb4b46ffe9e79
|
File details
Details for the file pynw-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: pynw-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 264.6 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 |
ba59b1e8db65fdb35778062635ba8840b5821aa895839ceb89ea5e911dbdb16b
|
|
| MD5 |
66ee06e944dc660d5b14e6ac3cb7d7de
|
|
| BLAKE2b-256 |
9d9588032ffa54051d9dd955c8ada8ff1b5c6b61bcf0e0916ead32bbd3e993c5
|
File details
Details for the file pynw-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pynw-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 224.7 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 |
c686e0e51834044c5de0217e9df0b4d90a4895bc5181178a4db42b01e425388d
|
|
| MD5 |
91a8239e2075bfc7b6899a9f526a4ae5
|
|
| BLAKE2b-256 |
a3ea45e2ca04f8bdbeb396cbb55d5f82dc3984c217ad18442c2dd75924f21fdf
|
File details
Details for the file pynw-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pynw-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 233.1 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ceb83f801faec983b0e20a3bc7ce1b49ce7f4d07d0f74592dde0848815599da7
|
|
| MD5 |
7b06418721ff4e0d37e782a22e8c39b0
|
|
| BLAKE2b-256 |
e04a66c1816de7cd53dc0fbb0838df9b43b78e0b581ee79f198aebe6b3f68eda
|
File details
Details for the file pynw-0.1.3-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pynw-0.1.3-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 131.6 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 |
752e765736d22a8c2012d689dea9a37c863700188bc80516a7228e2ff6122c50
|
|
| MD5 |
fe0fad67ea608fc7d66f05fb79336236
|
|
| BLAKE2b-256 |
cc55b80999a1b2fa2a1133763f540ad52ef7554112ae44425465dfcf4eec2fbe
|
File details
Details for the file pynw-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pynw-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 460.9 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 |
66981c51e0682c73438087768dbd2d9252d9b92839a1eaa60283bd69b2731a04
|
|
| MD5 |
9246ca3ce854459492888d6dfde61e99
|
|
| BLAKE2b-256 |
a4df132079ed61e1d6527cd17dba2b5032c324e054fd02b4cf5a528400646e63
|
File details
Details for the file pynw-0.1.3-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: pynw-0.1.3-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 485.4 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 |
30817e61353f4ca6c9bc5af7858daa8709a45bd027a8dc360640e014ca011f9c
|
|
| MD5 |
a6a3bf8afa69c5e531da251a68eebe4d
|
|
| BLAKE2b-256 |
2b738b363045618f265e8282ebf3f901831d09972b9c6a4b010cd3a9b53dc4d2
|
File details
Details for the file pynw-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pynw-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 531.7 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 |
94c6d3565bd04792c70d7014ad10e987462006d3edbc657b30c600f7aef263b5
|
|
| MD5 |
ef5e5e5b90752f42f5498985a9b96792
|
|
| BLAKE2b-256 |
7eebdb216901d1dfa63e44d7f9d3e071233cfaf1c91aa3d590dd1bb01847e88b
|
File details
Details for the file pynw-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pynw-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 425.0 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 |
504b27f00e51f38bdd82067b6d924281d01304f977034a4b61273e216e7bacd4
|
|
| MD5 |
6020245bf5e262d6708ea6e6896075bd
|
|
| BLAKE2b-256 |
0b93e2a14d8b1216ca4920699e2042d5b466bb66436e0e678a292eb6e015e7e4
|
File details
Details for the file pynw-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pynw-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 249.2 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 |
49622aa749f619f8b084a965401f5d4d95ec897e23c875a2bb3e9f86fb0f2405
|
|
| MD5 |
0b8e791af753d2a3e3c5deff6b190d97
|
|
| BLAKE2b-256 |
44b632610ecc4663e9af3786fc11fc85e653498a41e213dacbd98a52639e74c7
|
File details
Details for the file pynw-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pynw-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 279.4 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 |
dd4ef4d5bef81d9a69c6d5296c786739d2160d6b06e392ee9c6460b0bbbc919d
|
|
| MD5 |
c543d6c1b279f39a915581b6857f5a25
|
|
| BLAKE2b-256 |
263670632312e5cf1d0a03e531893c0c144fdbb0e52248dc21cf22339b68f6dd
|
File details
Details for the file pynw-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pynw-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 275.5 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 |
4f3e92ca12aa22ebacff06fdbd73de3a2b40e57a728b2a5289aa82204e032dcb
|
|
| MD5 |
0f910fa65f8b45e983d63c70f70479ab
|
|
| BLAKE2b-256 |
d001989e5542d99a81e3e235e800c45317b5571a55838d74f95ee4b57977708c
|
File details
Details for the file pynw-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pynw-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 255.4 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 |
b5a7c707d361c43c0c40e040332fc95406c84cf90f555bc1294a82912b5aea64
|
|
| MD5 |
370916e65fa8ab682903b1d2382bec45
|
|
| BLAKE2b-256 |
f71b85d80fd720bae3b58016ab00632e511ad7d2bfe4e9938858ed63fca0fbba
|
File details
Details for the file pynw-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pynw-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 247.8 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 |
46b48104ee6f937472988a41acb94ff29d743f6de2c6637ee142399fdc536140
|
|
| MD5 |
941fb786334f707b9e1d7e8c93f9e494
|
|
| BLAKE2b-256 |
bb79c5d8519182da62090bb013afe2d44eea15d55ce0a81e1c005c24709e094e
|
File details
Details for the file pynw-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: pynw-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 264.8 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 |
b5e9e7d94ba897825206e8e06f111d96c87f15282350d1975f33b0c333ff1fc4
|
|
| MD5 |
d6e11df51e6a3beda846aaf86199dd5c
|
|
| BLAKE2b-256 |
49d4a9aa51a014f0c61838d622909515eeea3ac12c78dc974e56ecbce1cee553
|