Python bindings for a Rust implementation of arithmetic coding (encoder/decoder).
Project description
Arithmetipy
Python bindings for a Rust implementation of arithmetic coding.
This library provides streaming arithmetic encoder and decoder with 32-bit precision.
It’s built in Rust for speed, exposed to Python via PyO3 and [maturin]
Installation
pip install arithmetipy
Develop
pip install maturin
git clone https://github.com/khoda81/arithmetipy
cd arithmetipy
maturin develop
Usage
from arithmetipy import ArithmeticEncoder, ArithmeticDecoder
# Our "alphabet" is integers {0, 1, 2}
alphabet_size = 3
seq = [0, 1, 2, 1, 1, 0, 1, 2]
# --- Encode ---
encoder = ArithmeticEncoder()
for symbol in seq:
# here: (start, end, denominator)
encoder.encode(symbol, symbol + 1, alphabet_size)
encoded = encoder.read()
print("Encoded bytes:", encoded)
# --- Decode ---
decoder = ArithmeticDecoder(encoded)
# All symbols have uniform weight
weights = [1] * alphabet_size
out = [decoder.decode_next(weights) for _ in seq]
print("Decoded symbols:", out)
assert out == seq
Output:
Encoded bytes: b'3\xd4'
Decoded symbols: [0, 1, 2, 1, 1, 0, 1, 2]
API
ArithmeticEncoder
encode(start: int, end: int, denominator: int) -> NoneEncode a symbol interval.read() -> bytesGet the encoded byte stream and reset the internal buffer.
ArithmeticDecoder
__init__(data: bytes)Create a decoder from an encoded byte stream.decode_next(weights: List[int]) -> intDecode the next symbol given its weights (probability distribution).
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 arithmetipy-0.3.0.tar.gz.
File metadata
- Download URL: arithmetipy-0.3.0.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe08134b1cfb0b9e6b86d4982c2cd06a88dd56851f07e4eaea8f1d1f3fea9bc7
|
|
| MD5 |
9195851fb75f3b408a5ecf13b5bcb5c4
|
|
| BLAKE2b-256 |
bdeb7e9692bced9fe24b6815c3d09b4b492c9e1837d7de8d906dc282f7c49567
|
File details
Details for the file arithmetipy-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 432.9 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49674dcc06e366d7f970acd9e673383169b0c215e21a24a166220fb7e44cdb17
|
|
| MD5 |
98e22f76f71d35f12e1f08c2179fc9e5
|
|
| BLAKE2b-256 |
35f99d545d263221d1b6d3ecf98f29e95664fb2047fb6eee01d5fd8237096939
|
File details
Details for the file arithmetipy-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 462.8 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f497cd103907ad20587cd5d71dcf1fb813b8f8ea2e451565bc5c99c31b019e90
|
|
| MD5 |
3cccae44fa01e2290725968f77630362
|
|
| BLAKE2b-256 |
6966623529e8bb6347851d402372117622977aac515f6128b6145b54734216d7
|
File details
Details for the file arithmetipy-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 534.9 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3afe47cb2f044f04bdf374e5aabcfe4eb757d9d751a2ec1980cfc33b250531b7
|
|
| MD5 |
11e135573bd4f3eaf683333fcd30af2e
|
|
| BLAKE2b-256 |
ce4cd4cc6088dbea56765a7e6069460ad86c797adfde6e1511ccdff0c0f1dff6
|
File details
Details for the file arithmetipy-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 441.4 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c1043634d5e198ca4a556813185d41ef556109e1811c72777a685e2f687fc2a
|
|
| MD5 |
c2144bef3af97ae5277078e9383637bc
|
|
| BLAKE2b-256 |
c3b59e48c357b65ee57c5689f9217e399becabe9f29d90636a92347b6f84e3de
|
File details
Details for the file arithmetipy-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 268.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b92be389adfe177ada1d772346a1287d5fcf4b2ce114677691641b7638dbc85f
|
|
| MD5 |
675616ed0995830d1a901c9d8909029c
|
|
| BLAKE2b-256 |
62e9309f93281e05e02e48e32463dbcfa15b1d3430f3f7b0542894c618468ff8
|
File details
Details for the file arithmetipy-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 289.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e20406f8ef7368e1100870a399a154c8d53207b772a6d85b6d63d8b77aed020
|
|
| MD5 |
a71849c238ba88336a5b9fa54d0e49c4
|
|
| BLAKE2b-256 |
2d6a45277b96ed5342057dd996242bb0af17c7e03a0d5406d5c2f1f989d690ed
|
File details
Details for the file arithmetipy-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 395.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe9b0a44140d4dbcfa8d7c3e475cfd01347680d5e0730da7687cac33522b6a62
|
|
| MD5 |
4a5f5158ba6f48d9bc618547918e4328
|
|
| BLAKE2b-256 |
e88304f5a287b8ce2de4ada169c2e21d24ebd4144878e79206af2ed40e4cf157
|
File details
Details for the file arithmetipy-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 270.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee21aed7bd6dbf9b2f3d8ff212cb2f6d462af3ed003ef687f8d20e293142f10c
|
|
| MD5 |
4cb822abffc1312f35da301b45a79e3f
|
|
| BLAKE2b-256 |
2edbfe7e8985045d76bc06fd72bb0e886247a6ce1265c453d9445fbd5b3c8209
|
File details
Details for the file arithmetipy-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 261.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66a40b721a79d03b10c44dfa66005bd527fa0826872aebf15e5a813ecc764479
|
|
| MD5 |
162828be82c9702281186a74961e4943
|
|
| BLAKE2b-256 |
5531159c43e508f728d943e005dd6c2253f75ad5bbb4aabddf2e4baf014d486a
|
File details
Details for the file arithmetipy-0.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 283.1 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2f3a858376995f86eeeae48e2d31402f83ea2904ae856beefc5c3d717e3d382
|
|
| MD5 |
ecce188c669a5add825353d1b9e73a04
|
|
| BLAKE2b-256 |
2d3c99e098e647aebf54495e885ad04f39597493226c8b539ed87797f6c12e30
|
File details
Details for the file arithmetipy-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 434.5 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
623f1ca9d451bda335965b9fde36f99a33dc1b7668d7c88b75c1875e1892e8ba
|
|
| MD5 |
f168fa74a67321e1f816acba88e18385
|
|
| BLAKE2b-256 |
65b5348fa4e82021c800a74f714469399c74da1cb55eb4d71d26483f5590222a
|
File details
Details for the file arithmetipy-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 464.3 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28a9ca58b32119ca4bfea3403248b4a500738496c6eef8c2a4710d30f8cb6176
|
|
| MD5 |
61224de632a0e7d3c883c9d024a7ffcf
|
|
| BLAKE2b-256 |
5cf5a8b9750b36afb19a9312262a8d306fa43e73b9530324672abeb074a4f065
|
File details
Details for the file arithmetipy-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 536.2 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85f31961f3e373dbde28a5490bb18cd10b6b9b6b1012da12b99cc722a615596f
|
|
| MD5 |
708355d66de46af2fffabb9c5cded76f
|
|
| BLAKE2b-256 |
e26d360d887bb69f5fc6e88cd017c474e4ecbf68535ee635fa03bde21446dc66
|
File details
Details for the file arithmetipy-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 443.1 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a31bdb1c182089edae44a3e5b45724658d6474f4c7eaea9c81f303b24bb023c2
|
|
| MD5 |
e30ffb96fbcec717671fc5fa941f6dd1
|
|
| BLAKE2b-256 |
1f88982d1828e1a6f7b5044be5015960e85f543bc65cc9c5d521177f1e33e3b9
|
File details
Details for the file arithmetipy-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 291.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
879c81488d6d59396ac2355cbbcc06be6de75d4cf00122fe7534d6be20793ea6
|
|
| MD5 |
1e3183fd672c38aa809f382f84f11571
|
|
| BLAKE2b-256 |
ee52f6619884ec8a556f9413b870add8e4994459fba211a4c7a6641713a68f13
|
File details
Details for the file arithmetipy-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 397.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
becf27c0402ca6752baa7d826a35c664b3cf531207c51b5a67808931f3d0c78a
|
|
| MD5 |
c3b89ba1103dafe21bc75ef158659607
|
|
| BLAKE2b-256 |
a60294c1315a4a2d17e42654dd97b3601ad0cf7a4e9c3e97daa7c26e5554458f
|
File details
Details for the file arithmetipy-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 272.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7e39304bb4be20534110f983bfba90ee8ffc4e88dcd3f190d289f352ef8aa9b
|
|
| MD5 |
7e6b105296f4027afce620f7aa882ccf
|
|
| BLAKE2b-256 |
e8fa1542e873158f0819b785a3f8eea22a627c1e104af561cd5f8395a1a853dc
|
File details
Details for the file arithmetipy-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 263.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
924da4d563d4d24dd55d64186328698fa03debe8a1c2c9f3d8394f36da4dd890
|
|
| MD5 |
21989884ccd70c1a1d426912dbb04fd9
|
|
| BLAKE2b-256 |
672549395c3df78dd95a4d3f835985d424dc7fe01e70a185ce40adac95b28797
|
File details
Details for the file arithmetipy-0.3.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 434.5 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84bcbd7c8e8322e17a5bd6af9fab87932b0220d439369890e81c30009223578c
|
|
| MD5 |
d438d7175aacb870839a94020ec625e0
|
|
| BLAKE2b-256 |
595506f032b0dee42607c059119db2d2cf14b1eb6de86fa062786a9167b5d433
|
File details
Details for the file arithmetipy-0.3.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 464.6 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4cc5eea48c7c2a5a34f7af0a3658604055f97c7457027f5810428a29ef4f42d1
|
|
| MD5 |
dfc825315a7b974c2108893d09d41938
|
|
| BLAKE2b-256 |
32fcef273422fd237f83e9b9e996a0d29da7b507f0d704eac01ccabc25fc381c
|
File details
Details for the file arithmetipy-0.3.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 536.1 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6dc63e7cbad217c01a5134af3e80c33f15f87cf79fff58911b19e8c937dde591
|
|
| MD5 |
3e7a81aa65d23009f04167a3750598f6
|
|
| BLAKE2b-256 |
1b96b39d3765ea110dab07bd76cef146f152f4635888e5c5d8be1ca6866f1d5a
|
File details
Details for the file arithmetipy-0.3.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 443.5 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
029109abbd9bf181d756066e2af9f5ff5042f0657bb605d8d7335493f7d45a04
|
|
| MD5 |
a906facfa1845fa00c4b503062c69c1d
|
|
| BLAKE2b-256 |
04e0501a80aea06f8e42cb72342f2e9370775bd2115944db1f3c60839dbf38a6
|
File details
Details for the file arithmetipy-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 291.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c92a64185867d98d84093821bcb425b9253e1091305318f8c803c6ec2f0fe51b
|
|
| MD5 |
527755995a041fcfe88651513b91f417
|
|
| BLAKE2b-256 |
ece6aed463d9895f092d71a5939512fd0b881242fdf8bfdf23cf01685b714c86
|
File details
Details for the file arithmetipy-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 399.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d1fb2469b8b52bfd4cdf25c2ada405c96a470be76011cf61a6c44573a00e913
|
|
| MD5 |
394c1478a3d5d22452107e391b2a242c
|
|
| BLAKE2b-256 |
257de908f9747f380dd89ece674422016b7c37d67ea6e73d1a5cbc6428093feb
|
File details
Details for the file arithmetipy-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 271.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d6fbbc3f0cbb5f70a47588d8bc392a54327fb05d0156395973e6b3a9ec6c9d3
|
|
| MD5 |
d2c6e578e65a2dceca37ce7c8b1cb9bc
|
|
| BLAKE2b-256 |
c6b153323dd752d2dd6aa541b802fbce092ffe162956f97d48f230c6c1baa162
|
File details
Details for the file arithmetipy-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 263.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b067199e6a74b492aa17d7f7ad2150d421f7f7ad36166fbd65a161f5a16b397a
|
|
| MD5 |
356779e0293665e5735b5c48509ea502
|
|
| BLAKE2b-256 |
a790f23cd321534bf5935e5653576719efdd44f6ccd41dc6015b10f94e8a2623
|
File details
Details for the file arithmetipy-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 267.7 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85df28fc39eed3cc6e6603b93b749a762d859b25da70b1b9d3bf64e711a67696
|
|
| MD5 |
2b82f82d826248dc9d18803566b937e9
|
|
| BLAKE2b-256 |
e64c1c7a464bcb6a9e197632fc1983b4708820666fd4dc8e75656f3dc737209a
|
File details
Details for the file arithmetipy-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 282.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4fb1e0ed8d8551fdd7261fb5e4aaeef013f5bfdb7b63b0dd77662d33032c4c7
|
|
| MD5 |
b6340c824e8b4838f3f3de9470a5c1f1
|
|
| BLAKE2b-256 |
d45233f376e497a564a2b81002a6689a9f45baf2655011fe9ccc4b33ab943b90
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 432.0 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2863f7b28989e1a485deae345d5bb3c2a58904a771a2f8330818cc8261d3fb0a
|
|
| MD5 |
9b901a6051b354a892bb6b9388ac8ded
|
|
| BLAKE2b-256 |
2f7ad7e4d8ad8a65a8636b00de5ce2e73b807a8d8d5c6e279052e001b37d3461
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 461.9 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a39038ddda6b3bd369bcc337a67c087f9230da4dd79bf35357968222efa1d9cf
|
|
| MD5 |
f72bd6ddbea2404425b789e93acac994
|
|
| BLAKE2b-256 |
b2f272fae75d097f8da8e45cbf29409f099d8efd42021fbc1aeb0650579ddbaf
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 535.2 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92eaaa4f23561047a0e243bbf307890a4197f68e62059fb32268c6a25cdf9602
|
|
| MD5 |
98d85d6afeeb59f2e90e8e2f9aae7edc
|
|
| BLAKE2b-256 |
f78310658d01c5a97103312e49e68744a28700d4c767bd5087cd033d52ab25c5
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 441.1 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd3dbbee95bdf5633ce7e39e0e0ecf9eba9a8e95a97a81509020bd72c485b56e
|
|
| MD5 |
ef51e45ab84b6ea08f4d2ca6a42e0c5f
|
|
| BLAKE2b-256 |
218547bdb925ff9cc51b84b59f9814590d9fd8f552b5bec97274affd77919e71
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 289.3 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27e6db0726e86d7d92beff7d21634fe7b7ccaf597f25447822e8ebaccff53a18
|
|
| MD5 |
19a8fbf1db238c6802af88b967f54793
|
|
| BLAKE2b-256 |
32ed43d559a56116083866634ccc8b94380506313c1d3a90dc2370e6a939babd
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 396.3 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b555ba14408ef7e6c41bafd7068aff82e79adffef6db277e5867e5ef64be3ad0
|
|
| MD5 |
d3f4b2a9026287e337014739d59ff2c4
|
|
| BLAKE2b-256 |
d0ebc4070ae54e22fac1305f91abd0cbe7d0f06ef2875a9b893fbcd3382b05ac
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 271.2 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
215a0706304d700686f29446005b8bbcac67abac26205faeaf257853fd586821
|
|
| MD5 |
0c6a0af58f9aa4b36f0556f6d8a910b1
|
|
| BLAKE2b-256 |
ff3ebcc788b662339631cf0317cfaab41bc3ae557512e1c2beee230783c2773b
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 261.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9d2895bdeb8b64f1d37a1b6b8c3b5ed11178eaf1a4fb88541a8c49251b7896c
|
|
| MD5 |
d35dd5d8bb2e07eb23c78054b3cad910
|
|
| BLAKE2b-256 |
c6b21fece16fff032d769b436afd89293a5e0cdf05c2b88266d5003a33fc4c77
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 126.4 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6dda09b4afeb189496d410d0e8517312bd685de903f3d787479403c81a85637
|
|
| MD5 |
07ba338ae2e6d0178e0e419e450d24b7
|
|
| BLAKE2b-256 |
355cfd6ca68d4d0dadb11a6563eb282374fbce671f61cdcb8f7d5797abb123eb
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313-win32.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313-win32.whl
- Upload date:
- Size: 120.8 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7df47af5df2aed44d375162ea793fa352c3864bf6044c54e535bb7bf3140c8a
|
|
| MD5 |
3b0bf6de1aba7ce56f67a074f3a68ddd
|
|
| BLAKE2b-256 |
b4b436da35c7b86d8551bf3ec40efc6f3c7360adf7d93dcbcc42143c4620fc13
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 432.4 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcd8b4be6349ed34fe2885a613de13fc80d61461058f9f04aa1a635af238256c
|
|
| MD5 |
ccddee90974086a28cd768cc82f91bb7
|
|
| BLAKE2b-256 |
e43bb1dbc65a1df95744ee76b5065f98b50e3674e33b4c39a5f921648faa0ec8
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 462.5 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54fa4cd17f06e29adb2125d6cdcf35d8c38cf358ee1dd0147c685b7d64855917
|
|
| MD5 |
3ea8c49dc655dc259d39b42bae2b6a0c
|
|
| BLAKE2b-256 |
8e3c5b444fd93ef44329ffd3fbbedfa6df8f6479b17aec0737815a47e7850b40
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 534.8 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21e7e85413910e23bc7c0b8eddb2ebf956bc2befee0eb045d8a36d6e41f1c28f
|
|
| MD5 |
9f5777f4597b79eacedf97c6118f8cd6
|
|
| BLAKE2b-256 |
55b4cbc938a4191baf6eafd3c9951d3b2bcfb94ffebdf2412c569a8d155eba11
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 441.4 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55822b23d397c3e7674c920a2aad0e167d2e8a78756a9bb190e56878e98beaad
|
|
| MD5 |
5c4d169474c730fadeb1ae92c1d2cb66
|
|
| BLAKE2b-256 |
0fe3a41c365803391b73d68992e216beaac7a7dc419c4b0c8069e2f422e59095
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 267.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba1b035b8acb680013bba49011e17af4d216b889b9728ee3e587696fcb8de372
|
|
| MD5 |
4eddfed29575a073ba34179d1614a8d8
|
|
| BLAKE2b-256 |
65a891671349fa44d4c6bb728bc609f4fec7a95aa5e0706572dc7721f76eb8ec
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 290.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd9da102cd2fcc7dd6231e78c88f4741ecc74559bfa5f337dabe96a5507c1e12
|
|
| MD5 |
97d77dcc08e6f86c927532b1055270d7
|
|
| BLAKE2b-256 |
e4a128026ccb66aa74eaa17058bc65eabe5a0b644baad898338264cc3c4d9cf7
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 397.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8da72a13f3adbb035652f15aefc81d3c6ff179308a200468e99dbf7db9cd52b2
|
|
| MD5 |
bc32b566d3c096fdaa3aa8020885c25f
|
|
| BLAKE2b-256 |
b634fc19610e089e435eec833434047cf8ef959b714908f1da709a4764680e72
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 271.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7fa84d11f4b749051c5b3ecf49170abac1899189875148c112769d9a3cb104e
|
|
| MD5 |
06b158347b63bffee7ca21e3bafc8860
|
|
| BLAKE2b-256 |
5f750cf549fa01d2547e5313d8577bdb3dc053560c866436682561c1f862734d
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 261.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
260fa17243371600667592673555f0eda199c22f38f10d4e4c7abbd993586c99
|
|
| MD5 |
7501108afd11c14f40f3c0753bca7dc0
|
|
| BLAKE2b-256 |
564d8c4b6e0c5fab2c6d64b6321140508f4fd4383fd3d5a8a53771b09b5dd1fc
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 282.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c665fc1636279bb960689129851dd0cd86332d1fb0d74a439f766c41d4115fe
|
|
| MD5 |
4ec354ebee1202c7bba8a13943ce1971
|
|
| BLAKE2b-256 |
1df6d0e35782684dc10a7d72c019f3ff1d05c5861cc32f8a5265a29aa029b764
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 227.2 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c397c0a089c5d70b681b96f9aca245d8e660d8f1ba73f8f4278e71d8e5fd3dd4
|
|
| MD5 |
cd9c2acef30de3133225a203f8b6e999
|
|
| BLAKE2b-256 |
4cf9213035fcf4c8b231e1461faf2fdd24a3c92ce28ca1372aeddca68278e470
|
File details
Details for the file arithmetipy-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 234.3 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08a99a5f3d844f9109ceadb33a9d6e550ebede75a1e2a63fe0b5959921edc357
|
|
| MD5 |
b3c6d9eb90f78cd7dc89e762f6ba855b
|
|
| BLAKE2b-256 |
d6da0a31c3f732ba46042566084b8ad7995b7319bba393921e90300ae21bf35e
|
File details
Details for the file arithmetipy-0.3.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 125.8 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78f8b4b3360a602dcc78c9541bae1f207a213c6071d792dda76317b88b2f89e2
|
|
| MD5 |
b9d465eaad1d41117e0e867e0face9fb
|
|
| BLAKE2b-256 |
95ba6ec498c5ed15aa0d5e86c72055132c896b2f4c0865cbd13fcb30a7ccf18c
|
File details
Details for the file arithmetipy-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 432.3 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc580c8a7391d98a0c5a1dfb1445c4735a995e2358b9615407a26628d97d580c
|
|
| MD5 |
f8770a7560e42d80e59327c79210e676
|
|
| BLAKE2b-256 |
ef2ef30c0c8c991d8e3787320ebf0ea28872599917cec5bccf339e2a0a1e88b2
|
File details
Details for the file arithmetipy-0.3.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 462.2 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc84a1fc5cb1696adf16c5bfc3d5aea2a418e7f7828e635b1e17555ad1fe1f5c
|
|
| MD5 |
ac9fefaff49400f5cb273d723bf2f68f
|
|
| BLAKE2b-256 |
6ecbb7bf7f5167188bf657f3afade116457f092f5ff7a582d86746796c0a94e1
|
File details
Details for the file arithmetipy-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 534.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
036bc636ab43ecbd38b71e5cfb5a7bef29f0b954a8b79da56e2fa33fed9923a3
|
|
| MD5 |
21546a80a0f040a56cb5b4f8ffbbf5fd
|
|
| BLAKE2b-256 |
d64590e0990483a22b742cffda4e0978dcb5a7f568a77807c4e999ba1ec491bd
|
File details
Details for the file arithmetipy-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 441.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
612d7d80fe368ef9979e3c00c5a3270eda97c84d866b0bfe576415b553f545a9
|
|
| MD5 |
a9bcfa67da0142e6357fc1635862f5e5
|
|
| BLAKE2b-256 |
1bdf36341d83f6816312ad870658c9c6580b2563f7318a7f611031b5acdabbb8
|
File details
Details for the file arithmetipy-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 268.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de64b5853ad80c3658cb7c6711eef13385669cce0c3d4695499981d81ce612ae
|
|
| MD5 |
ee7092fd616f2c30dfc60bd153e4f88a
|
|
| BLAKE2b-256 |
8a8b091f0bf1f04e1a7474d79fb225269078c8b279bb44c69067dc646ac57243
|
File details
Details for the file arithmetipy-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 289.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3190430f0bbd718e065f7052c3fca55c9435a9e0b949f45ff9470953f9d1dde
|
|
| MD5 |
924033a7615e223eadeff0cda500b960
|
|
| BLAKE2b-256 |
456f2eb136fbcaf34440c08d98ebb1bcc25ffa5947d0d89eded1de58e5ccd44c
|
File details
Details for the file arithmetipy-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 395.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bcdfaf31b346f8a8d4b7fcd81e30262aff68a422f5f85344bc9431399e58f1a6
|
|
| MD5 |
6c3a40e93a090063823bef129c939a92
|
|
| BLAKE2b-256 |
b282ea6fadb686138a146b252b9253729ddbabe91e0f8b1a4cf2919c4a6382df
|
File details
Details for the file arithmetipy-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 270.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24c309a8d6a1e3e235c3ad093b02da7168de85d478017bf41b3cb1ee37e0420f
|
|
| MD5 |
addbfa1fb467a2502916bf3e38c888c8
|
|
| BLAKE2b-256 |
7c771f595bc41ee6f118c715355f5c42342655bd30f6f2932220e64e375d4708
|
File details
Details for the file arithmetipy-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 261.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
016d1511bdcd0040a71b1ecec8a4489df95da32411706fb22ae2b05059f0a232
|
|
| MD5 |
773d0679ee7376a627b000b9b773d0be
|
|
| BLAKE2b-256 |
057699399e6ca3ee90635fb917b2addcdc10cf251d5b4c2af7114cd7aee8e3e8
|
File details
Details for the file arithmetipy-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 282.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cffeb31019b4654827c7d0f097b5c75453470789add9b388bb2dd95bd006dd5e
|
|
| MD5 |
219a7357cf259199cb76da56fd0f0b52
|
|
| BLAKE2b-256 |
dd04e84f5e518edf4728c242af483440582457d0e03cf09a39c82ad9652291d5
|
File details
Details for the file arithmetipy-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 227.0 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac36af203ae7deecbfee1832aea607cf90738eeaf8c9fbd5f14cfdbfa5e117e4
|
|
| MD5 |
7a0f60078c6abcd87843bfefb1ad8a42
|
|
| BLAKE2b-256 |
978d724843cb53f2cff39a26d12b04bdce1ceccdc0888c06f7805ac4a5630dcb
|
File details
Details for the file arithmetipy-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 233.8 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1c4aee25254d29827dad77624d1ad4fd3ae140d1e56cd675a826e2f806c0d6a
|
|
| MD5 |
29b738eb2e2ff5e0dd1d1ffdb88fffcd
|
|
| BLAKE2b-256 |
156f5d17db9deb6f7ad675a2dc7bf24dc2792c0d5e326fc49bb4ec7dfbdc57d2
|
File details
Details for the file arithmetipy-0.3.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 125.5 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2757b7c341b120ea9d493751cfa847d456317d1c7aaf787c8ce91690d881aa53
|
|
| MD5 |
ddeb4ace4b0c004f8f04c2bc25260348
|
|
| BLAKE2b-256 |
f0e47669b40791217e38f614517c2aa9d5c5e593e64e90010ad00cf7255dacb5
|
File details
Details for the file arithmetipy-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 432.8 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29eea9016af69882ca2e6fe1159501e1629631a00da48f36d9a68332ec555816
|
|
| MD5 |
5a39cd5a21d4403cf402489d9adf5eb0
|
|
| BLAKE2b-256 |
fe18a1f051e36803d037aa146d8c503f40386f355520e47d2693e7167ffbb805
|
File details
Details for the file arithmetipy-0.3.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 462.7 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7846d57c2f2c91c09dd6c16ddf39106fad5784564033da7fcfc7d40f8a19380c
|
|
| MD5 |
2e3009f26f8e54d57e9b122b9e67e328
|
|
| BLAKE2b-256 |
3d74b2c3615454665dcbc7eef667118b26731717767da740ba7bea31ab668b1c
|
File details
Details for the file arithmetipy-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 534.9 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e364227b13593cd971e3ec1aefcd497e4f24a4057b7276021867d9989f3625da
|
|
| MD5 |
bd273659c7029a9f19ad51e6532c0ca2
|
|
| BLAKE2b-256 |
5c7b888f02f402cf6e63866751a3fe904da670549a7afa9ee80a2bdde0ebb9c2
|
File details
Details for the file arithmetipy-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 441.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b00e328470a2a26409abe3b8905334d368f5fe31cb42cd549704faae2f4bedd
|
|
| MD5 |
1e3a01a748313ba0f57b5c9c669b21ba
|
|
| BLAKE2b-256 |
fa5589d9aaabae86ce7f6831379bed009781c2747691455282c2058ea0f17c82
|
File details
Details for the file arithmetipy-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 268.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0690075f6d9ac112302e0a73dfaf1d3048d3f4274ced6288aae4847314782cc
|
|
| MD5 |
b9208656dabe5520c7e6b48e71adb115
|
|
| BLAKE2b-256 |
2277486072492374973be40244eda128a9196ef911447249104853329ef6b0c4
|
File details
Details for the file arithmetipy-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 289.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
880b6c7d082d4b891b848327fda24c8629f5095edfd45a009777930890cf318c
|
|
| MD5 |
2332023a6d999fa23c91048c3c52a38b
|
|
| BLAKE2b-256 |
b357942edd80a50466375deabf974e252ff34ed71587e173953a74d87697b1ce
|
File details
Details for the file arithmetipy-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 398.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db7bdad7158da54ae1a0e703894899411214289f75e8cf8d723c97676410967b
|
|
| MD5 |
81b7adbecb8ca566a800e355ace2ad20
|
|
| BLAKE2b-256 |
58d4e0ca75eaa2d958e228b25d61ee31c81fa4cfd8b0cd0811093f0b6c140cb1
|
File details
Details for the file arithmetipy-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 270.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5471923c153fcb6f1f2a621c8bfbfd399c94660d24ae423e579591022f125be
|
|
| MD5 |
94777e859cc7f5988535e6b54ac040a0
|
|
| BLAKE2b-256 |
fb46a1badafc6cb5ef59abd2e387f1c369c191f3dfc980b1a5f630e4b7f90f55
|
File details
Details for the file arithmetipy-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 261.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a87232ccd0418f4563be886f59e89f1f7d6d93b9bbdcde6b79a386033fec0a1e
|
|
| MD5 |
dbf3b10135ffeaf8aad68f7c1a291576
|
|
| BLAKE2b-256 |
76fb59f2079a885b34e1bcea36ac0a6dca6971ef7655a40549876536f5666604
|
File details
Details for the file arithmetipy-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 282.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
771f029bb414135a141bc1096689a791054f4e95670ed5d4d716c07568930b30
|
|
| MD5 |
c64db4e283c2f0f1d57c8dae7e4eb991
|
|
| BLAKE2b-256 |
70eb232532a7ff5d0718ab9c6f506a4de7894b73b1fddbf6d26bac51db4d1552
|
File details
Details for the file arithmetipy-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 228.8 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95cb104f53656916d0aa26e73c94b18604f23eeaf5675b9737f3c065bc5478f9
|
|
| MD5 |
94d648809436b5ebf6ada86605a4a6e6
|
|
| BLAKE2b-256 |
2209f6f2fb51484b10e3d19ae8df282d46a945bba3791b43f022f8a479640ca3
|
File details
Details for the file arithmetipy-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 236.8 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e75a24857da2aa97c4b8792b924896a4defda5a7e523e362723c223f92132389
|
|
| MD5 |
33da9c184dfbac8bf79773ce92671486
|
|
| BLAKE2b-256 |
52c36345793500840022e0f8ab0e8642dd8e949cae057f86e6b6b3984caa333b
|
File details
Details for the file arithmetipy-0.3.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 125.6 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b86e54ff52ef6a868eae5cd4a8c9f33794653a63b73d64a90c5c84721196019
|
|
| MD5 |
378a1d5248260aa196073ec5300a1a3a
|
|
| BLAKE2b-256 |
47643e97b85abd6a3c5eb374025d33475aeea2e70d783a0f7716f865f4550567
|
File details
Details for the file arithmetipy-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 433.0 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95d1f54d4c8a22f8d555bb3c9d061a1d2c7739997ba0bbc439393e1106193f75
|
|
| MD5 |
da2e80cb695ce99fce47bc2154e515e0
|
|
| BLAKE2b-256 |
996f2d2a6215c2e58576158c19814fc0ab085b6bef386000048ec67556d3fad6
|
File details
Details for the file arithmetipy-0.3.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 462.9 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53b3d5f47df3200623b223e1f897764a2d83baa0b7da8bcee6d7e7357070f54a
|
|
| MD5 |
35360bbfb138fa972a6ab7d365218af1
|
|
| BLAKE2b-256 |
cdab785360065d811b03cabaf79a5457d43c8be4dc15ae651f419f41bc2b39fe
|
File details
Details for the file arithmetipy-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 534.9 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5eb439d1bd7a5febf9ed3fe5da1d85ffbfe6b17d249e090f42fddf0486ab662a
|
|
| MD5 |
9740fa15de20845fe9a5a86f69dee0e2
|
|
| BLAKE2b-256 |
f1e74c7d4d929b99f854142b7cee21b61da24f31a4aac72bb5eb109676fab3b3
|
File details
Details for the file arithmetipy-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 441.7 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
139eb264b5d27ae333e3b9dd2bf0133798e7b25d73f916297b55bc615427b6f7
|
|
| MD5 |
0fe5148aef013b2013a98d02a74d2d8f
|
|
| BLAKE2b-256 |
ae04d679779a63d6854dad5bf0f7d2504766a6f6fa7e2a21cc0451ef52387d7e
|
File details
Details for the file arithmetipy-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 268.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df1ee54c003412bdb73795f020782b6238c921ff653899695512225cd1eadc19
|
|
| MD5 |
96b4fbfb62e55f3b26405cd743b909fe
|
|
| BLAKE2b-256 |
0d60a07f54113796a7305cb0055697bb119202d95fba76717ff3caf7f0aec7c1
|
File details
Details for the file arithmetipy-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 289.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dbf7aebcdd5665bc87d2cc3f4f120945cd2af591dfce2c27463bd50cba314810
|
|
| MD5 |
326c7fe9167a7abf0caa204e73bc93eb
|
|
| BLAKE2b-256 |
0aa5f6eb1231eb5b57ba3e1f81dab9cd8ee4687d8a5a3e5ee4629b031c82d3ee
|
File details
Details for the file arithmetipy-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 398.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2a5ee1a527e22efbad00688c87e1af43b79a6ae8dfdef614dd8010224e0936a
|
|
| MD5 |
4e11fc477b88e0e594fbf241b2e974c4
|
|
| BLAKE2b-256 |
fb9be3334d43002a38d14b17b9d8aee8210e97274a4c46b98912ce8d8b538d92
|
File details
Details for the file arithmetipy-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 270.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a3df8baa120e562a3a3444c590d5669a52c13bd347450bd243ac1126cde79db
|
|
| MD5 |
ee1db39da0c68c8f88f273dfe30c7b14
|
|
| BLAKE2b-256 |
af51d73d32f20f800cc4c9ebdaa2bce97bd38e1e01b33f8d8c0993bba24576c4
|
File details
Details for the file arithmetipy-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 261.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a733b2d68fb4c90bed4c5d86df05ba4d1b54ca49a1eaa7b7f74855cb803741fc
|
|
| MD5 |
8604d15edc1c6749ed8dd3915285ce54
|
|
| BLAKE2b-256 |
6b06ad5638175426c93bee48e7f0270a3343ba3b209530e7251b2500e3d1c829
|
File details
Details for the file arithmetipy-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 283.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d8b0926b4f99b6584af5c70c591158a479f53f143c1cfb6d1241f73d72ffc89
|
|
| MD5 |
76c2be6f4a52fe212a9537c5e5be38ee
|
|
| BLAKE2b-256 |
4ee75dbac513a5392a2ceab6ac15f8c9e488bbc42e3e51bc1b896b319b81453e
|
File details
Details for the file arithmetipy-0.3.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 127.5 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0dff35fbd9c7a0962bfdd66f4bda58a84f88c2434d4192d1c10819d65d1f041
|
|
| MD5 |
c6d0514aea348b528abf8dbcdb51df4d
|
|
| BLAKE2b-256 |
70528c42c581697d482d0029ac4f698e9694d6d98fdf80a328c4151595cdd894
|
File details
Details for the file arithmetipy-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 434.9 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c97a1c31896658a0f4d274dad8110baf154bbd3629f519f525c47c934f5b5e66
|
|
| MD5 |
4f4de9a484f562fcc79846a29a249532
|
|
| BLAKE2b-256 |
0e906f5538f1cf09e6b225148c3882ae8f861df3dde6d6fb3584d36a4f737ec0
|
File details
Details for the file arithmetipy-0.3.0-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 464.6 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5932bc1e47f72eec9211ce0a090ce20a977a9c6cd2bb8cb6a1d94cc43481c944
|
|
| MD5 |
dc39172ea873af9281d0d5099bc4ae84
|
|
| BLAKE2b-256 |
d9909c09521fe49d03d6dd5a29fd27c0ffb3a0d03d503707c17487215676ef9e
|
File details
Details for the file arithmetipy-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 536.4 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc5f2e45e8ae5f9a44bcf2c595bfd3f9346d46f570b412c40b6fb28415252eff
|
|
| MD5 |
5ce50e864301dd5b28a8d683c0c74829
|
|
| BLAKE2b-256 |
9928c56c988784be3a9f7410d63af67ea346fbacd2a46abf4f248aac31fc8b0a
|
File details
Details for the file arithmetipy-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 443.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f9a86ed39e766159ac6ead4e571af1a84d264f570188e4c7a2e76bc0906a5ad
|
|
| MD5 |
7297ec83d3cfaa39e87b4abf26bdf11e
|
|
| BLAKE2b-256 |
9b0bf97c4387e46808e986134e404da56201154503c85966fea3e89941c1500a
|
File details
Details for the file arithmetipy-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 270.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf23008cf49a197e15993056e09972abc1070d6598a26916fe278a62ecd13746
|
|
| MD5 |
a73f9249355de60c539973553c9bea7d
|
|
| BLAKE2b-256 |
15d95f5e327cc6226458ac6122e3c750f1abc512df41d4344c5db0d1af4088bd
|
File details
Details for the file arithmetipy-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 291.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f48396fa171ed2b8bac863b426390006770736b5f4563742cfc75fb7a69ae41
|
|
| MD5 |
c71103a57fe7a2b0de44c46057af8b51
|
|
| BLAKE2b-256 |
5d6bb1619f0d9c814ccc16c5b99067a9b4de2d92f1efa770c32a6da6c01c724d
|
File details
Details for the file arithmetipy-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 400.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41891c7b38516d3dd5275615f6831b4213de91c8c83970ca53c788cd865a2684
|
|
| MD5 |
e88e465f30ef53e5136bfd0301ee53cf
|
|
| BLAKE2b-256 |
f2377a9049e7669686ebfceed5fed9081a85eac299087e804d2e328b25abbe95
|
File details
Details for the file arithmetipy-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 272.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bfe9ec3d2e3d577b842fbea977ffb5685d4e67d409ee297e1796eda205436253
|
|
| MD5 |
3a6df0ecc3dcbe283e18d2f2730c754a
|
|
| BLAKE2b-256 |
741ff3632535ab54bdd50d99cf7255a10e9a78e3a4f70c4f29c9b055a72e3323
|
File details
Details for the file arithmetipy-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 263.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
101dce70362d5906f69cc81010be6d9b78da21d4af3fd6083823443225f5d67e
|
|
| MD5 |
a19233930bd21acf446e9c0deb11192d
|
|
| BLAKE2b-256 |
65e7937b2e6cb0e233a36410ddbf7b685f9925c3337dc481af4a4e3e8ba30ce4
|
File details
Details for the file arithmetipy-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 284.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
591ce0ffff6c67537bee92570aa30c237e3ec0f6345a7e507b3388342da1f243
|
|
| MD5 |
213b49640e133a72789b30575ba1011d
|
|
| BLAKE2b-256 |
f2a0b661e02a9498bb163a636be24228d41b9653a70e45c6c0bacaac8eda40fd
|
File details
Details for the file arithmetipy-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 434.7 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e421204a39c20a0b0201efd9e92ac7305d9235438314cb3cc118305ff5e7f8d
|
|
| MD5 |
dd665f87f8e65410afd89fb9e7d3720c
|
|
| BLAKE2b-256 |
e2acdc2a53a01818e5a4839dad19797b281422cf5c6d33d6d9cef409503889e9
|
File details
Details for the file arithmetipy-0.3.0-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 464.4 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5dd2cfafa60690232a4615404ee659e84b521da1e848c80b0174f3ba19e78a0
|
|
| MD5 |
3306f9403db8e4f4898a8d220fcb440a
|
|
| BLAKE2b-256 |
345976b9882890fd2ca955af133b883f6d7e79a3f6f1c7f47a8e7d9cf05a6526
|
File details
Details for the file arithmetipy-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 536.4 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9d18ac3e92ac4277a6745bbb786410119ab44621c68b4e185e6149f197a3890
|
|
| MD5 |
f26604e1806f35cca2dce43bc1771943
|
|
| BLAKE2b-256 |
e17f4699412ba3d85a45a8fab919cfa4239a00fd222e40850aca414266af9e8e
|
File details
Details for the file arithmetipy-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 443.8 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ebe4c8c18240523579f1c0b776a965be6020124ddf02137be907549f46d93a7
|
|
| MD5 |
78b87596e6879484291a0f8e6a5aee35
|
|
| BLAKE2b-256 |
cddedec1d7f62f0d5b1dae3bad1382686b53511fd2b6d4f7e367143d884bf0dc
|
File details
Details for the file arithmetipy-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 270.0 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41fbd3c9f4875c84a5637da54c6d345912e325d5948332d2fc82dcd93d9fdd8f
|
|
| MD5 |
d39d601460469fc021bf718a2e52bfc0
|
|
| BLAKE2b-256 |
ca8c82769f782911eb009c3c6fcc4f491f771080c895d30eb0a50d6c2cee4972
|
File details
Details for the file arithmetipy-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 291.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30923538d5a8e3147d8d55deb9a9e5b4ad5355d83f0e1e6087671cac52a55eb2
|
|
| MD5 |
f44e54d6104259dbe54f06e72f2e1875
|
|
| BLAKE2b-256 |
aa77ab8ca3362a8b156503f23ffd1cffc8c4c93521c2b4ddd429fad4175fa437
|
File details
Details for the file arithmetipy-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 400.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f5c3e66794a6ab8972056add5102e565ba3b84751a02f3a8354709d63368824
|
|
| MD5 |
bff190f2b2f3f38d23ac9349784b3a04
|
|
| BLAKE2b-256 |
1b5eff561b987f9efe0f69c35f3226add1938996c55b96f3639c20e64ea26d1c
|
File details
Details for the file arithmetipy-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 272.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ee33ec1d0f3b8452eda03a1804d0be55bb70b09545fe7fa9f6fbb1fe1607856
|
|
| MD5 |
ffe0d0c964bbc9cb4cad07f613df7ccb
|
|
| BLAKE2b-256 |
f2b6ae9556f346b4341fb9df91ca83db3db53295095d04668fe6300cd5804e19
|
File details
Details for the file arithmetipy-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 263.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46b42d66a384c89d520943fb8077be55d23a752f3a2a87672ac3c533dc5d9cef
|
|
| MD5 |
54092db9263ee45d186bfc84663041dc
|
|
| BLAKE2b-256 |
b23bf6d6610188702788b21ffb6d2d47c4c32adaacd17057eb0514881ecb24d4
|
File details
Details for the file arithmetipy-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: arithmetipy-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 284.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c6d856689809e38c0e3376416eb5c0180e2f10820961909a75fb5f2d282982b
|
|
| MD5 |
9e5f4eec11a5233bf42c67bb0078d59b
|
|
| BLAKE2b-256 |
ddd268d5e34c675c6d67d333d15738a913c5ac5e97b3c4f4ced3d30e0a853ae9
|