A simple - yet quick - JSONPath implementation for querying JSON data.
Reason this release was yanked:
Broken compat with Python 3.10
Project description
simple_jsonpath
Installation
pip install simple_jsonpath
About
This module is a JSONPath RFC9535 - JSONPath: Query Expressions for JSON utility library that supports performing querying for data in a JSON document. It does NOT supporting modifying data in place.
Use
This module exposes a single simple type - a JsonPath which has two methods after instantiation.
- set_data(): sets the data that will be queried against. If multiple queries will be performed against a single piece of JSON data, this helps with the type conversion cost involved. This function can be called with providing new data whenever the inner data held is wished to be changed while retaining already complied paths (useful for querying multiple similarly structured documents).
- find(): given a path that is wished to be found in the previously set data, this function will perform the query logic. Mulitple calls to find() will query against the previously 'set' data.
- find_located(): given a path that is wished to be found in the previously set data, this function can return a list of LocatedNode objects. Each LocatedNode object will have attributes related to the path where the node was located as well as their corresponding data. This method is slower than find(), so should ideally only be used when path information for the found nodes is needed.
- child(): spawns a child instance of the JsonPath object that does not inherit its data, but maintains shared mutable access to the collection of compiled paths.
Child behavior
When the child() method is invoked, a child will be spawned from the current instance of the JsonPath object.
The child will not inherit the data from the parent, so a call to set_data() needa to be called on it for it to function.
It does however retain shared mutable access to the parent's collection of pre-parsed path objects which is shared across all spawned children.
This is useful for the pattern of:
-
Searching a document for a path query.
-
Then using those results returned as the basis of a new 'root element' for 'deeper' searches into a document.
Instead of assigning the query results to current instance, it can be beneficial to spawn a child for each result, and assign the result data to the child or multiple children if more than one query result was returned.
With this pattern the 'base' parent object will automatically contain all parsed paths for the document that were searched by any descendant instance spawned from it, and children will have access to updates to the 'base' instance that any of their siblings make.
Then the 'base' parent object can be efficiently used on the next similarly structured document as all previously complied queries against the document are retained.
Examples
'Find' Example
from simple_jsonpath import JsonPath
json_data = {
"address": {
"prefix-list": [
{
"prefix": "2001:db8::1/64",
"eui-64": [
None
]
}
],
"link-local-address": [
{
"address": "fe80::1",
"link-local": [
None
]
}
]
}
}
# Instantiates the primary class
finder = JsonPath()
# Sets the data that is desired to be queried against
finder.set_data(json_data)
# A path is provided to query against the 'set' data. The path is internally parsed > used to qeury against the 'set' dataset.
# Notice that this implementaion allows for escaping of specials characters shorthand path syntax with single or double quotes
results = finder.find("$.address.'prefix-list'[*].prefix")
for data in results:
# Access the found node.
print(f"{data}")
# 2001:db8::1/64
The inner implementation stores previously parsed 'paths'. This allows repeatedly used paths to bypass the parsing step invovled.
This is ideal for situations where multiple similar JSON documents will be searched in succession.
The same JsonPath object can then be reused with new data sets by calling set_data() on it again, and any previously parsed paths by the object will be retained.
Only when moving onto data of differing structure would it be potentially advisable to instantiate a new JsonPath object.
'Find Located' Example
from simple_jsonpath import JsonPath, LocatedNode
json_data = {
"items": [
{
"address": {
"prefix-list": [
{
"prefix": "2001:db8::1/64",
"eui-64": [
None
]
}
],
"link-local-address": [
{
"address": "fe80::1",
"link-local": [
None
]
}
]
}
},
{
"address": {
"prefix-list": [
{
"prefix": "2001:db8::1/64",
"eui-64": [
None
]
}
],
"link-local-address": [
{
"address": "fe80::1",
"link-local": [
None
]
}
]
}
}
]
}
# Instantiates the primary class
finder = JsonPath()
# Sets the data that is desired to be queried against
finder.set_data(json_data)
# Now we are interested in the path information where matches were found as well as the data
results: list[LocatedNode] = finder.find_located("$.items[*].address.'prefix-list'[*].prefix")
# Iterate through each found LocatedNode object
for data in results:
# Print the normalized full path where the node was found
print(f"{data.path}")
# $['items'][0]['address']['prefix-list'][0]['prefix']
# Print the normalized full path of the parent where the node was found
print(f"{data.parent_path}")
# $['items'][0]['address']['prefix-list'][0]
# Iterate over the components of the found path
# Returned elements will either be a 'str' for keys or 'int' for index values
print(f"{', '.join([str(component) for component in data.path])}")
# $, items, 0, adddress, prefix-list, 0, prefix
# Access the found node.
print(f"{data.node}")
# 2001:db8::1/64
'Child' Example
The child pattern can be useful for speeding up processing of multiple similarly structured documents to avoid overhead of parsing the same query strings many times. Children are independent objects from the 'base' instancee, and children can also spawn their own children.
from simple_jsonpath import JsonPath
json_data_1 = {
"items": [
{
"address": {
"prefix-list": [
{
"prefix": "2001:db8::1/64",
"eui-64": [
None
]
}
],
"link-local-address": [
{
"address": "fe80::1",
"link-local": [
None
]
}
]
}
},
{
"address": {
"prefix-list": [
{
"prefix": "2001:db8::1/64",
"eui-64": [
None
]
}
],
"link-local-address": [
{
"address": "fe80::1",
"link-local": [
None
]
}
]
}
}
]
}
json_data_2 = {
"items": [
{
"address": {
"prefix-list": [
{
"prefix": "2001:db8::2/64",
"eui-64": [
None
]
}
]
}
},
{
"address": {
"prefix-list": [
{
"prefix": "2001:db8::2/64",
"eui-64": [
None
]
}
]
}
}
]
}
def process_document(data, finder: JsonPath)
# The 'base' instance was instantiated outside of this fn below.
# Sets the data that is desired to be queried against
finder.set_data(json_data)
# Search for interested data. This pattern will be cached in the base instance, which will
# then be availble to all descendents of the base instance.
results: list[Any] = finder.find("$.items[*]")
# Iterate through each found result
for data in results:
# Spwn a child for each result
child = finder.child()
# Set the result data for the child
child.set_data(data)
# The first child that requests to find a pattern that has not yet been seen by the 'base' instance
# will parse the pattern and insert it into the 'base' instance's cache of compiled patterns.
#
# The 'base' instance now has the pre-compiled pattern should it need to search for it.
#
# All descendants of the 'base' instance now have access to the pre-compiled pattern to include
# the child that will be spawned on the next iteration of this loop which will allow it to
# process its own searches faster.
results = child.find("$.address.'prefix-list'[*]")
# .... further procesing....
all_documents = [json_data_1, json_data_2]
# create a single base JsonPath
finder = JsonPath()
for document in all_documents:
# For each document that will be processed known to be similar in structure > pass in the same 'base' instance.
#
# By the time it has processed the first document (depending on how deep either iteself, or its child instnaces were able to traverse the document)
# some/most/all of the possible paths that will need to be compiled have been. Which makes processing the next document in the series
# quicker.
process_document(document, finder)
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 simple_jsonpath-0.4.3.tar.gz.
File metadata
- Download URL: simple_jsonpath-0.4.3.tar.gz
- Upload date:
- Size: 19.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3569ce30ee07e1f6f3feb2d7c953282b392023036da268091992710e83cf98bc
|
|
| MD5 |
aa59dafb2e573c206849c47b036e67a0
|
|
| BLAKE2b-256 |
de9ed962a4ff9e35f71120b32124ed5ab0f8689efbc72ea8e84e1b2724cc3513
|
File details
Details for the file simple_jsonpath-0.4.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
056745908a05a970d129ddf4f1127c596d093c94929a7671fb632cf6287f341a
|
|
| MD5 |
65c57221d427308504c62a251e6f0b55
|
|
| BLAKE2b-256 |
7c98a648d9eca11b0f385059889c7fa3b77e18bf29b99e29c57979bb821a32d7
|
File details
Details for the file simple_jsonpath-0.4.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22903ca6bde030ee1c8df10c77b1380f7ee2811c26f81cc5af668c8703dbf41e
|
|
| MD5 |
8ee6002f595d22be4ecdf50136c38c65
|
|
| BLAKE2b-256 |
13bae2a7094fe1e4c3f6333b44535db9136f64133c5c073fe835060cc6ab8155
|
File details
Details for the file simple_jsonpath-0.4.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0709c536094f85392b1decf0baae299c9d3cf107ab99b860e2e2c43d0abe0628
|
|
| MD5 |
5f95c81328dbdac74d9df514613a3fe4
|
|
| BLAKE2b-256 |
822cf8318eac670103bf523bb7aefd9162657e6a12f929a85ff5d8744f9d1be1
|
File details
Details for the file simple_jsonpath-0.4.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
409157dfc28b48eeee24094cd1f8610bf15e09cfd5306e82ade9d4522538635c
|
|
| MD5 |
265b2d1eed94574181960e99944a6f1d
|
|
| BLAKE2b-256 |
dd92339097bfa45367e96eb272d0d0e8ec4ac18b23f77ac0aa0893609f40acc4
|
File details
Details for the file simple_jsonpath-0.4.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 933.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd3100df056330dc141a045439cbb0e684911ebc63519195b6211d114fcdb3d9
|
|
| MD5 |
350d393f3a87d7341a2c637e509ee758
|
|
| BLAKE2b-256 |
5e37244521dfa0ab8da9f57141264e1a96bf3206984f90769fee43b4503b5726
|
File details
Details for the file simple_jsonpath-0.4.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 968.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c705cd1d09f7ca9247ae1978434e0bc8cfe812bd378bc73e3f7369eef00267bb
|
|
| MD5 |
6d872b46b0a5ea48689bbd26139f2cae
|
|
| BLAKE2b-256 |
6c01374cf37d21e98b7bd0c1f6d5be0cf843c4fa80e900f4e1fea98621c9d211
|
File details
Details for the file simple_jsonpath-0.4.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 950.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89883142d6620990c323d4a9a97527046bdd3affd0d0c810b5038973e5d67fa5
|
|
| MD5 |
31fa9fd128a052603416dc73d66c3239
|
|
| BLAKE2b-256 |
1844782f5c7ca44a7de728667bb536876f0652bef4f9a9ea709f77bb2af44a45
|
File details
Details for the file simple_jsonpath-0.4.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 868.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ff4ad7293eb8374ea0d7b210091b16a200d9621b480ea22b43934e56dfc10bd
|
|
| MD5 |
081b3a8c7307c2a3ef8fabd1c9c7db2d
|
|
| BLAKE2b-256 |
b414c81043bd20b2e060e303f7f3b1eefb7d4c32427a76c275ffc4ce50fcce82
|
File details
Details for the file simple_jsonpath-0.4.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 887.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
797c8ac8651d9b90acb736d7f7def46d108097ef28e0bcf15c218cf818836ed2
|
|
| MD5 |
736175d3a6a11d9585d0dbc618940163
|
|
| BLAKE2b-256 |
a834e3cf77aac76d9b56e5f06ae7e0010dab38fea11ad1a6a85bf135d1d4b756
|
File details
Details for the file simple_jsonpath-0.4.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 915.9 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e64ec7159f86721f4a92a0f3943fbc92d84d8643185e6574be9ce34f73266f87
|
|
| MD5 |
970087c9073b09222da6858c7fa7aa17
|
|
| BLAKE2b-256 |
1bbcd51161a7fdbb31f67544dc4b13b11f814780f86b1d5bb5e20e3dd20a5570
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f012e9c8ec413434e2a0f2d268fee2de2857ebec6e208b8711e40e3ba374afdf
|
|
| MD5 |
f2972a7b8e5a40d38ba7401a0fa9d23d
|
|
| BLAKE2b-256 |
084aa4dabcf6b114ee8921f9d6ef4ccf5ea7ec27924a4f1a8f410c79eeacab2e
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edc55f11e6537dbe059c4a4cfee517313aa4818fcd4dbfd63ba12297f43620c2
|
|
| MD5 |
05fb6c57079fce287805ba0093cd62a8
|
|
| BLAKE2b-256 |
de9cef5c1f5dfc3682950de7b984c94f9d5da00afbcdbe46b489d867d04beedd
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8fa08aaec03db0d4d77f4ce5d7bab559d0c09795e4e5874c97912a297e2f461
|
|
| MD5 |
885f35f728f3a53ea7c12f5aec2b3c74
|
|
| BLAKE2b-256 |
48f7b449b98bdb6901a4effc6f9781f4ff9ae4ed71bbb6be7e8cba594a8c573a
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
439dbe88b53ea13f0f455c9cf9ab288f01e4a9ff1f231797a031128dceb464bf
|
|
| MD5 |
1cf41305c86aa857b6685e592bd7ac8e
|
|
| BLAKE2b-256 |
567dbed5852031227f899f90268ab16685c26d870d554938279f4a2cebd1ead6
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 967.4 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db21ad6ce9e2f7e5f2a7c13af318a609eb34628a9aa48d9fb1773c1673550b59
|
|
| MD5 |
ffe10ca893b13f1d070038d9501348f4
|
|
| BLAKE2b-256 |
643fbe33db83a127a821c289d4caea5bf65fbc2be70e5b1142281dd67f4452d4
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 947.9 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14f6db77b0022d9d2cd1686ef376a53c0e4228d9efe45c8dddc84480b8c8e543
|
|
| MD5 |
c483199dfc58d6ead6c5a39deb69bbc9
|
|
| BLAKE2b-256 |
70935642c7b643cdc142d97ef646cee3e728ca4fd46beb7d2c2f400a386d4a12
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 867.1 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1f38b2e2ff1b5fcc0cab6bf59d3d81390876ba8f42a8ca913833484053299a3
|
|
| MD5 |
259553f0a70476de8537846888d13512
|
|
| BLAKE2b-256 |
2e6a5d288b60c9d4e639c787a11ea66fdcc8b4f99454f450147cd74935cee101
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 884.2 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2889ffe25fe88608bce4b9aa1f1e5b238b09a198d8f07ad484f5fa8160b32aac
|
|
| MD5 |
5e9917a361b6b86bd1f6270fd2b34244
|
|
| BLAKE2b-256 |
8a17ca387cb3ca1528468ac23b89d48a324d0f96af62a5223e53721e86178e76
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 734.9 kB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
678bf23ce2314b16226c1fc772e9497c10d6fc3547823068bc40083b111aced9
|
|
| MD5 |
0978b2e387450f61a865a4abecf35b1a
|
|
| BLAKE2b-256 |
2b3e9e4bbde932cd2a1a4a47699987ec3a7524dc7d363872f7519b6746d198bf
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 792.5 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f5d1e008fac43bf047d45d285b9128ca4fee2a6618cead8fc45b40a890d50ba
|
|
| MD5 |
3de453b7869d2d6d05b3790e72564074
|
|
| BLAKE2b-256 |
515371ba735c876097238312fe0a25dc001ce9956957d6daa7cbb54ca3082e81
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314-win32.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314-win32.whl
- Upload date:
- Size: 697.0 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
097802e9522cdb88e6ab4c73797b22b68080221b6623c8a120eec4df7f328bdd
|
|
| MD5 |
725bac76f1e1293f2e31224bb5744ff2
|
|
| BLAKE2b-256 |
eab45283be65ba98f556cabcc2c4045d9ab3b85a6981aa764d4c6f126cabcdf2
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6291e7c13538ab2973d092957cdd99b93f2ea8156b5cd75e3fb7f3209490efa
|
|
| MD5 |
cef919661f42dfdbc5d6685cc95d484b
|
|
| BLAKE2b-256 |
5e1cd1b34475c6167e0fbae91c50d0c46fa7f524c377273150df8f10b557a038
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3cf9c06643045ddbea7343377d09b4ffefa1c8893b158d21c59c690ae0d7d526
|
|
| MD5 |
17592c868792b0e81536ff845efc193e
|
|
| BLAKE2b-256 |
b918ea263e09e9e9752a431d419637319d7faae418546789ac2630925d6b81d4
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e059b8805209f764e8026b30729af2d3f1c4773d465183cf3be98000b8c3131d
|
|
| MD5 |
861dc887d6a4ec0c04b4d9204ec7fde2
|
|
| BLAKE2b-256 |
794210453f62c01445cdee3f991d1f7493d4dc752672d5f225331929b4865dd4
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74dd1959161224e4d4e271ed6490ccbb9b6a3af177535e46c072dbd942b10504
|
|
| MD5 |
4953c1f575c4eeab4fd803cbf48a975c
|
|
| BLAKE2b-256 |
502d69d25e734ad12e2fc8de7c705ae5d0fb1088456890ccb8219f761613ae1b
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 933.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6003970fc9aa422a39080c618002b5d2f83a776f9d4fb135cc893a8e4abfff03
|
|
| MD5 |
89997efdd42f876ec33cb251d9c0133b
|
|
| BLAKE2b-256 |
e1f1eb5fc2a6bd86137a93e47b19c3ce61fa66867d7b66fa8e1dac0cd97097f4
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 969.5 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23cda1442acddc29966b2d6afb992c5ea7d9a526ec0bbc801862986a7addd4bc
|
|
| MD5 |
2cf772794f80ea73e68e66e7c1fb0711
|
|
| BLAKE2b-256 |
8b3e6aa68dc1cbd8dd7a59e03f37833597f6cbdc20a06bcd93626a0cee5106c1
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 950.7 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a10fc7c2d3bd2868a65378c7ff3dfe0de56dc030e86c5c23862430135d5090f7
|
|
| MD5 |
c5f425ac2f12a83ae013f9d651420ca9
|
|
| BLAKE2b-256 |
b43cd87f2a2755f18f1f767002c8085f0c2d376da877c2f8fdc9b3888255819f
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 869.4 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2436b7f50c465332392c163766fcd54b3b3f577a8a28903fa53974687e31f7ed
|
|
| MD5 |
32634a1ce09011c194e9075f075aa4fa
|
|
| BLAKE2b-256 |
90823d058a9886cb2432bc1892d2602636c22d2fd81bd77c206ffaf0f16771eb
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 887.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86f8bdc7e8d6c97df8c98262709c0b2a111fdc2807a345e7761d8af1fe406780
|
|
| MD5 |
11bee40aa6dd67467dc42f85907e7f08
|
|
| BLAKE2b-256 |
f798466bc2a9de519390a691d15cc815b2936cc36478fdcab2e37208dcfeb752
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 916.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b08e5eafbd1e04334c3854200a316294fe296fc1bc60224853447d784d2e0277
|
|
| MD5 |
8b9699ae94876f72bbf56e3933fe5130
|
|
| BLAKE2b-256 |
4c1eeb0085b71189b79bf927ec4ddc3425b0135534dc42a26b8119a186c430d8
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 820.1 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7bd940a21c63343ed1577a258b9644231baae3f60b9b5c79d8099adbf81670fd
|
|
| MD5 |
81596c5068203bd328e12715de2a65cc
|
|
| BLAKE2b-256 |
d3941f4069c77e5856b3b1a837b5412099ab04a97c14da3830c8f91a4ed53bfd
|
File details
Details for the file simple_jsonpath-0.4.3-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 883.5 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f9d4c697b45e39a0baed59a6eeb7ceb6ec9007d433ab5a1508f076105abb64a
|
|
| MD5 |
1bb96b02fe42c9fe51c0b5ec4499ab28
|
|
| BLAKE2b-256 |
56e7291a61d7ecd6c08b1e3e22eb49ea6bc0cfb03ed7c3e47410a6a284924bc4
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fac2dc8317d83faec667979756821f777eabfa220d05d2383926bb479fad2bbf
|
|
| MD5 |
02da92b761928b476972bc936c24fb3a
|
|
| BLAKE2b-256 |
2e19e4e6e2fda8eb9ffa47fb011769ab402304d31d340cc111ad4c306b7e1d24
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f760271c7ad9fe294841230de06fe602e2f1e7ede18cbcde473f1658e8f058f7
|
|
| MD5 |
a71458f988a809b28da6a45b48ccf141
|
|
| BLAKE2b-256 |
e597a9c386cea0e04b71a0cf4c5dae4c2270651fed0f2081a98e9303a407b8b5
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49c97018a291b9f4437484cc658359895abee41307b778f1d3e41053b0a69bad
|
|
| MD5 |
7143a58a47b8f16cdd96bf072e8aca3f
|
|
| BLAKE2b-256 |
a5c9ce50b1a88b4e6a2423b3cfb11e82bc04badaa7f99dda9a8ccd08e59b9d4a
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2bb5a1816440da410452bc804fb8c22f795905eedc115a14846c01fc80768d0
|
|
| MD5 |
856e5dbf527656e94d8678225fcc8455
|
|
| BLAKE2b-256 |
503d6f9aa48e968fd60c2a0cb73d734ca57f40270a97e8ebe97031d124ea7553
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 967.4 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2d10025cca7169e020b4306c04032f97c13086ab54f43b5cb24628677771d09
|
|
| MD5 |
02db7540c22e91380952ab990267a772
|
|
| BLAKE2b-256 |
23dccd6771ddc6e79a6f5d060d78a8aec666b8c89fb3e1ee76738c32582b15f9
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 948.1 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b22de8231f52e339056461e223ff834755f8f0efb6d9b09f8adbb3063de4510c
|
|
| MD5 |
2c2fcc9e2851f23a024e18972c957ce4
|
|
| BLAKE2b-256 |
3cfd7e6c1a7ee7e9f4ed4814dffee82cf235fd6f43229d175f1eadab4c056d68
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 867.1 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b940ba34d5ba07060784f2284b1474439199e09aa422f210d39ff7b80bff0a7
|
|
| MD5 |
0d3cf91ed59117c087a66ed88f54de20
|
|
| BLAKE2b-256 |
823907af68140ef5f0f9dd195eeea820813e463d115cf6a6042d7d136438714d
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 884.7 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5ca22464bb833c39e341a8b8d7b850f513e1dd601b1c1a9193718e69742e5f3
|
|
| MD5 |
4a4f27b88738cdfa446f08f79eeaaaa4
|
|
| BLAKE2b-256 |
86ab11a3063f41c1c4336331a41262d152357f9fcae6a4e50571d063a4c166af
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 735.1 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64f28068b46b74cc2c3c6508f725e6d0dc2ad1792fdd542d5f078b5958d80b33
|
|
| MD5 |
9e5ae21a5627b65504b579dadf307a2f
|
|
| BLAKE2b-256 |
5670e056598ea15663697bc64e656e0aa080456eb0ace02495917576ebb9a1d3
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 792.3 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec94b005f9476e989b5a2739f937d18d390916fb20391cc906194db630ea2d1c
|
|
| MD5 |
2cd69cce669a71ba9ccdd84e8500c1c2
|
|
| BLAKE2b-256 |
ebb04e5c5c63aadf89bd07b8237d74768aa5d811e51a12c332b208442181f43a
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c50b25ad8fd09dc8cdfa78e8c33f12ab6cbd89018135c0108f181e0550cd90c3
|
|
| MD5 |
e51f11dc8b920f327faf3ac4613f1a65
|
|
| BLAKE2b-256 |
983a1eaffc6d44dc4ffdfaaaadf1ed6a713e0533ec19600d4f8ba7cc4e577e16
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb8becaf41b57cfc3234bb31ff49eb59a4613e99da141a1dd643b450c0471a93
|
|
| MD5 |
6fdba2aafaecdbc2643dad5154af14be
|
|
| BLAKE2b-256 |
1bbd6b3ae560657af852cc5fd856d845eb6eaed8f40844f1accab30b37861444
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85a20133cac3bc0139b05feabbdf516656b8259e8ef7a1336f99b39fa9700f2f
|
|
| MD5 |
7cdcb5f46745581c40b57caa632eff8d
|
|
| BLAKE2b-256 |
ff838687f60b1b0e6906252008ae2285fe2ee5dbf7f2927e63ef312fd69d289d
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd33fef01ba191e50d1ccee15e7b1ac678e77598412d2ff93fc0b07a1eb5eb26
|
|
| MD5 |
d8a12d9f9df06d03fb065a57d7354ccd
|
|
| BLAKE2b-256 |
e949ecc2939e6f93ea0ad4bb35a8bde724ac16684b21f1c6c27323ffdb53efbe
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 933.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f738b6c11a97da80201bf5627de442d54bf242adcfdfbcddd8ffda002e826c73
|
|
| MD5 |
cb509ab59c60cbd073965b9e24e72e23
|
|
| BLAKE2b-256 |
35d8bcc201be0a4d32c5b3e6e6d351dfd9d668ab95e9c6065f4dfa2c7784ec7b
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 969.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
005ac8cdcaaecfb6ad6b7360ad30455372d9010c49b19d023fa7c9d9a94d872d
|
|
| MD5 |
d6f6a6fdd87ae2129ba67b54b8179a58
|
|
| BLAKE2b-256 |
1705d53cf26397ce8944e909525f7f52444cb09472aef6bd9a2aadf3e2536227
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 951.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c7d5a72b2179a16746010bf2974dd9e0647aeb8da920293cc17b884adf69e39
|
|
| MD5 |
56a9168fe14b47f71eb69ef11aee90e1
|
|
| BLAKE2b-256 |
6521c063ab1fcfd86bf8367d928b6ed5c8b1acb86cb5b56af6c14aac5a2df279
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 869.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be9b2200bd1629a8479aff8d3b7afaed00d075a647b63c925e7faa2a07a042e0
|
|
| MD5 |
1ae43510919674af5f0e6fd289be1451
|
|
| BLAKE2b-256 |
804a5f3bad9a73c5a12630967a26879d774187bcf528ce71e6246e8afbdbb098
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 887.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22772e42f329dd5f82ca8d393c2400cb099ede0931fb420e7fbec6798fe26d67
|
|
| MD5 |
16139ef5a2145af20676521e066f57c4
|
|
| BLAKE2b-256 |
4735d90f16a989b4ce67265fc0bc20bc389871a0ba6ffcaed5209bb9c759cfde
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 916.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e405aae034b2e6987616b46789f4fafc82fb0380caefa0f49cf6fb5d3e9c84d
|
|
| MD5 |
031348cf8c0dd624c65402b63d09a88a
|
|
| BLAKE2b-256 |
0764497d8910eb88813d5cfb873e79e2779d0a8f8c0e3696d593cb79261f5438
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 820.3 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49494e070edde95d8bb9b201f5cc62b5281d3dd779cd244c78c16fa107e6c4a4
|
|
| MD5 |
d05868e54c7f980b41c06352918f459b
|
|
| BLAKE2b-256 |
8458f22240bbb3bfcaeb95c4731f8faf6dd865a170b8ddaa64b2f9b453ca5866
|
File details
Details for the file simple_jsonpath-0.4.3-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 883.5 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4bbeca47820f91b239068f2a73bd7e091671f96e14092a1c393c097cf338395
|
|
| MD5 |
29f9c14e20b305fcb33696e5553106af
|
|
| BLAKE2b-256 |
f2b8b2c51369e1ea3a5792a73ef9ad2a07fe4f3d0f1a2d33b732c63fabf78186
|
File details
Details for the file simple_jsonpath-0.4.3-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 735.0 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
efa46ce850cae5970d60a6b338ca5829ad0eb67fba56f7886ac2c722716d1ebf
|
|
| MD5 |
e6c5e488e51999ea4ce61973dc5a04d7
|
|
| BLAKE2b-256 |
42d86d7d2fe1ab12ceae5740de71c16c1ae047be031951c41516771a610c5199
|
File details
Details for the file simple_jsonpath-0.4.3-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 792.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d3da9f98c709573350aba66a0271bcd568364b878d48d92162b92c8abd16c0f
|
|
| MD5 |
bcdb5133d0608bfe1100f5bcb5728124
|
|
| BLAKE2b-256 |
f6205a283d13c9eb31ce2493aa3ce7467415e3c22b80eb6a72425d80f8957cfd
|
File details
Details for the file simple_jsonpath-0.4.3-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44d62269a14bc4057977225eedce3eb3e26e4cd105d7992c314fbc8b91f448aa
|
|
| MD5 |
7ff93e0e900ac24a0d35ebfe8535994d
|
|
| BLAKE2b-256 |
08cdf412c4043ee8bae32ac1b9e5f9adcff92d767e19f2c7e4da48947fbf6f4d
|
File details
Details for the file simple_jsonpath-0.4.3-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c7064f11a94909b0d3ed1d0cfa42141fc01d4af74db9b00322034060ff8e9c0
|
|
| MD5 |
8007c8d65a00a7b5f19438963cd0f003
|
|
| BLAKE2b-256 |
1c705df6219fc3b732aa2a6ae8835d2d37332a665fb059d40eec90b78cd1d9a5
|
File details
Details for the file simple_jsonpath-0.4.3-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f11b1b68d6c6482299ad393d7dd7a14680af8f359a62eb5cc28fe46af47dc4a4
|
|
| MD5 |
939dca1b58e8ba947a18b8f29b1c31c9
|
|
| BLAKE2b-256 |
fdc409d94be88fd5a72f1880c724d60a58b14e6b49410cb06b60701cec36e3e6
|
File details
Details for the file simple_jsonpath-0.4.3-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53a6d31d26b801a8203a730ff13b1efc843f74c419ee6eeef92353413684220f
|
|
| MD5 |
31be246ed2c0ca7bc85ee4b2839e050b
|
|
| BLAKE2b-256 |
1b8d47a5fb9b0cac31b330b6b0ffc6b42b259a54a4af170c4940e7905c874361
|
File details
Details for the file simple_jsonpath-0.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 933.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed21b45197924943e5ab7a21d5859ac8a353a1f5e46aa09027081ab3d429e777
|
|
| MD5 |
27ef27d7417ac6ed6a1252829563aa9c
|
|
| BLAKE2b-256 |
790105ba17945b0a09a4cf9bcff0d424c4180793b886b4d00e37a1e3c816333a
|
File details
Details for the file simple_jsonpath-0.4.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 969.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b46ad6f538e364315ba1f4cfd8c5044878c65606964fe52970ba57d86b2bde09
|
|
| MD5 |
fef72e2916baaf59ac346d26cc9fe403
|
|
| BLAKE2b-256 |
a26c543c239afe22a700cfdce4a69402c0a473f84d93832365f7b58e090d8f03
|
File details
Details for the file simple_jsonpath-0.4.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 950.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de06ca24f65223c8b1f4a25c68e4753b5ba7be39400c337637d5a7b6a72211f9
|
|
| MD5 |
7c3ddae9c9808c7bc39e8d0ea08f6340
|
|
| BLAKE2b-256 |
5aebbbcc6138a7ef363a0cda8edb75b617c83dea38bde5ffc2f5360fb5a7395a
|
File details
Details for the file simple_jsonpath-0.4.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 869.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a62090a9a6494c9fe63a2eab95813c3605d910d62335eefc07519a2ec5af46a
|
|
| MD5 |
07fa8213c14cdefdd554b7ececf5c3d4
|
|
| BLAKE2b-256 |
d2e307bf6cee502aea75da675ecd08d32cfe8ea2f7b123381cf8497fb8bb1df1
|
File details
Details for the file simple_jsonpath-0.4.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 887.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3292452139294ae707a46504c4a79e4e6558ab42158f388d27a17dd0eb077c7
|
|
| MD5 |
df0799e52f83d6209a835743450530b3
|
|
| BLAKE2b-256 |
3d009afdfa8ed53363825a9845bc96badcfc12d5de31b795749f493d18015df8
|
File details
Details for the file simple_jsonpath-0.4.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 916.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea60f449ca5c7f38e98701beedd903267a020c0d8ecc41884bd41c087d2322de
|
|
| MD5 |
2a70bdc6a62773e67ee9ae73ffe55fe5
|
|
| BLAKE2b-256 |
c8fd7ff2c2e1ade437678571e81282b517e96656dcfd8d90757287434190e35d
|
File details
Details for the file simple_jsonpath-0.4.3-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 820.1 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e7a3c95b8a3d0d3a796d6a8d0f32ce96c87e25fc8e35724f511d5829c2c9b98
|
|
| MD5 |
fe24a95be0ce8ae9c66e862b59139603
|
|
| BLAKE2b-256 |
2365ad5d1e8ffa162982ba2b2c4e1f1dc58ae317571b78b6f759826aff4532bd
|
File details
Details for the file simple_jsonpath-0.4.3-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 883.4 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e628127d42eef874567560da2925b7f1ca1a76c9a8168da5c6be357003433cfc
|
|
| MD5 |
e09c22d300f236f17ef371cdc7f256e1
|
|
| BLAKE2b-256 |
a6f1ce3f312d69e256ed0e0bc34551166a5684f362c7c1a9aa49b47cb14310ed
|
File details
Details for the file simple_jsonpath-0.4.3-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 794.2 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85af6c384a4329c794c1655f5a39a764bd9f93a70367d54bf536e776a9b0c724
|
|
| MD5 |
71a8404f72906f1ff131d5531df58b90
|
|
| BLAKE2b-256 |
465c8f80ca1cfac9ee4cba7a328e3b450a9b67cb16f958b8d1fc6cb87b25db21
|
File details
Details for the file simple_jsonpath-0.4.3-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
933d8a8d847fd160da1627f7acab07054436a49f54f5cde080c1d62bc5bc69df
|
|
| MD5 |
beac88d857d4180a1c4b5b53da9bf9a3
|
|
| BLAKE2b-256 |
145cdd0a9eca9a2c1ee1e87b4c6881fc684d8d0e3e43b93942da7b58e30c83dd
|
File details
Details for the file simple_jsonpath-0.4.3-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff4f895277d234039c8b32bec0d4fdeb7817464b2cc7616057536ac753e594d9
|
|
| MD5 |
709b559fe81efb46f001beb3057bf900
|
|
| BLAKE2b-256 |
06a299df5652071a29644942c1172e8b62b8d5caa963d9c4a8ec2e23af705a73
|
File details
Details for the file simple_jsonpath-0.4.3-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ee6ea4229112bb4b99a746a81fc8f0e3ca5aca8c8f7de35ffb8c8dca410bfb6
|
|
| MD5 |
ea81eeaaa215208b43d8f823696e43dc
|
|
| BLAKE2b-256 |
d638eb6545d32edbd8fc51398f2ba9db64366493bf4fb6e2c712215defe16e8a
|
File details
Details for the file simple_jsonpath-0.4.3-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64b6e95c08b1f24a1256bed9a750565bdfa92f83fee224873e254d091cd9f525
|
|
| MD5 |
0084101eae83b81321ba347cee4035ec
|
|
| BLAKE2b-256 |
c8b84a731f38f8b594f0eecd60cecade1a9e3f3f995450fbae001fbaacb28303
|
File details
Details for the file simple_jsonpath-0.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 933.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e41fa540e36f01b15b308bc08cd393b63bd1799f2656914d199ae11235d8d4e
|
|
| MD5 |
26da3327de744e5860d4bf1676e3b452
|
|
| BLAKE2b-256 |
31e800a56cf7d1a11263412882b9e3da6b51bd8860f5601781999e46f9df82e2
|
File details
Details for the file simple_jsonpath-0.4.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 969.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6cb6f67e3f072adbb40b6b80111bb957545569631d3b8d64ed13318b16be0d5a
|
|
| MD5 |
74deca6691437cf9a31909c7699e0128
|
|
| BLAKE2b-256 |
022f36273187b4b05c0c2d15a9feb52e85d1d0844e9b7ebc43dc2e6695e5d930
|
File details
Details for the file simple_jsonpath-0.4.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 950.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a3fb71089ceb03b9f3261d3c79f1af77533cae39f62e413b86b7787ee9a8e36
|
|
| MD5 |
da5a19c66d2894b84ea871d38be4b8ce
|
|
| BLAKE2b-256 |
775c64053d6dfcfeea420a1c25f7bfde910d887150070f8e13c94c537728e587
|
File details
Details for the file simple_jsonpath-0.4.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 868.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40bb8a386e93301653d22bb2acf2d2ab61df24e565d17f4a8b106848ff36e398
|
|
| MD5 |
a7f93d6b2eee4e62114910bb35208e70
|
|
| BLAKE2b-256 |
3d2d5ac438764062bf37cff4cfd7fb30294cae2cfc81fc6a2d06dbd22848494e
|
File details
Details for the file simple_jsonpath-0.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 887.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18b60cb976e9315bd549433b1224a8b0124b53917fa4fe6c6c7eaad1b301301b
|
|
| MD5 |
71cd744ff988e0bf7b143ae4f22312be
|
|
| BLAKE2b-256 |
8ff04aea8ead33514538d0ecfd1a573bde8b39fce88e96e2f1be4a16077d718c
|
File details
Details for the file simple_jsonpath-0.4.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 915.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac886815ccf7b3b75e93736c7821d60eaf846f981289ca8a488c476149a5bfe9
|
|
| MD5 |
74f122d5fd205e0922665cb425ce6526
|
|
| BLAKE2b-256 |
3ea2029492d158ac60b20a5025fd6f8b0bccc95f9d2833aea4fe5f0c77336361
|
File details
Details for the file simple_jsonpath-0.4.3-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 820.6 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79bbe54c00b31b159ae9611bdb179adc4dcef80ec19ebe0392ddc946de654142
|
|
| MD5 |
01c627880ab041aa4cc8a2370d33d093
|
|
| BLAKE2b-256 |
eea2f366255dae4d14212526596af8c021d66f3ccf4ef387bf0f18db75266c33
|
File details
Details for the file simple_jsonpath-0.4.3-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 884.0 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2858fa9753e165d0cc65699d75742f0d69ff508c8307bbc6929933da9c53eb73
|
|
| MD5 |
99a5bd0e85392df68d4e1e162f83919a
|
|
| BLAKE2b-256 |
adb7bf2c569375a919149173b4fa0d15bf2a0696279f1dc80a28c3ad6160bd5e
|
File details
Details for the file simple_jsonpath-0.4.3-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 794.1 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cea2cf7a9f63bb857bb7cb863386bbc93701030e1994fde780e182e938ce6fdf
|
|
| MD5 |
de4053e61787e811abb86533e8557517
|
|
| BLAKE2b-256 |
ba1df545c2fad8e06434a835140e5b7046d9eda997547171cd72c2c7a47ea855
|
File details
Details for the file simple_jsonpath-0.4.3-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d424dcd3aa926d1a082f20a9d538224d6ac0c9513333b850fe5a5a0a6535fd8e
|
|
| MD5 |
588b58c4e08f03090d1d19bcfc15bb21
|
|
| BLAKE2b-256 |
ee90ae9b6daeb95da326611f460e4611ec78e88ee29703a0cb72fc796d301a53
|
File details
Details for the file simple_jsonpath-0.4.3-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6445f10cfcf3bf1a17d817fa029592b6cbfbf6d797f76f79cb443c6e30cfe1bc
|
|
| MD5 |
8f8d508158bf879c946f9263ed6b3dfd
|
|
| BLAKE2b-256 |
1c7af5f10d662b004292f1b34f352ff7713e1f82e807880a2457a1413bddd44c
|
File details
Details for the file simple_jsonpath-0.4.3-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3df544d2150ea2d84fe0f0067cadd613044f10e9dbf3862ccd2400fec255416
|
|
| MD5 |
ae6ab60f7bc0da314ba6aaa1c45effd6
|
|
| BLAKE2b-256 |
67c9ded5f904c5597dd66b5af3a352297cc0493075bb2689ad6887381c38c3c5
|
File details
Details for the file simple_jsonpath-0.4.3-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0ddc9030dec69f65c69820a7ffc6877aff2154d460702c7158d19766b10ccae
|
|
| MD5 |
f5fd9a396d4cb501eb322c44028ac6be
|
|
| BLAKE2b-256 |
992b601c086bc2e68d3c5e6302ca0fcb159c3143073c8d428853f62080bab42c
|
File details
Details for the file simple_jsonpath-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 933.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3f485e3f0634a2e48b6add24217c15c38db6c73a76440092fcb22095c371263
|
|
| MD5 |
0913277a9ea086f8d992ac6ac0728453
|
|
| BLAKE2b-256 |
9eb27cdf000fba09bfddbe148807cd4c2ddaf6f2002b45b3f5a4fa88281c3e9e
|
File details
Details for the file simple_jsonpath-0.4.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 969.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e1cfe37904943f4f850be3d5ba42b5347428711590511437c2aa855d0ba2a77
|
|
| MD5 |
b67d650842f90e6ee635209fe58b98d4
|
|
| BLAKE2b-256 |
01a73752a0bb8fa204f537f433bc2571c28217fec7203d47ffc27a562f2af31d
|
File details
Details for the file simple_jsonpath-0.4.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 951.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92740c10c787c63c1a3f012e06dfbe59e8568008469dec7b96ee16ab1ba58ff6
|
|
| MD5 |
fd673be0e3239a38f69a1a94ec063fee
|
|
| BLAKE2b-256 |
3f2f72cc8e3cd731f51ff7add1a49179e492aaf4cd71bf0c678305d5ff0d4142
|
File details
Details for the file simple_jsonpath-0.4.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 868.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5215c12ad8da647dcf02f9d49b8cfecfc23c22b64428ea99746ccfe5b81168af
|
|
| MD5 |
f3c6727509d4662ec5ae5225923cef5e
|
|
| BLAKE2b-256 |
fdfdaedd7cb6bcfc25c7d14c5ce810a4aa9ec0a388209ed0fd616af5e7bfca63
|
File details
Details for the file simple_jsonpath-0.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 887.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d241c786d9ec4ff24aac4a9f31ce51f49767de1f0006c742613dee86c8dfd7ab
|
|
| MD5 |
5855844e0e02af7db373d614c796a97f
|
|
| BLAKE2b-256 |
9ac288f0f890d7863530b167c4a9ace30ddb9e59d9d335b4f5d6f672de549d59
|
File details
Details for the file simple_jsonpath-0.4.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: simple_jsonpath-0.4.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 916.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.0 {"installer":{"name":"uv","version":"0.11.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0ab64871ab79559624c60bff1c0eff9ac6572b613ecd1ff18387e0917b9154c
|
|
| MD5 |
0381c81e252003fffe809595f9554611
|
|
| BLAKE2b-256 |
042088685064b8603ae943c401d4da507d7d0bd3867797c9fec5bfec79931462
|