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-1.0.1.tar.gz 0000080936 79 KB
python-jmespath.changes 0000007774 7.59 KB
python-jmespath.spec 0000003153 3.08 KB
Revision 55 (latest revision is 57)
Robert Schweikert's avatar Robert Schweikert (rjschwei) accepted request 1143504 from Robert Schweikert's avatar Robert Schweikert (rjschwei) (revision 55)
- Switch users of SLE 15 SP4 and openSUSE Leap 15.4 and later to the
  Python 3.11 build (jsc#PCT-371). The Python 3.6 build will no longer be
  maintained
Comments 0
openSUSE Build Service is sponsored by