Extract Elements From A JSON Document

Edit Package python-jmespath

JMESPath (pronounced "jaymz path") allows you to declaratively specify how to extract elements from a JSON document.

For example, given this document:

{"foo": {"bar": "baz"}}

The jmespath expression foo.bar will return "baz".

JMESPath also supports:

Referencing elements in a list. Given the data:

{"foo": {"bar": ["one", "two"]}}

The expression: foo.bar[0] will return "one". You can also reference all the items in a list using the * syntax:

{"foo": {"bar": [{"name": "one"}, {"name": "two"}]}}

The expression: foo.bar[*].name will return ["one", "two"]. Negative indexing is also supported (-1 refers to the last element in the list). Given the data above, the expression foo.bar[-1].name will return ["two"].

The * can also be used for hash types:

{"foo": {"bar": {"name": "one"}, "baz": {"name": "two"}}}

The expression: foo.*.name will return ["one", "two"].

Refresh
Refresh
Source Files
Filename Size Changed
jmespath-0.9.4.tar.gz 0000022940 22.4 KB
python-jmespath.changes 0000005044 4.93 KB
python-jmespath.spec 0000003018 2.95 KB
Revision 14 (latest revision is 24)
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 688762 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 14)
- Update to 0.9.4:
  * Fix min_by/max_by with empty lists (`issue 151)
  * Fix reverse type for null type (issue 145)
Comments 0
openSUSE Build Service is sponsored by