deb-python-jsonpath-rw-ext/README.rst

1.9 KiB

python-jsonpath-rw-ext

image

Latest Version

Downloads

Extensions for JSONPath RW

This extensions will be proposed upstream and will stay here only if they are refused.

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

Extensions

name Example
len
  • $.objects.len
sorted
  • $.objects.sorted
  • $.objects[\some_field]
  • $.objects[\some_field,/other_field]
filter
  • $.objects[?(@some_field > 5)]
  • $.objects[?some_field = "foobar")]
  • $.objects[?some_field > 5 & other < 2)]