Rust json path wrapper
Project description
Rust jsonpatch wrapper for testing purpose!
Example
import orjson as json
import rust_python_jsonpatch as rust_patch
from typing import Union
import jsonpatch
from jsonpatch import JsonPatch
import time
class RustPatch:
def __init__(self, org=None):
if org is None:
org = {}
self._org = rust_patch.JsonPatchManager(json.dumps(org).decode())
@property
def counter(self):
return self._org.get_counter()
def set(self, org):
self._org.set_original(json.dumps(org).decode())
@property
def data(self):
return json.loads(self._org.get_original())
def apply_patch(self, patch: Union[JsonPatch, object, str, bytes]):
if isinstance(patch, JsonPatch):
self._org.apply_patch(patch.to_string())
elif isinstance(patch, str):
self._org.apply_patch(patch)
elif isinstance(patch, bytes):
self._org.apply_patch(patch.decode())
else:
self._org.apply_patch(json.dumps(patch).decode())
org = {"foo": "bar"}
patch_manager = RustPatch(org)
temp = {"foo": "bar", "bar": "foo"}
patch = jsonpatch.make_patch(org, temp)
print(patch)
start = time.time()
patch_manager.apply_patch(patch)
print(time.time() - start)
print(patch_manager.data)
Performance Comparison for a 650KB JSON Object with a pure Python jsonpatch Implementation
Average multiple: 6.05 Rust: 3.25ms Python: 19.58ms Loop count: 300 Patch operations: 10 Average multiple: 6.48 Rust: 4.19ms Python: 26.73ms Loop count: 300 Patch operations: 20 Average multiple: 6.11 Rust: 3.25ms Python: 19.77ms Loop count: 300 Patch operations: 30
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 rust_python_jsonpatch-0.1.11.tar.gz.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec5da6057b492ddf7e9f3d07797e1b84660e9b1ecc481ac7473dc3683d1ebc17
|
|
| MD5 |
9fbd06c36de3f3853116a19f9ff96a95
|
|
| BLAKE2b-256 |
7b8597706ae6cd1938942caa7d440b9c6750ff106b0b00d57a94f6a643db2111
|
File details
Details for the file rust_python_jsonpatch-0.1.11-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75b5da4bfb141de1a455c697680b1e6e35d81a7ffcc716d033282ff40d439b44
|
|
| MD5 |
5122e3277748281d336eabc31ad1afa1
|
|
| BLAKE2b-256 |
bec71a82efa35abb48c16ed381c4d46b54111832258b2077132cfeaf9b32be25
|
File details
Details for the file rust_python_jsonpatch-0.1.11-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59c83d0935ab63a10349a4777dd6c61c633e6f64f362b470d478b5538b6a2735
|
|
| MD5 |
92a47503dc17ec5f78ebd53e33e91c65
|
|
| BLAKE2b-256 |
246ff4a6f524bfdffc62cfd921f1b45e3acf59625abeff22efca6bcd8b246295
|
File details
Details for the file rust_python_jsonpatch-0.1.11-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a92d8877e3f3a89942e632afbfef50354a68ef0f048c77079a2d81a20f92f0e7
|
|
| MD5 |
dd4e2b8bf04064ceca001b7e92cbd541
|
|
| BLAKE2b-256 |
e30590bf864c3f62ca8e82dbe2734a5dc26773770b378191e5cf6316166dd8d2
|
File details
Details for the file rust_python_jsonpatch-0.1.11-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f2953ff0344d46c484f00e44ecde53d02f03acd00fba8b88b0858e36e1681cc
|
|
| MD5 |
868077629c96705655147936093c6b9b
|
|
| BLAKE2b-256 |
a0c66d35d8540b87bf95d1116f182ec4d73277a9c81e09f19ce65203c7896f36
|
File details
Details for the file rust_python_jsonpatch-0.1.11-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0874b64843d805f4d5424ef711edb56f399fa2cf3ec0949d1c642055480e3db2
|
|
| MD5 |
261655d6b37a01e39ee422b8ac88b9f1
|
|
| BLAKE2b-256 |
a869bdfcd7ecfc2469e743204fa10377dfe17532290071e562ad2615d59bc9fb
|
File details
Details for the file rust_python_jsonpatch-0.1.11-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1a8dce023537dc493a4bc383552695a3a745c9f0c1dfac9513993ec64636481
|
|
| MD5 |
12396cb28766d4c904686837fee04e16
|
|
| BLAKE2b-256 |
69fb69a051f9681af375d5e0977885a5b6c93e5764a866e48a6651fdf19933de
|
File details
Details for the file rust_python_jsonpatch-0.1.11-pp39-pypy39_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-pp39-pypy39_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 339.4 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d34fe0e2b91e0746c4d9fb751fb654513a8957be45e4c1b571a48ca2db33ab44
|
|
| MD5 |
f76263f2b3c1046eeb43775e080a16c4
|
|
| BLAKE2b-256 |
13a36ec19e15875ece3019311b3008a3b84693c6f23554500709b27b7faf1c1d
|
File details
Details for the file rust_python_jsonpatch-0.1.11-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
- Upload date:
- Size: 346.7 kB
- Tags: PyPy, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47da48bdf4f4962a8a50a7a284fe0aa0cd478cd1c1eedb5ab53329f5e4f9f381
|
|
| MD5 |
69c90413d33b560a2756a89b9c187b1b
|
|
| BLAKE2b-256 |
a242da20ad1f18a4592468c1a060bc7ba0f63dc2a01a83be9215fa6eb54f0eab
|
File details
Details for the file rust_python_jsonpatch-0.1.11-pp39-pypy39_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-pp39-pypy39_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 685.6 kB
- Tags: PyPy, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5e34f3c707f0ac738b05b30f61a913d45fc113949ee97ae38727c6e88e41430
|
|
| MD5 |
99fa28bfd9222fcb415740748fc77904
|
|
| BLAKE2b-256 |
7c8d481176c203d48dc5fdae3fee7d436361296f6d0fe0f47ea7602837721499
|
File details
Details for the file rust_python_jsonpatch-0.1.11-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23a200f18efe87e05553c361661bd4d4932b2ac77a359ff60ad140de2b42c788
|
|
| MD5 |
545b114627dd0363c131b90f8512d40d
|
|
| BLAKE2b-256 |
d940d5649e24da9123f8e926c63b4abcd1bef90bb7370c6e846a381abbb0f75c
|
File details
Details for the file rust_python_jsonpatch-0.1.11-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
442db5d8ea96768509129df98c78eaa2cd413e84ae3bdd30a93ba8312c444c3f
|
|
| MD5 |
6715d831322baebf545adf93fcc042b1
|
|
| BLAKE2b-256 |
1846346110c73ac545fceb42ca2fcc63f1a5b8568326f4569053edd67fc05e9d
|
File details
Details for the file rust_python_jsonpatch-0.1.11-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fbedbd4c15d243bf329dc43283136ef1738338ff84539cefd43f4cbf49c0428e
|
|
| MD5 |
9c82aa048ae12813dfc291f6a8e225be
|
|
| BLAKE2b-256 |
5d840b9f9ef72b4ca58d3814634df113815e8b2eed8bea98966ab1faaeddedd2
|
File details
Details for the file rust_python_jsonpatch-0.1.11-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9978afb6489139aa4921fc5ed1b4e8227e69292003ee168f9191244b95bcac2
|
|
| MD5 |
cd20222bbf4934052f186058109d17d5
|
|
| BLAKE2b-256 |
aa5cb94f9f9568eb0199ee5145633e2bc6b4631eb233c35afc62c35a02e32535
|
File details
Details for the file rust_python_jsonpatch-0.1.11-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7fd7c25583f327b31d48beeb5dd5cb6dab3a33ff14f991ae31032a2e7139bb14
|
|
| MD5 |
f1b2c1f1795e16c1d42e9a62bfb3803d
|
|
| BLAKE2b-256 |
82a1f376de6ab07436b46b70224fbd9c40efb25fdab9d5cd1952d3cd47b8e0c4
|
File details
Details for the file rust_python_jsonpatch-0.1.11-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d286fc5f845e64e1790c46a7a27478ad5a7487e9222a589c8ca5f3188d2f2fc3
|
|
| MD5 |
242853664f6b77481a27450e480cbccb
|
|
| BLAKE2b-256 |
f1178f0e996ee76d7033ea325b7d531e5aa44a0d18b81cbf104a005363b0a63f
|
File details
Details for the file rust_python_jsonpatch-0.1.11-pp38-pypy38_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-pp38-pypy38_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 339.1 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a24c14f89c577f8f34a0b980d9bc25615ea1d01b02c56ce68255e80bc23bb290
|
|
| MD5 |
4c0f5731baf6ebcab52bceed256180c4
|
|
| BLAKE2b-256 |
2f23c38eb90160325fbcd6e51f7ff504b9fa60978157436604aaddb8d63910f3
|
File details
Details for the file rust_python_jsonpatch-0.1.11-pp38-pypy38_pp73-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
- Upload date:
- Size: 346.5 kB
- Tags: PyPy, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
425497f1bbe4fafd3cc84fdf45240fb1f7aefd595d49fca7e15485f2ac295e19
|
|
| MD5 |
09fb111783088e954dbf1e32a6f0272c
|
|
| BLAKE2b-256 |
3256c32a8d0b5347a67266dc010cd60fd8cb06e7755f36843545fc6bdb9fff64
|
File details
Details for the file rust_python_jsonpatch-0.1.11-pp38-pypy38_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-pp38-pypy38_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 685.1 kB
- Tags: PyPy, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e0b339c07cb08011bab1e7d775299751f7521a94d44c04496c599eeb4054b31
|
|
| MD5 |
d4f734b79a7287bb6c4646bb8364169d
|
|
| BLAKE2b-256 |
1297abfff1724fb3d7d9db073dacc7e6ad56c1972a63cfed57a084b63d12feea
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp312-none-win_amd64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp312-none-win_amd64.whl
- Upload date:
- Size: 226.2 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9d41264367c664322b8d96da107b3cda74da1f56fcb166867ef6f9b8cfc5afb
|
|
| MD5 |
59ec1cc1c710b4d663204a1eb7ecdee3
|
|
| BLAKE2b-256 |
1f2b223c1c79a975822c000df567a4350d49185ae4c0b5440d9e110c2b5c714d
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp312-none-win32.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp312-none-win32.whl
- Upload date:
- Size: 217.8 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
195cce143adcf70038e8c8d01fa225f5ffe26523ab17c8fbf7770ede526876a5
|
|
| MD5 |
0ef96c219d2f0bab30be4220d301c461
|
|
| BLAKE2b-256 |
32b24141f2592c07dfab81f90ae65d731286aee64d624d0b840bad7bc487e827
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f6f55ff318c197c2b78bfc5a3b87e77f0242d81c4ed2b726450320fff6e31b1
|
|
| MD5 |
2d58a8d9236d45f021750105fcb7efe9
|
|
| BLAKE2b-256 |
7a5a01dabd01738c272a4e66d2c7f6e79f6f7199fccc3857ad2404bf5fe862a0
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
545189c298a191b4f422ebcdc2b31ba7355af9288914a796cac3b739ac544ccd
|
|
| MD5 |
a535067eb5a416802544c2cf4ba9b198
|
|
| BLAKE2b-256 |
9b7ab3ab19a327465c402e9f8f93631f8527405ec809ab0737c1c4ca98ac532d
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21e192f3d16810168fde2887a1f3bccb3ae8b9ee6affa77d6a53a1d46ae3bd8a
|
|
| MD5 |
888d00297fe46017511d407075ee7918
|
|
| BLAKE2b-256 |
ca2176a8bdfdfb0942bee4472d3e7fdaaa479dace108f23a944315b317f2ec08
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec96bc3bdfe87aa19098f6bfd6f13178a74589e5c7f0188ccc8dbb82174e84be
|
|
| MD5 |
48e0d563ecbc4c2c516986e425a146ff
|
|
| BLAKE2b-256 |
0cf92396ed63dc5df333094b17104848584abf11768d78d8f3c1ad711ba6108b
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8289d452c6d0a506ab1d1f4555835042d87a48eaf73e93b7843acc5cd8a3f296
|
|
| MD5 |
70fef5a965f8f2b70c17a0347c5c683f
|
|
| BLAKE2b-256 |
02c75a476417b794d8b68fdfe0ea5b6e17a7ebcb003e285be79d1f9fac01f1c0
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a2284222bd7b979825115373e2c354c2f39a161fe062ab6480fdf72e665c784
|
|
| MD5 |
112261b3be771a6c6cd427110637fdf7
|
|
| BLAKE2b-256 |
70303d1e4d2734d4e60d6cf610c9d0406c764b7d587a49cf51c9303662af4d99
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
baace5001e2ad416251059a136af6413bec60d6a364a93044eaa89ee5b855ba1
|
|
| MD5 |
2b98d71c667d8b12e1bc518517e326be
|
|
| BLAKE2b-256 |
aaa83810b834955a3f8a5e2c2af5bbd90f9db9f0318ed3340304d2fd518a78c2
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d50ca80b248f76e5f4d39d73c36690558beafe62803c3080d24bfe3af1b6d9a
|
|
| MD5 |
f6d3b8fd9b641a2df5f472f1c4e3be9a
|
|
| BLAKE2b-256 |
e8d59447840581190bb01a944684e6d2d5ce8089fb9d8bb8b17482a40cc110f9
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0eca827965c89aee2ac84dbc9ad9664075cf6caf727b80c5aa4d0b5408e9a5a9
|
|
| MD5 |
da368395416f55ef67605baa8fd78e2c
|
|
| BLAKE2b-256 |
139cd17ad856e8b12450c58dc7e653afe32d2d9910d1d81a530f17b2458e44b1
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ef737c558655e53859d1559b9c036fea41b7c5f623a0db089114ac9aac4cc78
|
|
| MD5 |
a0216994a921ad01760fc00f76ef24ba
|
|
| BLAKE2b-256 |
757588524ab30bbf52890a22f9b25616edb2ec8574d973a41898eb9a4223a5e6
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 338.9 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc532aaa7c800644ceea2e9ecd0c45a488974a0b8ab88b29b8b21d2ea9495659
|
|
| MD5 |
ca547950f1b0e83f1c50d78da7304ed5
|
|
| BLAKE2b-256 |
cd00ec9b9a2e64adbc7a7da4e07a5a3c32e196fe85ad2ffaf07b8ea3c6d569cf
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 346.3 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
875d2b88dc5740a444ad1c80e6a5151a018a5e06956b4abe7491b5780042d1a2
|
|
| MD5 |
c31f9957b0964b5d1007854a9ee8cc8c
|
|
| BLAKE2b-256 |
12f56d9369b463486e68215310b0385d5530cc1374d0efa8f1f1aa5167bf57f0
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 684.6 kB
- Tags: CPython 3.12, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
906771113c3f2c8c6ea1965295ac6ba4cf0d501b4997aff5cd9e9d50eb3e51f5
|
|
| MD5 |
93141ba273078520926a7d4ebbc205ae
|
|
| BLAKE2b-256 |
d6b73e8b0bde03690b9f7dd80ec832f1aaf0cc801f52f61238f2191f3b0e5f0b
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp311-none-win_amd64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp311-none-win_amd64.whl
- Upload date:
- Size: 229.0 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a53dce3f6f2dcaa3c5a29459635933eef2b1af5ecfcd9f8a22efa079859e63a
|
|
| MD5 |
6b92089a33da94e450feb20307c82671
|
|
| BLAKE2b-256 |
63d8100a5386bd21fd764efa4e5405a97a5da2c981d3d9dcbf9c978c174b668e
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp311-none-win32.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp311-none-win32.whl
- Upload date:
- Size: 218.2 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b7c6be1e1a07d71b87cfb20d35f7ddc6454d66c50dc869dc09ef2b4086ebf48
|
|
| MD5 |
9cc81b5adc4cb074e27f6ccbbbcb5cb7
|
|
| BLAKE2b-256 |
abc034a96bf31dab0a7c8a3bf4f9cadb97a04baf3b3d8750ad761c3966d35e09
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87ffa88cd0da7400ef92ed43672b82c651d672629bbea2d2288c73d33bb7eaff
|
|
| MD5 |
88ba56949db0cb95b65cd6e716203618
|
|
| BLAKE2b-256 |
820afdb1930cb201adf1d66a9a8116abcb64a0bee962cfb22c2ddfd676418ccd
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15ca10a6e5efee4b19eea15afc17783640203e81fb2def613509c735b07af406
|
|
| MD5 |
bd5418235185b57704b6ad9f58ff265d
|
|
| BLAKE2b-256 |
e1078145f872d6f260bc9fa1f419dd7b4ee749a4e5e6f2a23ac8df44c208c052
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f568bdbd32c8834600044977d9bbf675b0db471c592796cf5ecf944f0b700717
|
|
| MD5 |
596a2b08c3943cb76642d36a52382f75
|
|
| BLAKE2b-256 |
0fdbb2a659ff8bb890cf57d499da4bb04a78b364b3e9f943640ce5c8d9523a06
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22ff692c75c3ff9f567bc9597daf8870c348c2da866d0c606bb3fca08e44afa4
|
|
| MD5 |
21e2df3943b3163325b49c62abd9f59d
|
|
| BLAKE2b-256 |
17b7681c9e28fcc4f413f62ce72d4e21318a9e10573faa65353bdb3e6afa5795
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0cc54814a4b9384334c639fb37a1202bf69921719fa06b039ce637c82d4c58ce
|
|
| MD5 |
3fc6c228296da2920ae56a5a21ec7d0a
|
|
| BLAKE2b-256 |
46097fb35c14814715da915af92a948f5f8dd598cd419851c2bb4630487847a6
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5bb830f5a721e2559726673ae5909d03be70a9e2263f1cdfd82e6082a4d08c34
|
|
| MD5 |
c80a3c96e408b608cd60f6cf3d4fb480
|
|
| BLAKE2b-256 |
5a2a9ecbcaf4751e1874992bb8d226bd957da48b02ad8ae41811f8cc396d40f5
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59f6a552c8532a0125604f612d28678e70bfb04cf1d5c5569443b442055e37eb
|
|
| MD5 |
74d04cf3610c19d88a783a502fa7b6ec
|
|
| BLAKE2b-256 |
9e329865a49f04f5e413de66c86b9c809746a33e7e40bf0704cf51d50a140cd6
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7cff30fd6e346ad8f3e60ebbe730e913ec4f4ff9cfb23fabb0373d1e1d685560
|
|
| MD5 |
003841ca9d711f3f4d0f8857367a048a
|
|
| BLAKE2b-256 |
2ab4695e816cc40ade9b595e2188424de2bcdf739884598b26a96de7ddd4cc94
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1b2d0767d2f3b5e895faaad2930478671a2cc17c9f19285589237ed5de3c367
|
|
| MD5 |
b683c9c2708368289f25438cc85d3754
|
|
| BLAKE2b-256 |
b5e1bb00f42b2b43d005d98a05ba14737e500059d0487a4a233a7886bd8dc8dd
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
399ecb573db79a81c5d677b2ce90e9778c36d512a9ecac4fb5933bb20da9a91d
|
|
| MD5 |
5d16cf18ab9fce070ab9a5778626bdb9
|
|
| BLAKE2b-256 |
4feb33962b930aee4e07448fb6490d97bb233a0eb3d697d58a20a7e12a26bed4
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 339.8 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37dd0213650796af84bddc7433be16a80664bfc3dae81b8320b416ee699fad94
|
|
| MD5 |
bdf1f3c3ec59a4e7d58dbefa01da4f67
|
|
| BLAKE2b-256 |
a58648d53b0c3d66267b2ca4927c5718b3f90f4f42975fb7efb4f7e7def15d78
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 346.9 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0467fe2c4c959d22233070f68561c76acfc5f7055c161ae56c38314f017073ad
|
|
| MD5 |
1125b876b5db9ae62bab2f843c2565dd
|
|
| BLAKE2b-256 |
ce7c279607ce14b5edbe7b049fa9739f4324dea16860ab27660c7ed7af874f53
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 686.3 kB
- Tags: CPython 3.11, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
758514fbe87ddb54801148e28860efe29dad460180b02abd153f7c395a406ec5
|
|
| MD5 |
37060416b5aba97bf5c1a53b904c1726
|
|
| BLAKE2b-256 |
de2c1bad7ad2b4349e288cd801ef0574ca2fdfc4df0eb126468d0914085446a9
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp310-none-win_amd64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp310-none-win_amd64.whl
- Upload date:
- Size: 229.1 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41afdb44dc4b76c17e063c887dbdb1236e201f31531e0d370f75b8896d45cab9
|
|
| MD5 |
c32de2fe0d169ab27d94dc4d4663da20
|
|
| BLAKE2b-256 |
24ddb599679e8678b800e98e2202d372fca297490091d204a84bd68fca9ef057
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp310-none-win32.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp310-none-win32.whl
- Upload date:
- Size: 218.2 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d2259c64c13595718b12d4c183efded6c03c5b77a97d2088add15f6cf9700df
|
|
| MD5 |
8bb29ae9d448a27366f2aad6e8a056be
|
|
| BLAKE2b-256 |
e3d6416c7d73d193233da69a4ee2c4616886dab587cc0ba727044de2d4f41cee
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e736c6d551a822102f98d0f87761eade254de65572f9c15b8f009feb8a01d18
|
|
| MD5 |
fce47f65c64852b2b63d8d170126d732
|
|
| BLAKE2b-256 |
8f1b69c0f945bda7c956715b28e9c5d1706d14b55b0da8a883460e2cab4c220d
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5ea1a062e3f585a57679ea053fb88ee96a213163f05710bcfcc83e062f23485
|
|
| MD5 |
1d7d327f24ef701d89ca46ddcec93696
|
|
| BLAKE2b-256 |
c5dcb78b00ebb55b618884e02f3a65340cedcba816bba734e4c05d71f78e991d
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4267ac287d1b69f998d4edf7f6647104693290c0f68fae4dd9e83852a16422a7
|
|
| MD5 |
356baa61751f0f2e016cc9abc1e1bde0
|
|
| BLAKE2b-256 |
12c9c975992f3a4dfd01b2c8e1c6aeba999743bd410850ecfe132ad99eb098f5
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6cabfb6f52a5fd1c68349ab3ab3ceb5b7cde6b71c07bace89e94c30d8405a281
|
|
| MD5 |
3f8bc8c1a27f5523a8d712e504781682
|
|
| BLAKE2b-256 |
b61bcc68f00daf1f61972224a9a944740b509ca32774170dc2044da7c63eb32a
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0aa396e5014269a7f8a1e1e3e96211df743c5ff4253714296f9722b3abd7ee60
|
|
| MD5 |
5d253e18aa3ff735228fb3eb43c87e29
|
|
| BLAKE2b-256 |
ecf454271002f5c5e76c0eae47ff6be4cba41a80ca5a4d88d493a32b27117dfd
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61e24039202179a34a767d8f3d8175a804aa3f87871d49d1ca9df7861fd426e0
|
|
| MD5 |
f641b54f6ead171ea6f50cb8042166ab
|
|
| BLAKE2b-256 |
5f2da78078676da4406939b46552c73d2f32079b98132de048ce6b43e0b1bd92
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04482dd512296de5c1a51b738052484395e3ed586a719359c41b2bca120ba638
|
|
| MD5 |
875b7fe6d460b5af6180ab94966e2abe
|
|
| BLAKE2b-256 |
c6cec0715ba433b445978f9138593ae2dde4da7e0199fbf58055f3642384b281
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d651f975b1d4972745a16eeb754d24e76f53aaa46a88fdc6b806a82433937e2f
|
|
| MD5 |
8bf09ddc8239e23a2d0d8823cbe54c48
|
|
| BLAKE2b-256 |
e7979c8dc19ebf754173e100efba0a06c943c4b35ecb1fc304209799aef3506d
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3284ee38ec470964074d65e01ad459cc04cba57693a97a8dca1392768b6e4a72
|
|
| MD5 |
b55bab6c6c732d20724ae60d667e6cb1
|
|
| BLAKE2b-256 |
ffac4deca1b6b42592c94694e43a2d24a1cb0cbbb8963363f4726db87955eccf
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aee6318eadeef16d37fdbb2cc90afda5aac5b48347fb675f543b0886ec761a7e
|
|
| MD5 |
10f986e1190b73f5ae154645dcc343e6
|
|
| BLAKE2b-256 |
0571b1fb775d8719c36f477dff2c315308d2615b105528a6a9c16754a747a362
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 340.4 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30a8d96e92124f5779ab0323470ba5290c4d14646800d7dcfb0aa93c75f9605e
|
|
| MD5 |
7a340eb46c0b7705229a5d6beab8589d
|
|
| BLAKE2b-256 |
b394ea77b8d2e27aaf179ae23ceaa147078a467fcb7a5ed22bdfe64b1d1b47c1
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 347.4 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc6902059dfe80a962248d60d574c0327d62766dd12602e907ff221e93f6cb07
|
|
| MD5 |
c6803a47668899f024f96d9d9ab61a45
|
|
| BLAKE2b-256 |
0760b4daae0f5a225067b816bd719a687b76cca7c104b32ce9946c26be5e7629
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 687.5 kB
- Tags: CPython 3.10, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6031ad86b8dc0b09bd9c4708d456b02257c47bdf3b92cb07de16665f9df46bd3
|
|
| MD5 |
9e84c289e3a24d4fc6a3dea2cd4f13ef
|
|
| BLAKE2b-256 |
e87c16422a551fc7bddcdc10828b85c543acc0a30a84696258f6c46aac4eef58
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp39-none-win_amd64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp39-none-win_amd64.whl
- Upload date:
- Size: 229.5 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbc90c0b9bc4d104769bb2ed3daf8eeaf351b7c739db88be15bf16165d696e18
|
|
| MD5 |
45edd3ff76155df670abe2c4e49d9577
|
|
| BLAKE2b-256 |
be2420797306679ff4b4eb56a62a73142fd329161f8c3bb2e02cedcdf6043d0c
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp39-none-win32.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp39-none-win32.whl
- Upload date:
- Size: 217.8 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
502adb49b35d22d8b42e363d689dbba24dd05e7fc760924294a6c7d91b78dc9d
|
|
| MD5 |
49f5ff0409ffdf411d2c2ff040ae7515
|
|
| BLAKE2b-256 |
e841278a8bf60d22130c74262116d6877507e0f75ec0691d0f8ec21d2784f098
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc6dac6956f2787b591d223a12e403298014df2574cf39720f1b78df5b23864d
|
|
| MD5 |
728c29296627170d74375b199d294229
|
|
| BLAKE2b-256 |
043c02135d50ab83b41bbbddbb2ad2904ef4db3857718002b16d3fc836e1d452
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b61cfaa346ff4c902b90a18a87cb706a3407198293066e452415a5cc90888a93
|
|
| MD5 |
e80c8bc1eb46030f201b9bfa333c39c3
|
|
| BLAKE2b-256 |
f47c21f12f0b2289dbeb6b9908b7e89a343abcce940a61bffca069850122cc1e
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d6859eb38f23053fe4669a98d2f78a27833c36437e0fbbf7df668e5f921cc01
|
|
| MD5 |
c981db3327a41779aad371e83afeadd8
|
|
| BLAKE2b-256 |
ab7713c7adb3d918b78f43ada6fdc5170ed9bf4afce8246bd7ee316f1e1d9362
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37a5df36d1ffd04653b72cb2355cdf54c01eeb081f31d2d2840f1bc6d997ae1d
|
|
| MD5 |
2fa72f529e21de032646dd3254ef9eff
|
|
| BLAKE2b-256 |
be8be278dde8266c01f97d5e8f398e4897f418d4c17577f317b7c46d7ed242d8
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a0cb7b74c5776796ad48b7c44f7b009bf39dd5810b74cee9275920624b3407a
|
|
| MD5 |
7c849682869eecab9d1a01b728d99677
|
|
| BLAKE2b-256 |
92664df925d69e9d3751932b05777a7f88fc65e70f0d5da165ebbd92cf148acc
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0750c86deac6b4ced9dd9c64a87073482a1a655043108c04a6966cd26e056ca4
|
|
| MD5 |
0d78928e4f472fc603018fdbd96e326a
|
|
| BLAKE2b-256 |
1ddbe8ecd73d66f7b3cdc8ee698e394ce32c4ba26c2523834631670209651cff
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52120ae3a7f1bd5e3447a9153928de6e8b5ac2e8b6ee00083e2379c7d42a5e6e
|
|
| MD5 |
4bf214dc138f850cb9159793a6df41f7
|
|
| BLAKE2b-256 |
f0f7cf0446480a51aeeaee8e1fc10896f25f00211ff64195d70e66ea9ff54feb
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c48e9883b2187304acd87aedbe655c1d56252c21be14974e52866fe3a09d9cc7
|
|
| MD5 |
8c5391284dd8e7fb4ad03214d4541193
|
|
| BLAKE2b-256 |
f2e786301d9805d8a97216b46b6edaa53a78b9af0c2155d4468256c4b0cb91d1
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a27c2b8e17fee22e7b2315f2d68b7cc41d91f1b54ef7d9375b17f08578b054df
|
|
| MD5 |
49dace552495f2aa23b5e66425f56937
|
|
| BLAKE2b-256 |
7bb0d116e8e579ff0d4288c4b90b56adfae38cf8466a8d71ca9cd731b2450689
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d403b20c1fcdc40cca25cc06f85fb76f509fe5f3a67589709571c3535f1b5eb1
|
|
| MD5 |
e4f48ef5ba19252f35ee569adfcd4efe
|
|
| BLAKE2b-256 |
a44c447ca16696894b848ba4d2bb6ee616327f58562a9b1780a6cad010018a63
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 340.8 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25a8ef2bb5e2c655127e88ca0e31d47560d283f8216e392bef7dd97caffe0725
|
|
| MD5 |
f4f6dc6a88a1e859c4500af639cefd11
|
|
| BLAKE2b-256 |
6278198cdabff9a0cc382437a14b3fae5be7f1058c4f136af2bbe20519d6d8c6
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp39-cp39-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 347.8 kB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9fb7b5c51557c187a9e4d227a14fc13b7eb73da495b0b80ab0b7841ae17c1412
|
|
| MD5 |
5b9c36080b9e79f36a38765ab3630977
|
|
| BLAKE2b-256 |
27b411252c3d9c60b266b33df0ea2c13944746cf4b2701ab8e74109ba23c25a2
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 688.3 kB
- Tags: CPython 3.9, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
822b8e24117cc26a52b9ee9740cbf1d4ce505e37c6ea3be937da181f83268887
|
|
| MD5 |
9e52772954e30e84b7a794d0d08edf23
|
|
| BLAKE2b-256 |
b4d97b5d5a7a87e7a5716dfa2d3c4bf5dfde601adad646b02d36cde1bd91a565
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp38-none-win32.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp38-none-win32.whl
- Upload date:
- Size: 218.0 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e66fd943b2915342c518af26fefec69b4a352bfc74013ad8ee5a684311dab5b6
|
|
| MD5 |
f9495bd75f58ac0f92d29de7a02a057e
|
|
| BLAKE2b-256 |
8bdc333f92d79bb73e286eb887f36bfc6ec86fd58e319dec524e4eb81e867375
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
daaf0fe55779349747564e7686cc87d45923960afb947fe1a7cb4a5701ea7e89
|
|
| MD5 |
b8b383c634a7e699f65847799e2309fd
|
|
| BLAKE2b-256 |
7ba2f8f70518ff80b585722c1a515646d8bb5806ee217c0444ced6a40e375f34
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9fc7cd3d835797e4dbc409415bd2d1ffb1c8c31a696c4f446c336d63f9cc5410
|
|
| MD5 |
a5652aa048832ebe94a6f4eeb8bd2ca5
|
|
| BLAKE2b-256 |
4e3467a01b5ed4dc6f79adc3308e3418363749040ba11eeb30c6afc5a924bedd
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89c69231986bd1429469243a1b49ef010d68a13f58c4d52195fd448b5ee93454
|
|
| MD5 |
8950a580bae0c7e75380516acef214e2
|
|
| BLAKE2b-256 |
1d96da4c02ccce8424f15996ca135491fc7b35ae52543c0172a74d936fbe7f67
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ce4a39a49fe0820b84fb8cf780a56b9b5ee4531474a0935b4d73cf40e25af9c
|
|
| MD5 |
bccf59459a26e73f518b90cfd0073196
|
|
| BLAKE2b-256 |
38ddb79deafbc78719fb0cff263b44eae7e81edee793ddca1ae97420d2a227d3
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c16dbc14eae7f7da8abb777579f9d0887b0f4a24c7092a194cc0e9b7b40b166b
|
|
| MD5 |
f93f29fda703089d0b09da1a51d99991
|
|
| BLAKE2b-256 |
1efbae3a316ffa29f9d9dd5ca774242b0033dfc712a6e5169b4e22dce2879f28
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
801a6e1918ce97c3b753f41749ec941583034f83c41d5ca7cdfb5c34aff2c601
|
|
| MD5 |
c9b8f30298d3b37af6eaf8c7620e47f1
|
|
| BLAKE2b-256 |
57ebcbc98404c116ef6a8d65e71b67921fd92ee5cd64f677dbccb6bab75cd8c4
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33ab6d3d0d06a720a24ec38226a87b020f2496b25df904f790e0cbef51403c6e
|
|
| MD5 |
3506a1ec19e31f9d5d9dc6c73fad94aa
|
|
| BLAKE2b-256 |
4d9e74ddbfa446f32da691933f23cb8b601adb165df659179fab71e84d1a000b
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6681c45b8c1642dbc6efb764549b071b2030aa3f340f345f9f4d0e9d5e89ac2
|
|
| MD5 |
66f98b6a84260222788571494e211f53
|
|
| BLAKE2b-256 |
58c4f02a2d461f4709e43b615aad50b1b6a7bcd8c86171be23956ac2293abf4a
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8450c4aa1361e423b877c74bf78d8537a3d2a804e0b34c4bc0d61f218bfc49ba
|
|
| MD5 |
298862cc419845c26edac324231c93c0
|
|
| BLAKE2b-256 |
0229e3315e14e883e6a1e38e2d42cd2290aca691523435ca592cfc9f5dd96596
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7800ff0d6992815de243633cf484c6f868b235e66d2980e857fa9baa9fefc352
|
|
| MD5 |
a1de44dd4cbde4110baaaab313b0d5dd
|
|
| BLAKE2b-256 |
c420f3538e76c773d14a63cf2aec5df9bf5dcc428378e3db9f39455231081574
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp38-cp38-macosx_11_0_arm64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 340.3 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43917baddb3022004b253dbec7b74d6dbf548df50a8286bd18aa45d7a5180171
|
|
| MD5 |
e191ce920a0e94e0a8042ded206e4e74
|
|
| BLAKE2b-256 |
22e3c4360b7501ca608565874c9d88095ce1847552e6d17b1c9b19e340636f68
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp38-cp38-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp38-cp38-macosx_10_12_x86_64.whl
- Upload date:
- Size: 347.7 kB
- Tags: CPython 3.8, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61681b69303b65ce60deb4db54ed6028055eb587af7b4c3188211201d98cb6ed
|
|
| MD5 |
337f9431093de02d367a0d94da2909b0
|
|
| BLAKE2b-256 |
5ac1629ea1c2f3a68c58830fe3c8eac6309b9757a2db697af7e512db00679bb5
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 687.7 kB
- Tags: CPython 3.8, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d03da3e1e8e0c4f201d08594fee31ddec724c0f2f999339d2ff7acd7eebeecd7
|
|
| MD5 |
f6052e0c3ad938a1f36a92537a330c2c
|
|
| BLAKE2b-256 |
49a0dfbc108765cb9400de91f9cecdf424d3386bd3bdfcb440441c022e795222
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp37-none-win32.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp37-none-win32.whl
- Upload date:
- Size: 217.7 kB
- Tags: CPython 3.7, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8bc4e4b6b84eec497849888c963f3b0404a5ddbb4d18ef54328aa7aa9682ac5
|
|
| MD5 |
529d72ee73bc74281c629951ae5c6555
|
|
| BLAKE2b-256 |
3583d8dfa41f4f8206bc09bfd91cb9a6610b98ff3c4d407b6121a7b640fec773
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp37-cp37m-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp37-cp37m-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.7m, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94201040896741dd034c0900068af92fb10fed907289e38b87ed43001d2ac42a
|
|
| MD5 |
928db7fb8a23991704e1b6931a5794f2
|
|
| BLAKE2b-256 |
ccf620050509906685f6245f999318880044dd4c7a850b8c2d06b67074d7c104
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp37-cp37m-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp37-cp37m-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.7m, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f6c0b3ea71d4d1591ce760dd215c4232d0a163d593b7c814c53e1252cd4aece
|
|
| MD5 |
ec6b509461cd279af83f4af37a52e424
|
|
| BLAKE2b-256 |
0fd84a7883d0940a95fd30802e36af38e0990ddcaefd95d857f7f6f4f8503d4c
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp37-cp37m-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp37-cp37m-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.7m, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ec4e24f36bc5735f021da71d66e19aa436142aece2b5ed79c1559487a723da0
|
|
| MD5 |
f3a810fe87bcf7e8b5650ee54b1d5071
|
|
| BLAKE2b-256 |
b0c6d612587721ec8e806f5d14765600a9a25bd39cd8174727e2525952079ad9
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp37-cp37m-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp37-cp37m-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.7m, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7371d0671038aaab4f8445513277f62dee11afab28870faf93d8cef1e87cf64
|
|
| MD5 |
eb2425f83097ea332a2805c7293f9665
|
|
| BLAKE2b-256 |
9235699bd3b1a69556197182c479c1dd9c517dde09d4323029d185d521af7375
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6088896feaf44ad2af5e190eec342d0e751f08e615c86c3ea97fc1e28bac019
|
|
| MD5 |
fabf8ad8dd6f7a7f7f4c00380a464483
|
|
| BLAKE2b-256 |
13129e35ac7827fdc5aceff2a7371a34bc647242d0d1b9c7f4dd08c0e09fe163
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e72824db182e3cc3a81bbcb5feeeca2e185ad4c31eac84a9c42ebaeeb5234b72
|
|
| MD5 |
707fc5c317a846c33d218b4dc1a7b5fa
|
|
| BLAKE2b-256 |
61abfce4766d0d5a30af66a3bbd40360cdac67b2e0a47519b35519b6b3aaee8d
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55b9e0ee6ecf5f55440abb557da17929683b53a1006309ba77226ee823dad784
|
|
| MD5 |
ce7fab1d82586f2b2f71460b96fc39c9
|
|
| BLAKE2b-256 |
d7935871298bb173ec77f5ccb69146790e2d2c5aec7f3cdf22a8f987125c6116
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0f9df219714c4c50ebaf9b453b3d5424e2d1b9f979de9b044f9d7ae9bd75378
|
|
| MD5 |
c4e3716b374c127cd83e61db08d173ed
|
|
| BLAKE2b-256 |
80a484861397cef55cdf5727bb49a838a6fbe8749f6fdbe72c36cec29177009f
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72efa26d20f2cd075061b4e3cb90bd66774a62c0e42a8c3b3819299a9d5593f0
|
|
| MD5 |
65962b7996c9c29241c88a1f8ca91762
|
|
| BLAKE2b-256 |
993b8688d7c6d11264d98500a3a0277faa30e896ffe7818510ba3ac6f2a5dfb0
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.7m, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9085c31f33ceda18d45a0e673863c650981f65ae0ff5dad94abfadd1ac2788b8
|
|
| MD5 |
02ce7deeeb4d44f8379cad9249b49a9b
|
|
| BLAKE2b-256 |
d7d3a27ae971f038cdc1e275a3cfb5ffc4b824e067943965aa8aac280a57f938
|
File details
Details for the file rust_python_jsonpatch-0.1.11-cp37-cp37m-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rust_python_jsonpatch-0.1.11-cp37-cp37m-macosx_10_12_x86_64.whl
- Upload date:
- Size: 347.7 kB
- Tags: CPython 3.7m, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3cc8acd7fc300fb3e77714c35e8ea4074f86c11844b5f2a8f5a6fc84bb76898
|
|
| MD5 |
228cc2c3881ebf7032204a62d1d0d096
|
|
| BLAKE2b-256 |
3ccace315ea9ba04f000eabb5e0a44da0688e0d48063495294823963641a97ca
|