A picky dataclass runtime utility collection, enforcing strict types and validations.
Project description
exacting
(adj.) making great demands on one's skill, attention, or other resources.
exacting is a picky dataclass runtime utility collection, making sure all type annotations are followed.
Essentially... THE go-to option for dataclasses. heh.
Key features:
- 100% static typing. Because I hate nothing too.
- Up to 10x faster than
pydantic! (Them: 60ms, us: 6~9ms)
Examples
from exacting import Exact
class Person(Exact):
name: str
age: int
Person(name="John", age=123) # Ok!
Person(name="John", age=1.23)
# ^^^^
# See the curly underlines? Normally, they pop out
# from your code editor from the language server,
# but types aren't strict in **runtime**, which means
# this expression is completely valid if you used
# @dataclass instead.
# Thankfully, `exacting` gives us an error message:
#
# TypeError:
# During validation of dataclass 'Person' at attribute 'age', a type error occurred:
# (isinstance) Expected <class 'int'>, got: <class 'float'>
Also, you can type anything! Almost.
@exact
class Stuff:
apple: Optional[str]
banana: str | int | bool
# ...they all work!
WIP. More APIs soon.
(c) 2025, AWeirdDev
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 exacting-0.1.0.tar.gz.
File metadata
- Download URL: exacting-0.1.0.tar.gz
- Upload date:
- Size: 39.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a56429fbb632c4e6fce7763d501a55c5ea6397a1b4fc24127e47f9f46e5faa9f
|
|
| MD5 |
b915e046cf6b4a22d5a58b227e647911
|
|
| BLAKE2b-256 |
153c3b6ae8ebfd2650f6d3d443ff4e19d4e9792bca234e4b5e6b7e04d6ed1b75
|
File details
Details for the file exacting-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9948d9f9957ab6ea8e2d35c09faedb529adb0bed3968ce277ee6c65e518d916a
|
|
| MD5 |
6d9cb917cc7cae6009c0bf24ca8d5ac2
|
|
| BLAKE2b-256 |
e42d9fb4a257aff911808eb561d8243e37e10bb647f36c22a118ac05d817479c
|
File details
Details for the file exacting-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: exacting-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea9d8461087aa6fe3d7b0635b642591d682dbb85efb4b4e0573aba0195e14ce6
|
|
| MD5 |
022c7b2590eea189adbfef43bface352
|
|
| BLAKE2b-256 |
d14bcee9de405480cd7c2ab59b413a00c940d97b0963e0f0a2612a072edfcc00
|
File details
Details for the file exacting-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: exacting-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f502ac796ad950d28c7e2d76be3ed49600d2f4f2a374f14d4885c1040f8c3914
|
|
| MD5 |
4f71bc1578f601ea140d49830604f708
|
|
| BLAKE2b-256 |
ef3424d5f01567477a3ee93ca2d44bd3ebd200fe45db1bd04b29e2454981c195
|
File details
Details for the file exacting-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: exacting-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
557bcac71f23215bd65a74450622bd3f7073bd51bf7965bfac7a7e6d47a482f7
|
|
| MD5 |
63a25d36601ed9eb6f0962e1b7fc15d2
|
|
| BLAKE2b-256 |
3086de2f24430e49749a04285a24f0da75e840002e65281a4f856554eea6d681
|
File details
Details for the file exacting-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
617232c3c06a740b193eb8ae5d9c7dc18d7c507ec8b9ce1191f4d079387aa876
|
|
| MD5 |
1c80edfa90bf1ac3cc8d5aa28c4ddcc2
|
|
| BLAKE2b-256 |
9efa890bb8b133956fe7c6a87d7d615e5844f2f94acef7dfc73a5cccd911f319
|
File details
Details for the file exacting-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: exacting-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6850ad8faab9322d069a1b01d86951810ce8f988daa19001b558a4f95f8d4d1
|
|
| MD5 |
942204a68b9cb7bd5ff388098846987a
|
|
| BLAKE2b-256 |
703693c486514e96ecc5737ddb9269a914016ee3a5e6792f7fd4cf016b07906e
|
File details
Details for the file exacting-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: exacting-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64516993f5d9aec7e3ea8982d296d65d7c1fcc0f119c608eef16e117c9bf8c2a
|
|
| MD5 |
aa2a1d8f210036d89caf9bf2313e677e
|
|
| BLAKE2b-256 |
f5d11b25af75faa4ae571872d8ced09163bb1f3a42a23e680416f3cd09385726
|
File details
Details for the file exacting-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: exacting-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2da38e7645755de0451d8626f1e8fa9f91fd8cb845019f9b30b5cbc02fd21c4e
|
|
| MD5 |
1cd0aa0d89047a7e98fbda20d6423e75
|
|
| BLAKE2b-256 |
329255b7425823821cbd526c20edd08fc14fddd56718a685d6bdf60eb71ab3a4
|
File details
Details for the file exacting-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: exacting-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
951ce2fe6f2e765ae37a8e2e3865590e4d9d44ccc0eda75e2b7371fd3f36b23a
|
|
| MD5 |
85cdd88b8258191289f47067099f0f5a
|
|
| BLAKE2b-256 |
edfe129570333e75771aeaf02425b29503b2ca87a8a650d295ecb0eca26d6963
|
File details
Details for the file exacting-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: exacting-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0b0158ca31bb24bba3ba692443a67f0fce029f9eacb9e2171547010b15d58e1
|
|
| MD5 |
f9fc975788f20791d4490d6d2922b9e4
|
|
| BLAKE2b-256 |
990b2786203a4940f520bfef4364049c20ca943f73a6b1b836ced0acb7cd9207
|
File details
Details for the file exacting-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2319603921bcecc431a0ac4e918162355bcdcf56bbeda422a702ea3d49bc9a24
|
|
| MD5 |
07776a589e8ad511568159fa37857e98
|
|
| BLAKE2b-256 |
107200857c81f517f71b3b869d0f007c6059eefb511d180201d14ee790081bda
|
File details
Details for the file exacting-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: exacting-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b2bc612566319985fc5d0b1e8ac467c8dcbbf0b7346aa9edd836698efcdb8d8
|
|
| MD5 |
6e80a1af88cb36a358fe9bf31aa0e6de
|
|
| BLAKE2b-256 |
303111dd02612a2fc12e69e3802a924ac46b27b817020a6a63de5045899173db
|
File details
Details for the file exacting-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: exacting-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fd5b51ef50589519da116216072e2824b912237625e9b3bf0b3d8b942eed81c
|
|
| MD5 |
779c85e82e6b747255b37793da779122
|
|
| BLAKE2b-256 |
23bb9e55ce2dc3269c3cd394d980a09dcd3fe85976ec3692feaefa20e474b367
|
File details
Details for the file exacting-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: exacting-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0528135191de784e84c971b3a121a52579fcaebf1583da45192c96624003ac00
|
|
| MD5 |
bad918578c711d1cdac7004ef01bb0f3
|
|
| BLAKE2b-256 |
bb2a42518a542651a14c53174bc74dd66b1be7a99fa6c1ab785b9be5dda0f1c2
|
File details
Details for the file exacting-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
161fa6541d5bfa110af51eb1569e5d0e352c4835737156cd9d529a0a21374e70
|
|
| MD5 |
4d87c6cb001632c05624dba14f64aa7e
|
|
| BLAKE2b-256 |
b82221084dfe3d3d2a4fc4eeee54e3b42bf96547b776c720e62e1d7ef885d240
|
File details
Details for the file exacting-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: exacting-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2866f6b46b6f832f4eea32ef2dafcc7f12bf5d72baef531fc7f9dd46cbd7219b
|
|
| MD5 |
235d9271cac64fd792789d859e7d5079
|
|
| BLAKE2b-256 |
f529b5dc41f8b18328258575f40d2c3762ea7f1bdd8abe56ab64b69b1c6bf6b5
|
File details
Details for the file exacting-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: exacting-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd321125feb9c2ab750e38f0c79dcc7deab3b4cf88b0a2bff303917dd54ca768
|
|
| MD5 |
a4330bc90c1dbe47bb025140fb57f9b8
|
|
| BLAKE2b-256 |
43d55baaa4a49723818d59f075ef6914df78d82901bf18572e8aa7ce91cfa7ba
|
File details
Details for the file exacting-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: exacting-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04b190ee1c19231648279a7cb12379a4800876e531f73bfcc8efa70ff2179e72
|
|
| MD5 |
5777903624d9987dbe8e58bb8896577d
|
|
| BLAKE2b-256 |
8e483501d2045b7e0668ada028d52c443e564de07a443c3fc7326a035a797a7d
|
File details
Details for the file exacting-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: exacting-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23159d86580d931673a0bd680e9769acc86e4307fd6836264057327920ae55aa
|
|
| MD5 |
e964ac7c9b07d1983344dcd18b5f7c7a
|
|
| BLAKE2b-256 |
3366292706323aef3aac3bc1314d27d191f1cae8b25f9e7c6bedd70f046b054f
|
File details
Details for the file exacting-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: exacting-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c319087a8b05e86112861372787629e53e02327215413175e0144b183380703
|
|
| MD5 |
efac051a141ed7fddbd4f6ddede076ae
|
|
| BLAKE2b-256 |
017cf7000b28c8e23b3dfbbe9925aea247843c823597ab14a72982960fa2f2f4
|
File details
Details for the file exacting-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35fa75b91f6e0b363b5fd775936afe993e1185a5edea946b6e3330bb5c9454df
|
|
| MD5 |
3ef8d1eb36e3b35c609130ce6d9b81c0
|
|
| BLAKE2b-256 |
892ca43ad118e7c658133647ec91e751fa00d496c8dc593389936a0bb0941330
|
File details
Details for the file exacting-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: exacting-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3305816ff77e3a521fc374ad5bce6bbe9567fc935f7fdcdbe434b600dfe61d96
|
|
| MD5 |
aa872951a0080b99e43628e44c9f3de8
|
|
| BLAKE2b-256 |
7ff823586f7a34bf174a5957d9a70881663b5ee8354834f33cb781676afecfb1
|
File details
Details for the file exacting-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: exacting-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4853da5b75a8fb83a4f8556659cb3b93de911e78a198b28bb29429f7d312145
|
|
| MD5 |
6af77c0d659d912214fd9d1dfe1702c6
|
|
| BLAKE2b-256 |
f752a2d0f096c8af6c9f46ce98b7b432fd100f8b8c0cf2b3615bf8766f9a4c9c
|
File details
Details for the file exacting-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: exacting-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fb8a3d3e17b1288a068ca897d1c577dac7eb7ffba611d36e1ff4082ae7d0501
|
|
| MD5 |
deab5e1aefc2c0d6b27dbf4df4dbf115
|
|
| BLAKE2b-256 |
d548a0dd5074d9ff6b5ce7492ef13680b6b4bdc07da67a74677bbb59660ab5dc
|
File details
Details for the file exacting-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: exacting-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75b82787dfffb45b70f0c7b5fe5abe2b68a5803bf597885e0643feda9f8be2d2
|
|
| MD5 |
44b7b58082186b4b4486c4a044b0dd85
|
|
| BLAKE2b-256 |
e72986e2480c10b7de77c3b36dd9a06b6a4cae6266bcd70ad35f926bbba66110
|
File details
Details for the file exacting-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: exacting-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14b3f58411ad33ddd5aaff062e95153d9a4ca9ef0affae4d69fed126e2d862ec
|
|
| MD5 |
cfb288701efde8b8c9adc3a459053225
|
|
| BLAKE2b-256 |
41b80e74b18b56b59a8c54626f6ac99423dbe101397550027c6f06b41ea585e7
|
File details
Details for the file exacting-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: exacting-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a42425b811dbbe7d785124d4a856d3397832c536b0008195fee2031e0681d0ae
|
|
| MD5 |
135b0db50cc82fafdea19a472ce6138f
|
|
| BLAKE2b-256 |
aed3d7091ab9d9a5fe5b7fc2c9fa7d1789545a101c879c0af81c618fd457d342
|
File details
Details for the file exacting-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: exacting-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1be9d95f226824748a0f367dbabac96fcd244129288c93c584ab862bba43deab
|
|
| MD5 |
a2803d191bd5f123cad130896ad3a564
|
|
| BLAKE2b-256 |
8880221d0533b92b674f4327dd81fe8b1a50c5e5a0c2963b9154be345d4152eb
|
File details
Details for the file exacting-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7d1a3bd14eaa4bb6ba8dfb7aa30bc94f60f7eda2b21305e059852fcce79fa99
|
|
| MD5 |
b2710928caff8c04795248afcb4150b2
|
|
| BLAKE2b-256 |
31b6d71435b1ac10b72fd3e74c9e627ecc938a0fb64a47c37e0371bb8cf0b381
|
File details
Details for the file exacting-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: exacting-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
333e0a7c59e8f6265be5ba963c909753a0a2253a62b5c856cb5332f984ae523e
|
|
| MD5 |
35d480e2bbfb7790a54de3a732e43966
|
|
| BLAKE2b-256 |
ebebcca344f5692b9f6fe75c95451e6e13e9a4bfcf5bae19c0acd823aff7291f
|
File details
Details for the file exacting-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ff5c1f8d8fb41cc84600585aae101d74c4488b7af91fd0c8e1352a83ff1088f
|
|
| MD5 |
cc9d13546f46316891457ab219cb6171
|
|
| BLAKE2b-256 |
c9b20860157660402247ec4b707797d98d4c3ef2d957a9407bb2b7ca1551f8fb
|
File details
Details for the file exacting-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78da3b125b6e15c6a46e39a1f955ba102293ee72e648c27a5bd1c4ba405f3f06
|
|
| MD5 |
b177331229e1c215704eb6317c03d92e
|
|
| BLAKE2b-256 |
88ff64727f819803e5fd0ad54ac0e1d72051a5f8260995f1e19514ad6ca30444
|
File details
Details for the file exacting-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9379739150b32e0b276a2e41e7f8aaf219716a2d7039eb2b209a65474626777
|
|
| MD5 |
cef60de656fe752ba775e3c326bc9985
|
|
| BLAKE2b-256 |
9361520ff635d86980f795f627a927d3beddef6313007e7386a798f837cdb1c5
|
File details
Details for the file exacting-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf1d8d025876115b4cddf17c6108011c32039d4586f198a26359aea8b3e99278
|
|
| MD5 |
f1038c447e5e13847328e9ec2d45ee42
|
|
| BLAKE2b-256 |
b6416bbe435dda0590a9a57839372e1cad7ebc34acaa09f1057f1e293652c041
|
File details
Details for the file exacting-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7bf67cf478aeb82b2a6d9c0220c392e93e4f67b745a42e2ffd91ae30806e0c9
|
|
| MD5 |
11c04565a1fb63445bc4ea6ec53e83a0
|
|
| BLAKE2b-256 |
d0757fc73182fa462f9239798fe333b98d450a33e77a10175531b1049a87cff1
|
File details
Details for the file exacting-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e71f94bcf412e7d51268cf014867add224e35b06f43ad9981918d41c187679dd
|
|
| MD5 |
5b75b848e46e7a29bd065d277cb78b8d
|
|
| BLAKE2b-256 |
0f5ebff2fe857f6bfcd3a96463b8d6a1644c5e63beba8bea07772bc93964cdd2
|
File details
Details for the file exacting-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24d7c55dd5bab6bee38cee082326bbe863789e36b496ee76b04fc8b77d51305f
|
|
| MD5 |
43282c2a92455efaa7de5d214973c3f1
|
|
| BLAKE2b-256 |
b4f425b0d998e9df808ea7837a8ff7241a44b514b77df3672fb093a1b6ca04b7
|
File details
Details for the file exacting-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b00d2b61f066c1864e2b0535d548d3da916d288775aaf2796245a0982796e6a
|
|
| MD5 |
c4a9d5b541c4b8bcf20504f2539faa3e
|
|
| BLAKE2b-256 |
186bbd3bea234471698fb87c382faf6dba13be4b8e94c2fd7aa17a2807caba5f
|
File details
Details for the file exacting-0.1.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 980.1 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
089c910a8b18ff7e585083317bf0c08ae9f87699a8062077f36d33104824d86f
|
|
| MD5 |
2413862446d7d570f05f148a87443777
|
|
| BLAKE2b-256 |
b511582dace5c8b980d3d8efd28893f9a12ad813164dd7c8c8b4568338861a1b
|
File details
Details for the file exacting-0.1.0-cp313-cp313-win32.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313-win32.whl
- Upload date:
- Size: 897.2 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de4a29c0cc8ba6a824decfc5f0abb61dce1cbd0c6201cfdb1ad38e862947ee53
|
|
| MD5 |
01d30f0a40ad3be6fccb864a4c025b8a
|
|
| BLAKE2b-256 |
c968193125772552b367e6fa58f412eda849b1f12727baca022e48e835284038
|
File details
Details for the file exacting-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56be6d9cda81e7c69273b382a8aeedc3efa8afd7d47c3b8791fbe175f2fb9c7e
|
|
| MD5 |
e8b2f5621b3263137df050e3930cc006
|
|
| BLAKE2b-256 |
4e3879e17019f5814d265b364e791573fb20fcb50174074b377262e8801916a4
|
File details
Details for the file exacting-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2dbd865c43d308c231d6c5fbc52739f9ca85da8f905d52fa4ed4a2c36686781e
|
|
| MD5 |
377ec07dd56a33ff3de31f8d7fa445ed
|
|
| BLAKE2b-256 |
1699174cb7d36ac68b0fd2b932681f21e6e64385c04d2f9a09dff9312bbd96d7
|
File details
Details for the file exacting-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9f666bc6fdf8ade160d197cf88801458602b892c5a8f0b7d631035be05e1bae
|
|
| MD5 |
01939efcf3c819724852acf9dd303680
|
|
| BLAKE2b-256 |
6b68d4818884b817397835920e990a539fa446bd4c67a47dab96a7ada4f2c197
|
File details
Details for the file exacting-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1e0a5125ae1b5924984284045ee53733c66e664edf887c5602e56ddf0e85902
|
|
| MD5 |
b07fe43ecde77b9e335a92a205ba4dc1
|
|
| BLAKE2b-256 |
07aed9f8c97821fc1addfd6b748ebd3583408c73ff9b1f45d4e200dda38dc2bd
|
File details
Details for the file exacting-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd2337d81c0facf180cc67946685e925dd8f200f73b4a06f0479ed95c3135680
|
|
| MD5 |
38c56dd6e40a38eec3f64ca4f71e9e08
|
|
| BLAKE2b-256 |
2118cc6023b6c1e9bec7275b28ca310ac481a9c36365f4d7896a4f5f3da0ae88
|
File details
Details for the file exacting-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
becbb12b56990f9531a9c6bdccbde13e258c0ebce9930272fd6294b562807a29
|
|
| MD5 |
58e5b75ea8953ab1a4b672cbf7330593
|
|
| BLAKE2b-256 |
eeaebc516dd35d77071fcbed9cdb062c056e4f25563131aeda0b4212162258a2
|
File details
Details for the file exacting-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a157d74fe1fe8bd32f10bd92748bc604e93ebe96f1c28f83c0fc15dd9faff6fc
|
|
| MD5 |
36e4903cb65593faad5bb6f2fc29686e
|
|
| BLAKE2b-256 |
fb5d7eb4ce868d8fa2659ed80b5d6c1fee8ce94615cf979201e51ec7192bd2ea
|
File details
Details for the file exacting-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db539d36a8b334abb2b848b2195b5c1d1a0f47834f1d11c75f0fc261f6c1b703
|
|
| MD5 |
400a087f3e9cfe286b42e09bb3c9d91f
|
|
| BLAKE2b-256 |
d67b3494bb1194522d09760792eb52985a65bb0cc899aff9d9d856e469a8f3ae
|
File details
Details for the file exacting-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fd9396323a4be76f5b50d027fc246a23f5bb7b805c90e22e8cbd2a8b06bba96
|
|
| MD5 |
4f34d0ba1d650bd9aed382e0ba17bf8a
|
|
| BLAKE2b-256 |
d07377d88533554206dbaf3839a4cedbaaf5229a228221c3a315d55ba969afb0
|
File details
Details for the file exacting-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4c1c61d3d2485be382717a436213e5abac7415b6cfc8abf51ca87ea5f361a86
|
|
| MD5 |
01a523862ba50e53dd12670847615c67
|
|
| BLAKE2b-256 |
fa179dd5276d2c5f3277497862e21f6a2204753387d6402e964975c6b4b39a53
|
File details
Details for the file exacting-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c2b9106058658c45d9a01c7e5315ca61638abe29bc0730c2c363b599a4a0370
|
|
| MD5 |
e1e6cafdd246741ec838e43a30899ac9
|
|
| BLAKE2b-256 |
f7177fd57d11454d9600596e5414c937a119b384b6a7b11a6fdead0851a1d1a7
|
File details
Details for the file exacting-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
379d13fc2e76013cd2aaa1016397e98982c0f94d6d64baa72a3f339a2bf5232c
|
|
| MD5 |
aed99b98822ce37b39b39dba27c0b5b4
|
|
| BLAKE2b-256 |
2db93a6229a9e16c05e77516e8fe87a5a04ca8acbdbf87288d8b18fb28ea5ac3
|
File details
Details for the file exacting-0.1.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: exacting-0.1.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 980.7 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19ac39fa0fff89aa13564e37aa9919cf06f9bfd710db73df144a811296403852
|
|
| MD5 |
b90a574fdf50236b34b23b05d932a6c5
|
|
| BLAKE2b-256 |
d8affdcdaaf1755ee195df99487c978d7c6fd0d35beca1678f35f4a900bb82ea
|
File details
Details for the file exacting-0.1.0-cp312-cp312-win32.whl.
File metadata
- Download URL: exacting-0.1.0-cp312-cp312-win32.whl
- Upload date:
- Size: 897.2 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65d1dc020e300ab556de9c4ca310a8d6a7356949c9589d29289421ddf385a373
|
|
| MD5 |
5f417c5fbc496036d642dd4057844f4b
|
|
| BLAKE2b-256 |
54301391d5554fb071b3f6575c6a2de51dbe401730a18fb90316b224c47e3fcd
|
File details
Details for the file exacting-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8d5f17080d97f09e3b0837a0dcb33e0aefa666591a14b04a9c9b0fb645b69a8
|
|
| MD5 |
d08232f5570a26d88bb58508dbf11170
|
|
| BLAKE2b-256 |
cdfcb79f86bbf581d12812f86ee9655fbee69fd33279112a9e1ec815df52cbf0
|
File details
Details for the file exacting-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: exacting-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c0e955528b46c035372586631d1e70a0918c83ec199f9690e5307ac84f5635e
|
|
| MD5 |
b9bdf7e3c45847e91b5345ed70c26b38
|
|
| BLAKE2b-256 |
024c9a80934878e86ddddf6d21149fcf9fe391da550e7b4a7aa6d64f15b6f44e
|
File details
Details for the file exacting-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: exacting-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5818ab3135af9c4e07bde64773b8a6cab140dcbca734d9dac462a7c10c4c5448
|
|
| MD5 |
7e25279b2905c9b0a8ebf28cbe7450b9
|
|
| BLAKE2b-256 |
197803d78b5298a3921a37f99be28cb2fd7e158c724b9a7fd50809c636da8c01
|
File details
Details for the file exacting-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: exacting-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9dc7899f9fef1a06f59d957d179ac95816b02502244620a06f4c1208e65a241b
|
|
| MD5 |
a552838c86f01de0fb94da05477d390a
|
|
| BLAKE2b-256 |
90075eefbe9987bc1d65f23fcc3a19b1a5127547775e8b42874a400669558f5d
|
File details
Details for the file exacting-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba65162157509e5ffd895014346933d4d545404ce53f5b177169ff353d74ec7a
|
|
| MD5 |
1e5be7373fa9492785c4e0ebcf5366cf
|
|
| BLAKE2b-256 |
60c768b9758f8f90ae9c2ee68625a0cc96c7dc5173a889a7635af1c1e4a8c5f4
|
File details
Details for the file exacting-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: exacting-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51fd920174d3e7b8a8cefc4cea6a1b3298c08746996f9c4ee3a41f4616d7e8b1
|
|
| MD5 |
1a6c5d8b3c59e7435d13027f177325b8
|
|
| BLAKE2b-256 |
52d1ed8cb7db2e3bdbd2431a88ebb12a122eb04447c0595b5d39920f5c462ee2
|
File details
Details for the file exacting-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: exacting-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea3fe6c7fc13e8cbc5723233f342a9adcc20520e15fa488274e14753b2b09168
|
|
| MD5 |
37a9b5a1c03eff75f761b5565948fbf9
|
|
| BLAKE2b-256 |
ebdad49cddcda8995d902dc77e37778691f99fd8d7a06c3fd9df0953544f23f9
|
File details
Details for the file exacting-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: exacting-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5280ac8f50f752df399c7277ede967f7536534763b37442160d5d99a1c960dcc
|
|
| MD5 |
9c8609bc063074f9e7481cd1ad35f764
|
|
| BLAKE2b-256 |
0e405f3275680863ccaf07067995d3b2006659ca70760bcf2cb21e644c2a985d
|
File details
Details for the file exacting-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: exacting-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
186e5f0d492d118e1be1e7ab27f4eaf84a76e5d348d0deccc07878d01c1fac6a
|
|
| MD5 |
3201c64c812a8097a0cbf726d3c6e0bf
|
|
| BLAKE2b-256 |
cef10d39c95ab761548bda08b02ed6039939b935dcfff800e50fd56168a22aeb
|
File details
Details for the file exacting-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: exacting-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22f68fc7b974fec1190de72fbdf9fd787f2e415505f57b7ff9e74cdc77dd2051
|
|
| MD5 |
909e03d52e388a64786a0ffb3ce64ce6
|
|
| BLAKE2b-256 |
a2f23cd1c7075866c9e38882eea2f4a08fed31b5c2bd9b2657fac29686abe139
|
File details
Details for the file exacting-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: exacting-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b28b1f6ca633492e8214ed4ddca40c27536f63a7ca627b5f79a41de549d2ce03
|
|
| MD5 |
a11a30608be503ed6a9de4ac31f70abc
|
|
| BLAKE2b-256 |
3b8e0499f5cd884d3084fceef7cab826db9452691bb9e5c061b111cd17c7ffc6
|
File details
Details for the file exacting-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c6204c847dc1e866e84ebbbe1bf674ec7590149ce652c62e8c5724bd87b3e2b
|
|
| MD5 |
b1158809d7a0c1a3e9987ac0b7cbf28e
|
|
| BLAKE2b-256 |
8c27bc2938b4a94aab075cdc189e8711c637ab28dbfb49e38081db47459770ea
|
File details
Details for the file exacting-0.1.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: exacting-0.1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 980.5 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
566dc128d3788ce106c649357cb72fb6f93210c631ba420899593e53dda0d350
|
|
| MD5 |
f9c469a2c6c105cafd410defee2c017e
|
|
| BLAKE2b-256 |
c33b9339a3d2e49fbad316623ac9c1627cabae9af2c5867dc74b86eed74a06c8
|
File details
Details for the file exacting-0.1.0-cp311-cp311-win32.whl.
File metadata
- Download URL: exacting-0.1.0-cp311-cp311-win32.whl
- Upload date:
- Size: 896.5 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68d611d5f656977b90e653a4498772c866e4168ce62c1ac2f7e567bc4cf5dd76
|
|
| MD5 |
63e7410145d1bcbd175e80d4c896b9df
|
|
| BLAKE2b-256 |
9f1d2ca787c92a96e25147259c6d0e0cf6dd35a1c980fbb923d0c9ec4af39a83
|
File details
Details for the file exacting-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9536340774054b6809075c71e84c4588fbeb4bff44fc60cb6381aa15c85cefed
|
|
| MD5 |
e1d810d95c5252c7cfb47e599aba63cd
|
|
| BLAKE2b-256 |
7348e8631f8d419647829d5238f2621305fc46fe4636450df35c1927f6b83566
|
File details
Details for the file exacting-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: exacting-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
086884b3754425e34e8593e0e229116d4dc8de5f1c5ff7b0854b2453ed7d4de5
|
|
| MD5 |
c92cc0ae5c5be6ad361a14b10b4d9d59
|
|
| BLAKE2b-256 |
d5cb78c351a26ed06c24b08634ebda9e60b9fcf6c85e463fccc1d144b05c38a2
|
File details
Details for the file exacting-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: exacting-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
182be4af303aab155edb1a2f023e9c4a04118984d45b47190940dad0c43778bd
|
|
| MD5 |
82d84c015038b90a152d87a5e603d81d
|
|
| BLAKE2b-256 |
f70c967669be421d748ede88b03bc750fb315523f051752b29e4707c5ab6702c
|
File details
Details for the file exacting-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: exacting-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6d56ecd13c5472298746ba8a618216a48b63df57ca25bc40ac67b0d8f62688e
|
|
| MD5 |
1c210b865bfbd2d0697922094ca89dbd
|
|
| BLAKE2b-256 |
20dac97b117cb23030af885dcbf6e008570f9d3690f6388d4b8ef625f1487ec8
|
File details
Details for the file exacting-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b616b2d5d8681c02515a03776ecd94ed3f50c7573508b20544b1f4144451438b
|
|
| MD5 |
e96d2e1e4cabc764af459f4d7fb214c8
|
|
| BLAKE2b-256 |
5d0e5492abf5e576c7817ad7147dccfa79c29540438ac45a02dc1c72c99c2678
|
File details
Details for the file exacting-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: exacting-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1d3a779e73277bfc9eed43711a4638849ed1f8e782b155fac4feee2f9896ed3
|
|
| MD5 |
cdbcc6318403d3cf80a760fb2bf5251e
|
|
| BLAKE2b-256 |
5c8de18ebe0394bd78961a3eb47aff628d15284014cb3ffc2dcd41c3a42b3087
|
File details
Details for the file exacting-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: exacting-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6791c24bbbd4805181f3192b47cbede2f25c1e49fff7b181e032b4a28f2d09dc
|
|
| MD5 |
56fdeac149348c67264f50b0c163b345
|
|
| BLAKE2b-256 |
bdac1ab4191dc29ab0d8bf14f84a2fcf03bd3c64123921ab3bae797a27f72a23
|
File details
Details for the file exacting-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: exacting-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f636f10ab933cd03d3b6f3c6b0d8c3b61faf6dfeb0a18e2d4fdac4b424cf6fe
|
|
| MD5 |
b3873a8b1818ecc518e99b01177327b2
|
|
| BLAKE2b-256 |
00434b62bfbb36ac6ce785f109ae4993d885db7ded5255f53ebd17dc6044a47f
|
File details
Details for the file exacting-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: exacting-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
971a8b5fc5ee187c17a164ffdabddd8d31a3d0eb7a52e16abaed344794461dce
|
|
| MD5 |
f74562015805372894610661ff731e92
|
|
| BLAKE2b-256 |
fab4647466cd74e448bd3662d9e45d3cdafd7185d38f662813c7646158310c6b
|
File details
Details for the file exacting-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: exacting-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
efd67b26e146942c262d633281a2846f554459d3331a3ee8c67231123ebbde8b
|
|
| MD5 |
d9702b971904cd191bfcfa76a8069787
|
|
| BLAKE2b-256 |
282f217143152ef0145fc4ef1816142e57c5a776c50e5537bcecd77bc5193553
|
File details
Details for the file exacting-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: exacting-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35d5bf86a12585fd5a58520b4ca0ceca373d1d6e7af7d7df9af68f8aa400ba9f
|
|
| MD5 |
521310a9f48a469d98bb3d2ec4d090f6
|
|
| BLAKE2b-256 |
b6f4c2d29cfcd314d4cdce99765236185a88c4edb34dcac073bfcc309ade3b9a
|
File details
Details for the file exacting-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8d1dae51a60a386ba7069416fcab6615c08739e56fdaed2a3927262f12f2cc4
|
|
| MD5 |
b8adb53ef1daad83da246ac521e58923
|
|
| BLAKE2b-256 |
ae6ef5803793c0186ef5d978f5b61d80c67ed35557dbe3f2791c6351dbd3de55
|
File details
Details for the file exacting-0.1.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: exacting-0.1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 980.1 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ac500c0b002c5985270a87d6aa00445c6ee905fbfa70c500d77a2194af44524
|
|
| MD5 |
c5f513bb2fcdfe846d3204ce5db23ee7
|
|
| BLAKE2b-256 |
690637cfb6e5c567963afe69e534cb98f80441854766d6b901138dc5c7fc1b26
|
File details
Details for the file exacting-0.1.0-cp310-cp310-win32.whl.
File metadata
- Download URL: exacting-0.1.0-cp310-cp310-win32.whl
- Upload date:
- Size: 896.0 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1478254cab58ba08e1d32a8aa8cb49d7c9211ff94dd74708a64571e61f54e28c
|
|
| MD5 |
a1c6b781fea647de6979b223c231f778
|
|
| BLAKE2b-256 |
f6a05facd3f9a2bd53cb0b4d066e7d63a304ae75802c079bd5553d7cc13b52d9
|
File details
Details for the file exacting-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f30692ddf2832687013836cb82250559deb9bf05463667dfca29a934671c8bf
|
|
| MD5 |
306a641f6e72fe118a996f5fbb9d5575
|
|
| BLAKE2b-256 |
0c87f8c0b393052e768ee7cdf0bbb35db8654fa90a09729783ab8fa34373717c
|
File details
Details for the file exacting-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: exacting-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4a91d85f010d633d557706fec6cb4cc5694d64273c37ce17b22d519bdbdbd50
|
|
| MD5 |
3eb5dc571c9e977da050cb04744fbb87
|
|
| BLAKE2b-256 |
fe9e60e011259097ca1a7bb127485ad3640275550102fa103172e90e88003539
|
File details
Details for the file exacting-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: exacting-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5adda11612f7efa55fe38961950713677d41ec9d7c120dd518b2329c0da342bd
|
|
| MD5 |
c73d40efd6e8eb50eb394230d3bf7b8d
|
|
| BLAKE2b-256 |
a4ab9271cf8b3b544cea2a077029d2b6ecc82a913a5980ae358e9d2b5c7f7ddf
|
File details
Details for the file exacting-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: exacting-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f406275506f55cab55b36d6e685dee5e8c25c20d0f32e9848c6b6693a5be2ac
|
|
| MD5 |
d7e362ef079c8bed4eb9ecbe7bfe007c
|
|
| BLAKE2b-256 |
0b7965b7169f5f15d9b75ff8f410ff741520952af1a5966fcbbf263f437d51de
|
File details
Details for the file exacting-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56c164b6ad099b8c548b97639b9acf614367eee48cd670b10c73f7cf449b9133
|
|
| MD5 |
042ad79ccaf9be191ec439fd059b5600
|
|
| BLAKE2b-256 |
05a469e64c8b1c225283869efd2da0de548535377eca1563805334bb1b688b0f
|
File details
Details for the file exacting-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: exacting-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e043739c80499db668fad2a57f603f9b4a01adaafb8f0a914f9b183229cc24e1
|
|
| MD5 |
7bce8527874c1c1f2911fdac4a1c8d11
|
|
| BLAKE2b-256 |
1d04978f3c183bd951cbbe7126d73da86713bec8ace08bbf641ff0f61ea5c025
|
File details
Details for the file exacting-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: exacting-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd2e589272884b3e2e76680b2569ac96e29643abe1d6015453a3aeb043361401
|
|
| MD5 |
07a068880a0888a163ecd7a89e7bbdb1
|
|
| BLAKE2b-256 |
323eadaf4e32469489b6c8a33356da8c148f567209e2b869cae009cf0a0fd2cd
|
File details
Details for the file exacting-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: exacting-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
823bcf1173d1442ed4761c421cdf41b94fb41c072df3f95e5278e6484ed06c23
|
|
| MD5 |
22cda081bd33ef32e1f55693c5d52dee
|
|
| BLAKE2b-256 |
4f41dc5435a2b1f771db9f88c5c318337a64165e3afda3c61ded29b6d08cc286
|
File details
Details for the file exacting-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: exacting-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af5c8c969f165a310aafd8d890a1c6a5af9e9b9e25a346855d0ade120cd7dce8
|
|
| MD5 |
4d79351a5b25703f0012b0ac37c53554
|
|
| BLAKE2b-256 |
c6f2a305e190eac768dcbed912b34d71dafdc2790cfe1356cd19f3a6ca5bf667
|
File details
Details for the file exacting-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: exacting-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c5bf4b74c935ca5cd4402e209534e674878409b005daac02f6aeec058f9fa61
|
|
| MD5 |
8557e1ebe7e8961867b8773eeb89a720
|
|
| BLAKE2b-256 |
10b0c57c7ebe5d9bcb035ba497587779bddbf0567a4c528e0422df06c8cb7c16
|
File details
Details for the file exacting-0.1.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: exacting-0.1.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 981.1 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b04a72846d71b3cddc761b1256f0ab160067834c45932d79eeda291c8b2b8d90
|
|
| MD5 |
c3d75806790019b88c1a934792a77af9
|
|
| BLAKE2b-256 |
3eef24d94bfe02bd25656b8805b776e735bee0174ae21978b20c4599054e8e52
|
File details
Details for the file exacting-0.1.0-cp39-cp39-win32.whl.
File metadata
- Download URL: exacting-0.1.0-cp39-cp39-win32.whl
- Upload date:
- Size: 897.9 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c57bd91448bfae1edd7952450a2373d330b591fc4fb50c54b2dfcbcc68675ab8
|
|
| MD5 |
aa2969d96dc1931256cc2c17de8c2436
|
|
| BLAKE2b-256 |
7197e4c4ffde52d1e491bb6f112c224e7c699b72e9acd3789f1702497723748f
|
File details
Details for the file exacting-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11e91db2455ec8f2bf1a96c9eb932332daac22343f63862ee983fa7dca65f5a0
|
|
| MD5 |
b08ab219e1be5a8d3a03c48312fb4a61
|
|
| BLAKE2b-256 |
22f4c2ba9a4e9eb56c950aae932cef6568639fd9fc557926c208186f5075578c
|
File details
Details for the file exacting-0.1.0-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: exacting-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42087cac91273850e06cd68977864f600f0d7c1f4568544bbbb40c3204d623ea
|
|
| MD5 |
bfaddfe5ba6377ef85205220622c21ba
|
|
| BLAKE2b-256 |
9e51db069148797f71371276817485f74878a75c9eb2bde36fcac2c588a4b208
|
File details
Details for the file exacting-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: exacting-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58b466fcd38990a66101037e52dae2b5fe681091d1482bbcfada76ac6f9b87f7
|
|
| MD5 |
1ae85125ac8e224376ec2dbe2593fcf3
|
|
| BLAKE2b-256 |
c8fae61dfe886597f9b65c34967d62a7b5bee3a34d39fa0594af910577f0a9ca
|
File details
Details for the file exacting-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: exacting-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
781711c3307b2be943fee1c9edec29e89205fb75d339ac956beddd85af313251
|
|
| MD5 |
4d82776bf3932b999a7008ba72424a68
|
|
| BLAKE2b-256 |
bf65a779af1246a66d29933383cbdf525f8d7265d01f0e4bf237fad96d229065
|
File details
Details for the file exacting-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01d15c602bbe4d52ae4dc1e62f19bbb898ee4f9fcf9e69ee4f5b264f4d75820d
|
|
| MD5 |
ed5832ed288a842210d60eaca9461384
|
|
| BLAKE2b-256 |
10a125ae3ad94b544c363bbbf13cb7c9fd1512fc7ee8b52f31c4441848ca7aaf
|
File details
Details for the file exacting-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: exacting-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ad49d352bff9d570a045a38a0a27a5adf6d545fec5280cdd7e26a7e148ed4ea
|
|
| MD5 |
2dacd217f41f3fd93b3eec2cb736ce54
|
|
| BLAKE2b-256 |
e23760d4175b99cafa3f1cc636af8006a8f33d2f97e004e385588b138b49c509
|
File details
Details for the file exacting-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: exacting-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6657126fe1847b52af741238cb616a888234523b70d277da0afa403f9ff7be80
|
|
| MD5 |
8d2e36c5613b22dfa6cba54a327aca6f
|
|
| BLAKE2b-256 |
f37e6f89de8ce4dc82f5ac71e1c62dac763ed353a7b493258c97fdce931ae2a5
|
File details
Details for the file exacting-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: exacting-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ddf408c565890ea919f248a74d3ce961aac556a03d13aa505ad0374c1db202f6
|
|
| MD5 |
60bcc1d71825391a2acab817ec5f8f48
|
|
| BLAKE2b-256 |
f45a7035952aee68cf216b09bf9a193a994d1d5e88ae3a05e5e3ad457a0fda26
|
File details
Details for the file exacting-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: exacting-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81f45b2172bc8cc9be2fd6b88beb7e5f5872bf94e14f37946746634cd902e93f
|
|
| MD5 |
b3fb5163de0029ac10da4f57b05ed383
|
|
| BLAKE2b-256 |
8b0ac689eaa8d8c6ac1d7117057d31d9b10113d846176f9377a8340d34c2764d
|
File details
Details for the file exacting-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: exacting-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5593f89ae74d4b5a2c53628b583e582ed3cc5c5f1c1fda0c010de8e458fe5726
|
|
| MD5 |
f2b29524867a04aacfdcfe9de5411235
|
|
| BLAKE2b-256 |
1e3a8178426e9b714f4fbff0074f9cb3f77aa7ea1db4d89296a5b961d42208a2
|
File details
Details for the file exacting-0.1.0-cp38-cp38-win32.whl.
File metadata
- Download URL: exacting-0.1.0-cp38-cp38-win32.whl
- Upload date:
- Size: 897.4 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f0c2856569ca4c25da029078efb45077d18b7ceb14631a2936bfbc040f46898
|
|
| MD5 |
e2b0211a759a3a2609c0a499b98a7b85
|
|
| BLAKE2b-256 |
2b29f66b1878068a1bfef4a0c626dac26b4f01932cd7577af3b66f985e3fe0b8
|
File details
Details for the file exacting-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf1b216bdaafc9ad5c54256c7149dd8132ca5a91f23ed3fe5855fdf8b8e7f5ae
|
|
| MD5 |
ed7ffa85f46fbea3c88030ed6fde081e
|
|
| BLAKE2b-256 |
99eeb983182dbcefbc0b4eeeaf66ff97ad19995df4eb575d5ef1de5cb9f585e2
|
File details
Details for the file exacting-0.1.0-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: exacting-0.1.0-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31d051369b182e0b00581f9c885ea80d7428c87f688ac9cd17338a4a74d8fea6
|
|
| MD5 |
1d900557a08fb1c89cd35194bcbaf220
|
|
| BLAKE2b-256 |
101bae614d1efe05e3dc08a9fcd4da0db4fff16ec23f15054eee2151376b3185
|
File details
Details for the file exacting-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: exacting-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09ac0803016d569647efac499e43e2240b3701d79bbbf9219a7dcc02741182dd
|
|
| MD5 |
5517a1f0edcce4beae9405b983c8050c
|
|
| BLAKE2b-256 |
17eb54523ae601bd5fbc6a98596f8b9285ca5eb56b060d93aa42760b7705f57c
|
File details
Details for the file exacting-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: exacting-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea4c03f689efe8e37da5e4c68c3ee3a43eb4475c4d3629fe3197374de4093877
|
|
| MD5 |
1c5cb20463ea9392afca44264c89f5c7
|
|
| BLAKE2b-256 |
346b326196070511af8f007ea334f3c84ab800bcd212f6ff264f797899b4cc93
|
File details
Details for the file exacting-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: exacting-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d0e9d34cc3b9fa7767d2954ba7cf8b1ddbf840338ac47d031b246ee55bf300d
|
|
| MD5 |
9ad77041d3cfadcde45265d7278d4d18
|
|
| BLAKE2b-256 |
aae782fdb20dde77f1b2efd292cf6740de367e2e35c36563e893ebfd58b6c193
|
File details
Details for the file exacting-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: exacting-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
340b40d35f9c0312369a0c85f69fb991367bbe911defc5f8d3c2f5d5f650ef71
|
|
| MD5 |
3525863a76b0398cbf74a1ebe516ad25
|
|
| BLAKE2b-256 |
fe34c574e848a18fbc646457992ba726b6a87d1a88803012f0cf6b2acebfd327
|
File details
Details for the file exacting-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: exacting-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb69b4e16799db73d06a900266b009f36483a5d13377462e0976bccc0d2fee76
|
|
| MD5 |
60f90ffdae98e87efee5571df89d2681
|
|
| BLAKE2b-256 |
bdea198077f14a5c6eb1e97bc52603cf4766f669a51fa25a4737e7a9931df995
|
File details
Details for the file exacting-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: exacting-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9294908ec234cbed968ec15a44a6d952eab28b54113e5db21e792615489b45e2
|
|
| MD5 |
9b6b8590f2f87b3b15b12c95ae252f77
|
|
| BLAKE2b-256 |
8838f17f8331c5321dddf9657240a49ff04d03606d93d7692c6e0376d28cb441
|
File details
Details for the file exacting-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: exacting-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bfd02bf6ebaf804af6ca81443c6e420fd41e649fb42ea0f24da7fd77aadc025d
|
|
| MD5 |
5da3a19dc070bab13321cf2d3f442305
|
|
| BLAKE2b-256 |
3f057197e306a8e9eef716fea697b5c6a39dbe6b3acad728fa4500fb26f0763d
|
File details
Details for the file exacting-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: exacting-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
538e4c19e448eff59fb4504da1932f49777f5c59ff549c124b91bfbf947ae6aa
|
|
| MD5 |
980e83214be67a441982c4b071ab348a
|
|
| BLAKE2b-256 |
15dc20610acec51d44ce59d416ac46a2af250159f7f93002aa701bee69f5bcdc
|