Extensions for JSONPath RW
Project description
Extensions for JSONPath RW
jsonpath-rw-ext extends json-path-rw capabilities by adding multiple extensions. ‘len’ that allows one to get the length of a list. ‘sorted’ that returns a sorted version of a list, ‘arithmetic’ that permits one to make math operation between elements and ‘filter’ to select only certain elements of a list.
Each extensions will be proposed upstream and will stay here only if they are refused.
Free software: Apache license
Documentation: https://python-jsonpath-rw-ext.readthedocs.org/en/latest/
Quick Start
At the command line:
$ pip install jsonpath-rw-ext
Or, if you have virtualenvwrapper installed:
$ mkvirtualenv jsonpath-rw-ext $ pip install jsonpath-rw-ext
To replace the jsonpath_rw parser by this one with:
import jsonpath_rw_ext jsonpath_rw_ext.parse("$.foo").find(...)
Or:
from jsonpath_rw_ext import parser parser.ExtentedJsonPathParser().parse("$.foo").find(...)
The jsonpath classes are not part of the public API, because the name/structure can change when they will be implemented upstream. Only the syntax shouldn’t change.
Extensions
name |
Example |
---|---|
len |
|
sub |
|
split |
|
sorted |
|
filter |
|
arithmetic (-+*/) |
|
About arithmetic and string
Operations are done with python operators and allows types that python allows, and return [] if the operation can be done due to incompatible types.
When operators are used, a jsonpath must be be fully defined otherwise jsonpath-rw-ext can’t known if the expression is a string or a jsonpath field, in this case it will choice string as type.
Example with data:
{ 'cow': 'foo', 'fish': 'bar' }
About arithmetic and list
Arithmetic can be used against two lists if they have the same size.
Example with data:
{'objects': [ {'cow': 2, 'cat': 3}, {'cow': 4, 'cat': 6} ]}
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 Distribution
File details
Details for the file jsonpath-rw-ext-1.1.1.tar.gz
.
File metadata
- Download URL: jsonpath-rw-ext-1.1.1.tar.gz
- Upload date:
- Size: 19.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 16cafef60b6d228f4ff6d94d40dd07db2d98172c3aa51d34af02cc37eef4fe18 |
|
MD5 | 900efbe89f496bd2cbfcb56144448e91 |
|
BLAKE2b-256 | 5651cc88c6354fe1c254a515e762316f041449cddda2a46004d9c07c508defd0 |
Provenance
File details
Details for the file jsonpath_rw_ext-1.1.1-py2.py3-none-any.whl
.
File metadata
- Download URL: jsonpath_rw_ext-1.1.1-py2.py3-none-any.whl
- Upload date:
- Size: 17.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7bab4eed731288c25aeec7f579419a903ee29607dfdf71825bde35011aec9763 |
|
MD5 | c617130e8bc6aa53fd5e22771bc154c9 |
|
BLAKE2b-256 | fefbcabae37176f30032e5a578bd67579ed8381c16d2191ed0f946a8b40bdb7b |