Hydrate Python dictionaries with Rust.
Project description
hydraters
Hydrate Python dictionaries with Rust.
A general-purpose algorithm, used in pgstac to reduce the size of the items table.
import hydraters
base = {"a": "first", "b": "second", "c": {"d": "third"}}
item = {"c": {"e": "fourth", "f": "fifth"}}
result = hydraters.hydrate(base, item)
assert result == {
"a": "first",
"b": "second",
"c": {"d": "third", "e": "fourth", "f": "fifth"},
}
If you want to clean out any lingering DO_NOT_MERGE_MARKER entries after
hydration, pass strip_unmatched_markers=True. This will call
hydraters.strip_unmatched_markers on the hydrated item before it is
returned and will emit the same warning when markers are stripped.
import warnings
import hydraters
item = {"a": hydraters.DO_NOT_MERGE_MARKER, "b": {"c": "value"}}
with warnings.catch_warnings():
warnings.simplefilter("ignore")
hydraters.hydrate({}, item, strip_unmatched_markers=True)
assert item == {"b": {"c": "value"}}
Strip existing data back to a clean state by removing any keys whose value is
DO_NOT_MERGE_MARKER. A warning lists every stripped path using JSONPath
dot notation (for example $.assets[0].href).
item = {
"a": hydraters.DO_NOT_MERGE_MARKER,
"b": {"c": hydraters.DO_NOT_MERGE_MARKER, "d": 1},
}
hydraters.strip_unmatched_markers(item)
assert item == {"b": {"d": 1}}
Installation
python -m pip install hydraters
Or, if you're using uv:
uv add hydraters
Developing
git clone git@github.com:developmentseed/hydraters.git
cd hydraters
uv sync
uv run pre-commit install
To run tests:
uv run pytest
Background
The code for this package was taken from pypgstac. It came from some benchmarking that determined it was much faster to do this operation in Rust than in pure Python.
License
MIT
Project details
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 hydraters-0.1.3.tar.gz.
File metadata
- Download URL: hydraters-0.1.3.tar.gz
- Upload date:
- Size: 95.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5b60a535cc911e7f42875e26ed2a39014b6d22dd0c4f3f441cae3a3b0e6baf3
|
|
| MD5 |
ce3ebbc4f5b84b9e53fc8685d8e2c76f
|
|
| BLAKE2b-256 |
19cadadb0e01677b47ba9a71bfebbcb47c3236d5f8cb7abccfe969278f59cedb
|
File details
Details for the file hydraters-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: hydraters-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 413.9 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb76d0408e0dd1334f6dc38f27f14f4be50ef29a3f34090c05be2d3765c7dc36
|
|
| MD5 |
9d3a8f5377d90a9322f2a20034a56231
|
|
| BLAKE2b-256 |
08d26a9e7f80944e323faf0b5593ceab27eff719d4917d2c56cc72d85f80de5e
|
File details
Details for the file hydraters-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: hydraters-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 443.2 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1374bc85a39a515cf2ca1b8ed56b1945cbbbd4db3a4533d22d22291742642fd2
|
|
| MD5 |
38b5a23de4d85ae1b4ba54769b89cbbc
|
|
| BLAKE2b-256 |
ab8d112e78d9197b74da273ad4f119810115bd64844a8d0c0787e786611aa022
|
File details
Details for the file hydraters-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: hydraters-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 516.3 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09fa5442053340adf21dfa7d3bf92771b0cd99040bd7f945d3bd5ab1c5f13092
|
|
| MD5 |
4c02872633567d563e0e8d914d81373d
|
|
| BLAKE2b-256 |
e4d558819e6b52b3f129dccd54240038021cf22703de284a13cdbf756a491fe1
|
File details
Details for the file hydraters-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: hydraters-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 424.6 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37ea2236addd7278afd2316cf95687acd75ed7fa5fd7fc9ac38cdc6b1cddc1bf
|
|
| MD5 |
e99a1131069ebf5b848fb6f80d3ad692
|
|
| BLAKE2b-256 |
f73006e395529dfab707abb27fff28b374d92bc9fbb932ac2ddb5652d9f53b62
|
File details
Details for the file hydraters-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: hydraters-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 251.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
898438730895797490e9571c772c85926ad57bf9a8baa794407e4c40ac0ead08
|
|
| MD5 |
2f9cb5e790f32f3db4dca1789d1f55a8
|
|
| BLAKE2b-256 |
2d440ef556304ee23554c44cc067bc5fc2a5265550ef34d6c10e4706b35c5361
|
File details
Details for the file hydraters-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: hydraters-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 272.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16d8036472ae3327910e8c158e1d22391287709d28e898a4e9c4b126fbd57199
|
|
| MD5 |
c8a177800d38b28d6ad73afa1ffa73a9
|
|
| BLAKE2b-256 |
27bd92da5f37e86a58f4e9f1a997196626c3613f931ca2ae39d7db7a423820e8
|
File details
Details for the file hydraters-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: hydraters-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 388.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98032d0c19bf77e499453fd02658a5e018d54f8e1428af6235dc6bf7f547fafb
|
|
| MD5 |
6af05f002d9593b03b345a7af60fe3bf
|
|
| BLAKE2b-256 |
ceb789049f1ecb1f16a6c8a3b257f7aabadb4d2816c64eef67d4dc985ed4e9d5
|
File details
Details for the file hydraters-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: hydraters-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 252.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cb06f3a05c4985c0f5f5538bd40d6f5da0da675ecdc1ccddfa50a4fdc98864a
|
|
| MD5 |
25c5b4cf88eb303d501fe7c4b5376d46
|
|
| BLAKE2b-256 |
b8a460707b41fae7b1159b60dc7957b9a667c221938912eeeaadb9b3d99cd506
|
File details
Details for the file hydraters-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: hydraters-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 244.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06b8ed46531075981d22839552ce7d41b2594e92a7f50239ab06872efb86e02f
|
|
| MD5 |
40d8ac192a76383120448f90b2eab611
|
|
| BLAKE2b-256 |
01711256f055c7d2ffb14b107303265609640c293416454218984800d9ccb67e
|
File details
Details for the file hydraters-0.1.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: hydraters-0.1.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 263.7 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2335aaf644651a1ffce683196781d963ca5c66dafe36705dd5181fcc6a35151c
|
|
| MD5 |
e61f592906dc120d22365fe260e45914
|
|
| BLAKE2b-256 |
4a0d98eed4bf963c398374ee76211dc2b1cec44d8c6b87e26ed3eecb7fa4fed8
|
File details
Details for the file hydraters-0.1.3-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 109.2 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0475e847adad810228f544da7b5e3ae9ab5c49e91f6fe37d39e47ac5e847a426
|
|
| MD5 |
7f4d7c0e3c4def913d2a09739da94bc8
|
|
| BLAKE2b-256 |
08780ab4d10a51f512fa607501b67b1db53389465457b65cd275891537aebb7c
|
File details
Details for the file hydraters-0.1.3-cp314-cp314-win32.whl.
File metadata
- Download URL: hydraters-0.1.3-cp314-cp314-win32.whl
- Upload date:
- Size: 104.2 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be4492c6ed1d96cfa2cbc76b8e63163b878c51165c53712033906fb4539fd63a
|
|
| MD5 |
a3b09eba455a479a80456e1b053d05e2
|
|
| BLAKE2b-256 |
9e37c894a1e3cc2c19ac92d401957d703a620f726d2bab32c376c05c5ce3c75a
|
File details
Details for the file hydraters-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 246.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab670257e094d42e7cee1886109ea5af8ccb40eb4a3e8fc574550cad864276c2
|
|
| MD5 |
467a18584dee6eb464d727d9a4c88d58
|
|
| BLAKE2b-256 |
4a656f775dd489fb85d5c2dbb9f50f7570130753b6a66b0263e9bc5dc0e42246
|
File details
Details for the file hydraters-0.1.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: hydraters-0.1.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 257.9 kB
- Tags: CPython 3.14, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ed6a9760a7c5dd9323b354d26fc93b7819257f072300897efd37b518babbb9b
|
|
| MD5 |
e9f8e08ff061465f0e03542fd918e311
|
|
| BLAKE2b-256 |
73c10f2adcb91f0066b2ddcb59922adb2423a6b54d99d8c9169fea3f246e3082
|
File details
Details for the file hydraters-0.1.3-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 212.8 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
015770cba7cee9899f15fafc9486b77293c65dfd091da167d529546c8f2a4eee
|
|
| MD5 |
d952c27b2cd7d87f471ee2a93b15c78c
|
|
| BLAKE2b-256 |
6018f5df44b3883295c342f8ba8bb7478ce36bd8de0513bc5c9d2aafa517dd88
|
File details
Details for the file hydraters-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 408.7 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e4add7c611aae45e17eebda71f5d5d918dbb5515f4cbf33a3e8635a915f9b94
|
|
| MD5 |
ab9c840b204183caa7840dd0b113b649
|
|
| BLAKE2b-256 |
ce53558519cd9b2888ef2859bef96d7338930377f3f629ec0f3b4df242083ec7
|
File details
Details for the file hydraters-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: hydraters-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 437.1 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a96e9b0a3be6ec2064f8556406fc4f225237fcaed1c118837a0ac9be2e62692
|
|
| MD5 |
c43e42d2eab112f44191db40a2919c3e
|
|
| BLAKE2b-256 |
ca275c9bcebf946842d8289f1591407b3a1387541eb220cf27c9b32378037f03
|
File details
Details for the file hydraters-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: hydraters-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 511.2 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0249bcfbdfca7bd41103bb162c3f51af200d430ff3203f9dced35c62ec5ecc72
|
|
| MD5 |
1eb0d60210885d50b04dce9b91a44e9a
|
|
| BLAKE2b-256 |
b1cc87033e41f13fd4bdc003248a6fe65e880c406581605de7d2234c15a0317b
|
File details
Details for the file hydraters-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 418.6 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8bfd5ee925e525861c4513afd4aaa56455ca5f9f3daf458846de4888860bfe8c
|
|
| MD5 |
9de421a491a89c05009bd8c7c2f55f2e
|
|
| BLAKE2b-256 |
a24f65f95fdf6c6939f131f7e903606792ecefc64700476819cf0c23dcc48e86
|
File details
Details for the file hydraters-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: hydraters-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 268.2 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2072dbf3165ef6d6a5ecdb7161207358926679b74d8aa285f151974879f0ad5a
|
|
| MD5 |
7518383cd10bbea79a71517b9e473539
|
|
| BLAKE2b-256 |
801e1c4877c9b15c9a9f9ba8242af1b1dc3fb644711b8a58e03e63872eecbee5
|
File details
Details for the file hydraters-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: hydraters-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 384.9 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff1d32b5bf5cf60e52bd72a74410745d79b2acde43394dbcc707084171bd6ba8
|
|
| MD5 |
4f9068fd55d69ff8fb3c3c070bd395e5
|
|
| BLAKE2b-256 |
20207d4fbea5d9a299ee88b5e708ba5d6fa0fa949093249996f8ee7d8bc0242f
|
File details
Details for the file hydraters-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: hydraters-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 247.5 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88dbaf32a311ae1b6249f67e6c56f7d9078cb1c9ffdb3e4e4b5aec04dfb0bc22
|
|
| MD5 |
6592ab42c5dc45a51d3bdac40bd8da34
|
|
| BLAKE2b-256 |
36e56fa3f1a62efd9dbb75faa1ba621945573e5a48bfff35294a8ccea91913a0
|
File details
Details for the file hydraters-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 238.1 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f3d1b0cbea0d935a55d139617956feaf433e68d229239b0e2cdc22e6566d891
|
|
| MD5 |
ac29025a2b206ba82944e99de4a00489
|
|
| BLAKE2b-256 |
de5eae2465a2b3043eef9ca306c9542d858ef74c3124f79060edf21343eac922
|
File details
Details for the file hydraters-0.1.3-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 109.1 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a718e570a390cc1fd625be039c4fb1979c8236e5996ccb1272c95659f0eca246
|
|
| MD5 |
763c424739dd598cb0fe8262b02eaa53
|
|
| BLAKE2b-256 |
f558d69abce2ecc0547297f0b6952c16a587ef26be8a00fa7ea7638e283dc4f8
|
File details
Details for the file hydraters-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 409.5 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4d3ab310279af941831a50efad346b5cffcb688aa0644477eea92a724c830ee
|
|
| MD5 |
a8d74d8634bb6a25e5868b9b61e750e4
|
|
| BLAKE2b-256 |
bb24250943a5013e064d7fc3f9939c6b25281abfe2cfddbdfb7121ff394524b2
|
File details
Details for the file hydraters-0.1.3-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: hydraters-0.1.3-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 437.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b4c12c7cd8a582decf6a6f57fe85e75eb1046e28a48075995dcefcca11cf009
|
|
| MD5 |
65f85be3cc58a066e7df95f58b9484b1
|
|
| BLAKE2b-256 |
ecc839899df4da19ed2c01bd4aa0f2f58ecc107335430654c13a9910efbd8692
|
File details
Details for the file hydraters-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: hydraters-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 512.7 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8620a3493dfafb9317cda7f6c8ce9eb80d53bcd59feef79228c2e1590f5b3bd6
|
|
| MD5 |
adeb10d03ed42a10c451a99b4651d8d8
|
|
| BLAKE2b-256 |
b66a6b91766e312f17ab9b2bc0d353f9fd272e7e9cd489c9f86027275a195caf
|
File details
Details for the file hydraters-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 420.1 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea025d64fa30b9e8b716d8b810f5eed8056f136d34016677da085da3d62835ec
|
|
| MD5 |
ea5f965e2e50d3d63fbfe63b7d6440dc
|
|
| BLAKE2b-256 |
9ca63f9e8e5c4459cfcb2fd949030df3b119345d544e45aa4a24ffba0e0823d5
|
File details
Details for the file hydraters-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 247.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
256b51fcffe2473ee0a16117e5e8660278d38cfa4a607276241bfcccb6510cd6
|
|
| MD5 |
5d619843dd308670361677bce6f26dad
|
|
| BLAKE2b-256 |
32e56c38922814f31ba24a904cc52acbc98f200803f817e9a00dc8557d282908
|
File details
Details for the file hydraters-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: hydraters-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 269.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18f3ecb740a638f4ac80524e59cc53e07aac6251665faefb47345c93a47c0717
|
|
| MD5 |
7f188ab0ad8399050b4da9028d45b835
|
|
| BLAKE2b-256 |
ed435c0aabb8e5ec3a53cc723853aef484a5a8e8e8992f65d80725598839759c
|
File details
Details for the file hydraters-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: hydraters-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 383.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8dbba2b794a071670a46a5ab69c812eabaddc058fc7ea23530a2c88a22dba3a9
|
|
| MD5 |
fda75d9492125cfb3e04237b7928883d
|
|
| BLAKE2b-256 |
50b4494deced877176c77f9155539f1826a1c1b785a1610072fb5dc0cb8c14ff
|
File details
Details for the file hydraters-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: hydraters-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 248.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dee4b03c4586dc735279bbeb6410dbfd75e61b650f40afb6edd80cd5c6d375e8
|
|
| MD5 |
4967994acdb66559880f8ab5e4e606ea
|
|
| BLAKE2b-256 |
efeb48af59c0771a7552e87f4b583fa7e21afdcb17d903527b5f53e374bbebc0
|
File details
Details for the file hydraters-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 239.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79e8c5c366c3aac6c412f3ff081cfe2f791f84c2d0a60bdc6fc7c786b3cd07c3
|
|
| MD5 |
4b15c6aaeeb8192df7e54609cdd5bb55
|
|
| BLAKE2b-256 |
a860526afd05c96cb91ac90c6603a64e3461e38cb3edf5c7768a7b61ac38d3c1
|
File details
Details for the file hydraters-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: hydraters-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 258.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01af0bec141c86bed5662c57c2029912411b17d0608390e36b8c1f6991662842
|
|
| MD5 |
85f27918485bce333039a052d1b095ed
|
|
| BLAKE2b-256 |
0bd6b296999fc6f9b4bbe55c9bb3dfb614ae53291ca0327a174a9c898f27c629
|
File details
Details for the file hydraters-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 213.5 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
397d9a9e41d81012a85ae0325b1ad52c66bf6099e231ad63ce1db2c304b0d8a1
|
|
| MD5 |
df3f85dcce7756494d7f045347fd8c3d
|
|
| BLAKE2b-256 |
59dad25b72c7982e796a444e15fa55c1ebe8c2821eb0207658ae28c4109c6c04
|
File details
Details for the file hydraters-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 220.4 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
210fb5095e4a43473c46095f4e56e847f6829b1aabf57bea4656f16030b4815b
|
|
| MD5 |
1b5b6cd8fca0f846f74772748726e383
|
|
| BLAKE2b-256 |
de132e1bac20baea51a9cf570d834ec212617bc90e146a05d6410d56239d5261
|
File details
Details for the file hydraters-0.1.3-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 109.4 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44614e67823ddf40f5599e3b83f863c535dbc817c4d7dd125f2d7e0cbb104178
|
|
| MD5 |
2b8bcc4f265510ffb798d812f0b9fa71
|
|
| BLAKE2b-256 |
05e2b915dcf4b27fdcd04c4bf7214fd40f0fee113f8ba6390a6009f68d9e369b
|
File details
Details for the file hydraters-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 409.6 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9dbedfd0ef43811c49c7fe530e74a6c3e16116bd233ce35ee4243835fb807f4c
|
|
| MD5 |
aec85e6ea13958a06befac4e862350c9
|
|
| BLAKE2b-256 |
482a323c7a0d2e4b79dcd6a0bd5a1df06ad7d4a1dcacad17a96c6ef38675a9ff
|
File details
Details for the file hydraters-0.1.3-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: hydraters-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 438.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5beb9d7639b873f7f2afe562fdd2934d864f99a56f007d31b11bad9c32bae9f
|
|
| MD5 |
f74b1955206e89e4401e67aac93b0f4f
|
|
| BLAKE2b-256 |
5ecb376061358062a607b97111fdf87774b42d87025785f971b219707c849845
|
File details
Details for the file hydraters-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: hydraters-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 512.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d28daf0c040ac8a9d03cf04b5ef2f9f65d286340dcecc1c9c9e1f7cdb0ef63e0
|
|
| MD5 |
b1e796ff12d6f5b8bbea55d3f4739f65
|
|
| BLAKE2b-256 |
445f63069d1f431a8df0dedff63d55ff0c67dc7157982dbee05b5faac2696996
|
File details
Details for the file hydraters-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 420.3 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f84e967631033102bfabd4d36c75eeba145b667a1593f11fcdd0e042c45075c2
|
|
| MD5 |
47c3edbd338ec970238945b99be372e6
|
|
| BLAKE2b-256 |
a09f9ee6ac36e71f4b323ed3f9b3cb47d687b34fdfb97b54fab98111dc985d91
|
File details
Details for the file hydraters-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 247.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
908e390c4c9acf197993c403836d66e27c23baf6cdd7ec8ac1334e657b0144bc
|
|
| MD5 |
662fc56127985853de0d607b3f6dc16d
|
|
| BLAKE2b-256 |
1db2dc5d3d66c94129b8cbbb53bbc210090ef721eecd7f67f861286204a29ede
|
File details
Details for the file hydraters-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: hydraters-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 269.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fa47f4be90d4712ecdf3dfed8161d9e874f8ea8dcf56dae40dca458d1ffd972
|
|
| MD5 |
f30be33cabbd3d9e9dd6ccaf845a123c
|
|
| BLAKE2b-256 |
8b931c669ced9ad0cf9b9df30d1a73fa542cb7fcaf9d66e08467a97944d98a65
|
File details
Details for the file hydraters-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: hydraters-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 384.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f92f661ed47e9e26ecfb94f52afc7712e3f62705f36ce6e68c4d2acc8586c08
|
|
| MD5 |
5d585de25e10a3ee7927dedbabb932aa
|
|
| BLAKE2b-256 |
535662f79e65e84a49d5d46f1d858f01e33e13352151e6eeb610cb5d22442382
|
File details
Details for the file hydraters-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: hydraters-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 249.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16b97157193236232b620ddbfae8cd1f01c85b3162792c879d79b3e38124606b
|
|
| MD5 |
66e7cc50326ce00cd9934eeecbab8a27
|
|
| BLAKE2b-256 |
aad3c153ddac7d4682f64c85fa19b233819730870753ee40016d4ec8f9f30157
|
File details
Details for the file hydraters-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 239.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08207aabf3023f6be2709f8cdc6c13e2597c38c4116acca1dbf5fb49898da45d
|
|
| MD5 |
e962bdde09ebb16df17322b7f4ac0a7d
|
|
| BLAKE2b-256 |
1a7fa153ca7847072ad68631715d853c3726d4ddbd51f1b6c8593abadcf5b420
|
File details
Details for the file hydraters-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: hydraters-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 258.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4cd7dc42df7ac0875acfa852900f74fa1a28d22e413d4c62f9f22a2055f8edd9
|
|
| MD5 |
12efcd0a62fa50741c2a9defa5db5d1a
|
|
| BLAKE2b-256 |
dd1997574bf14990e9ae3775ee50f29c53d869a0d3e7986df4461938c1530bb4
|
File details
Details for the file hydraters-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 213.8 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97743c9102f522441489fe50ab91b986508d6d08c782adcdb48b755fa6fb85bd
|
|
| MD5 |
ff2704e18db185e2a1e4ba0b742e318e
|
|
| BLAKE2b-256 |
160713e6361f61a24eae6e7531264312ca1bb1008cb4a4e077fcb3bc62c97817
|
File details
Details for the file hydraters-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 220.8 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36e12d7d425076be040914f40b69109e451473fd809f827eee6c4122adb26640
|
|
| MD5 |
a17a607597bc01ca9ccbca149e675ffb
|
|
| BLAKE2b-256 |
77f5c065a89387259e8f284a85f417e22e1bdda45dc081a54da4cf24b95e1213
|
File details
Details for the file hydraters-0.1.3-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 110.5 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b29cc55d481cfb0179376341c3de3d0292fed0da6e83e3e7879e7965f8e5f0b
|
|
| MD5 |
6eb3801c6e1c5bdaa9211bf55129a4dd
|
|
| BLAKE2b-256 |
a042f20664cf0e57c1c45a08f2e1c85af90bcec9c3f17dc44107ed047b6f7cda
|
File details
Details for the file hydraters-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 411.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
469ed42013a8abff2ebbcb39ea3c79afc1e27dc54bc3c9f2c03214e626d9130e
|
|
| MD5 |
b83a969942cd2fe2144893a3b00f47e1
|
|
| BLAKE2b-256 |
5853613b8f40b7400b9f97efe016b43fb3ed05d878c84fbd8e3399284d1eb0bb
|
File details
Details for the file hydraters-0.1.3-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: hydraters-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 440.9 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eff3ef15fa966f5b0de31aa971edd28939679d860654955ed5e5bf52153bfeaf
|
|
| MD5 |
c4e9a010d3cafc1856ff0f53d3f4818a
|
|
| BLAKE2b-256 |
11d2137d16217df60abc33f040250a52df20729605dccf79d59255ebba26af10
|
File details
Details for the file hydraters-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: hydraters-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 514.5 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13d330d4cf639436a275a9cde5fb2ed6071b903df11f40b3906047e5f8fa1197
|
|
| MD5 |
c98a62ebc02154412edfe9676c07d00d
|
|
| BLAKE2b-256 |
ec57391a78e6a7ac4e2dca9518da0ea6abf1342e6a6c1e63c2407b09e001f9c0
|
File details
Details for the file hydraters-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 422.1 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8b1cf05f8f25e30e1241801e705429622c5b62774d2e80db1d2ffaaaae535bc
|
|
| MD5 |
adf11025afaec7000238292921489947
|
|
| BLAKE2b-256 |
a0a2a62a6432cefa92f0122bf1d99bb6d90bc624e99593bc33b90e89aec8ac68
|
File details
Details for the file hydraters-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 249.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
291cf3ee2eb2e1b25772c604cbd29e9c9056c394a5ee982773b34397b6427682
|
|
| MD5 |
7682784bcc09a2d2ddf1af73b4025601
|
|
| BLAKE2b-256 |
37c9ccfd48bc7d49b5d21732dc1029afafeb010b2701ff122c6fd026656b45a1
|
File details
Details for the file hydraters-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: hydraters-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 270.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d42a2215252bac034a1bb2688912f1dea81882a6e5bd7022fb92c0517d5f5521
|
|
| MD5 |
7397e578142f337386e511566165c79e
|
|
| BLAKE2b-256 |
7bfebf113f0bc6f3cca86a3dd210034583d7175b57b7acba5c2859a96f176028
|
File details
Details for the file hydraters-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: hydraters-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 385.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2726ba54d2b663aa84a57541a947779f7f22462921a53f1528c32a1b1515e4e6
|
|
| MD5 |
6528e371042a442d96d6203d8c80dce9
|
|
| BLAKE2b-256 |
b14ffaf7b08459ce5c8e5111adef4e54f46d6dc0d8462b6b705c443872986d6e
|
File details
Details for the file hydraters-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: hydraters-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 250.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ff7173341883afa3b05343a5a6262cbf0dc161ed45639f3023616c075ba240c
|
|
| MD5 |
c9d81280cda510a6f82482b121f5fcdf
|
|
| BLAKE2b-256 |
a2ac13aa08d9d89cf372a3ab627aa9c83b51eef16039bf2d22e1712829f766e0
|
File details
Details for the file hydraters-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 241.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3930243de7d5d4b25cdbff72a67e18cfc28b380a8ae17007a10454cef7e43ef2
|
|
| MD5 |
428b3de7cdaa9951d0403efdc45ab8e3
|
|
| BLAKE2b-256 |
d7d9a084be23bd6a11bd4cf80b0e4de519878f64054a40e43be432c1e8b3a525
|
File details
Details for the file hydraters-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: hydraters-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 261.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b12b0d6eafd55b76bd32eb5183fd7712ef88237b75b04c114c84e7c081a8c938
|
|
| MD5 |
c40eb1efa6a45e3ecd448bff98cc1b4b
|
|
| BLAKE2b-256 |
2c0ce14495966c364f8ff14953bfd3bbf5eef9f07297e35c6324814284aeb0e5
|
File details
Details for the file hydraters-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 215.2 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3b02d8c839d7088cb396824423a1647cc476eff8006613ccc3162e27a5c51cd
|
|
| MD5 |
0dc9b69bf2cd366a13e09292a944459a
|
|
| BLAKE2b-256 |
2c6bfaadf3363a143d0035f5c3b59082261a85e408f08836767f90b007e15ede
|
File details
Details for the file hydraters-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 222.1 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d63f1b9c017d659e4ee98410914903a6976acacb7a82560eaf6757a60cac6f3a
|
|
| MD5 |
1090804e176cb910c3b8d8d39b8bac71
|
|
| BLAKE2b-256 |
8581b97d6bf098049619f4e3b0a6d682ffb267fb39899a2ea6b7c6bb3d4ce5e1
|
File details
Details for the file hydraters-0.1.3-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 110.3 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
750f7ac0e12f55a65b703287246addd2a5b85852e41dd0151540a91410a291c6
|
|
| MD5 |
0a9551d3e822b9388469c0d7f9288f79
|
|
| BLAKE2b-256 |
a4ab16186cd81c80d71ff631367eb2478eb25471e4368170f7d226e18da9c217
|
File details
Details for the file hydraters-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 411.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c49f6c5ebb41d030c021ef5c9995435215a276ee6c4a20a53101cdddd2e4b0e4
|
|
| MD5 |
6f475ab54723b5897e1670f1e3b7a760
|
|
| BLAKE2b-256 |
fceadc91474cfc9cab429387de4a51c4e1723423d0eb3efe1c3609468a4e79b9
|
File details
Details for the file hydraters-0.1.3-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: hydraters-0.1.3-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 440.5 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29a88b5b3f14be02864f9c1ba20f5486bb455dff080c4c08fb1c2773cb9176c4
|
|
| MD5 |
cd8b036838b584bc3f310d90ee675b89
|
|
| BLAKE2b-256 |
9ad3b7d71695a1d33a249a691791da4a0330da38db3f4e65dd543b3dd88aface
|
File details
Details for the file hydraters-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: hydraters-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 514.5 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c98dd062e8c7f5553eb9ce8e3ce44f1299bd22af94da84cf19db47b11140f1cc
|
|
| MD5 |
81f1836e51b71f000270bd796ccdda0c
|
|
| BLAKE2b-256 |
a93457177108ad671171e9322aeb5b906eca544470d31c27a588cc67a4ca08dd
|
File details
Details for the file hydraters-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 422.0 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aea05d1321294a9ffb12412d6d387bdaa2eb7ccdef4428c8304dcef8e6b9f62d
|
|
| MD5 |
b40395f5ab1d686bafc23b1967f402fb
|
|
| BLAKE2b-256 |
880a7f75abab7d56c4675380bc447d1d7c822e1f6f8b5ea55a0f2174de8a222e
|
File details
Details for the file hydraters-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 249.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b63a18290fb0a9cb309f4d03544c29231cf0bbe4dc2e1e0db4f85785725e9ce3
|
|
| MD5 |
aee7d27f3f01ea84f5c5993b03bf4bfe
|
|
| BLAKE2b-256 |
0b764c873c86a5afb7df3c8685356f11b2b806aeb04d6a486755e5027637cd54
|
File details
Details for the file hydraters-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: hydraters-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 270.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9db1c760d3e43588b55d9c4e11c4ae511dde731c34ccf5ae3dd11755342260d
|
|
| MD5 |
1d104983344194722c792b20e4a88a0a
|
|
| BLAKE2b-256 |
886d65e49a7bb97105d2c3ccafed68b5556677e3db779ab0001159c5fc43af2c
|
File details
Details for the file hydraters-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: hydraters-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 385.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cedb4f883f354f12811332461bd46e22c28f9f373acb11c0187d497b8d4d2742
|
|
| MD5 |
6362e8f5568800c39e5e8fc5dd472b9c
|
|
| BLAKE2b-256 |
c30c09c4a11d98be0c5ba04707c46e41582b325253867010270f407594b55a05
|
File details
Details for the file hydraters-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: hydraters-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 251.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c47f6991d5b885ac8e8371e146eadaf6016871ebcf594414a2a279b0a2310fb
|
|
| MD5 |
176c86ec2efb56daaa75767420d16333
|
|
| BLAKE2b-256 |
04d790423c26ab52d80c5b91359619b2aeee0c9aaa74da6e2c18f0db3a5594c7
|
File details
Details for the file hydraters-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 241.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e372744e012f4c013cdfe2387bc05dd6ddf252e2c259ef4c67f4840b19c84ab1
|
|
| MD5 |
1bd7333382cde4d30de7bd4a28182390
|
|
| BLAKE2b-256 |
df347bab7898c0d4bb19b9b972825cd1320759140cbddf81eb256c2b7fcfbe7d
|
File details
Details for the file hydraters-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: hydraters-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 260.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65eb03533f745e1425f4406d50f26d4112e025edf296616ed348c0668ed5ad91
|
|
| MD5 |
0e9ed07c20dc2d6a904a480bb19312e8
|
|
| BLAKE2b-256 |
404820058a484e740fdf63c21a761e63d5b00efd2a662c1ae35efa716797fcd2
|
File details
Details for the file hydraters-0.1.3-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 110.2 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ce43e9e187f99d3999d78ba82dc8af481f1644b8c55784c911cc888b00220fb
|
|
| MD5 |
753bd2105ffbf4f7e1048287fec102be
|
|
| BLAKE2b-256 |
046166a4922b754133df34a6eb1ac6f2beafc85c008e55ac75be19dcd444009f
|
File details
Details for the file hydraters-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 411.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5fe14611b41ca38498a20e37ce695bc2e243663f1fddff4a8356e66963679e7
|
|
| MD5 |
bbaef7279659f6436324ec4804dae2a4
|
|
| BLAKE2b-256 |
5ae1b5ead0c5a5a86dd424180d8d06b3c269daaf5a4004d3f9e70bc6157cb015
|
File details
Details for the file hydraters-0.1.3-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: hydraters-0.1.3-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 440.4 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4307255a019faf6e1a4f91e0f6c4021407973649868f5e25562df3f860e49511
|
|
| MD5 |
fa079bafe0dbb2fd0ffd268254b5d344
|
|
| BLAKE2b-256 |
851da26907311d0ce43ce50dcc6c4e65d2d5e2d89ae60641b22ef9aa3deffabc
|
File details
Details for the file hydraters-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: hydraters-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 514.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2db8423c3f3f9029597cea99e583c5f18c6269bbc1d5ddd6054aaef26948edd9
|
|
| MD5 |
31e4c599a5d8365155e89fd2cee9875a
|
|
| BLAKE2b-256 |
9ca52cfa53c73e2b0b8313cdb4c0b66d84ee5b1d117793b0d429538c00609db3
|
File details
Details for the file hydraters-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 421.7 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3cdbfd07e27777bb4d76ada69bc22d82063c6fdaa272578de6034935eae82a72
|
|
| MD5 |
ca349ddb5e8349728266124a1758a974
|
|
| BLAKE2b-256 |
1dab360e8d761557dec1be48cbc9f9cd28cae2586e5b71439c4af1969c5dc1b1
|
File details
Details for the file hydraters-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 249.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
096816f4a05caa32f2d6041491eded624cf899a03fd11c90a5a9c4a771ad219a
|
|
| MD5 |
468983f788643a4d0eb022045464eaf2
|
|
| BLAKE2b-256 |
5b49ce68d1df662429d8a3013140e4e0412da3e73e28b079bf0e7f46b61badf5
|
File details
Details for the file hydraters-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: hydraters-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 269.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cb07613a4012956ffa5c6332be3cd2b7b131eadbf77bd53d5307e9b27b72286
|
|
| MD5 |
914fbe44f339932af49a68d797daa43a
|
|
| BLAKE2b-256 |
ca0448a2563e73750b4939e590151e947e3a4c1a2858b41f5e983fa1d33b81fd
|
File details
Details for the file hydraters-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: hydraters-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 385.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a49216b7e37b01ec2e4548af7501ce9a0f66ca56fbf50b75f146db8e64cfc33a
|
|
| MD5 |
019b10f7baa1f2a78dd4649aa1dbccf4
|
|
| BLAKE2b-256 |
8ac8a5912d2fe0cc0da66b4e5ed382799f901001f5c8ffb64bd270e8b406da5f
|
File details
Details for the file hydraters-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: hydraters-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 250.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
285f8cfee895cd435119be210d2268ccd0d8061e75e35004acbede35fdddd879
|
|
| MD5 |
98eeb62205a6579aad11b099b704ef90
|
|
| BLAKE2b-256 |
948aec394d20a5b99c86a3dfc3db29ae50d20555d8bd460140ac73085897ce14
|
File details
Details for the file hydraters-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: hydraters-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 241.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53faf84e6d10451579ec2b17a83ae059db4a6330d18a65ecfec54f0618a611a4
|
|
| MD5 |
fc5ca9c63493e9442c018d562b27971a
|
|
| BLAKE2b-256 |
420d98b14dba7cb8ea1b227ba0ec732cb5fcb5bc417f829e2b246fa6f64e76e2
|
File details
Details for the file hydraters-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: hydraters-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 260.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a725f9fb9d190c9dd9b93ce0876e9895b91b7e49679fe0c09570ea7d57d4100f
|
|
| MD5 |
36e94cbdf07139f450d4f2ec26071df9
|
|
| BLAKE2b-256 |
ef640d6afde7506656224a875a4115142f20d219d3429f93b6b488f4adec3bc0
|