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 (show merged sources derived from linked package)
Filename Size Changed
jmespath-0.10.0.tar.gz 0000081860 79.9 KB
python-jmespath.changes 0000006346 6.2 KB
python-jmespath.spec 0000003041 2.97 KB
remove-nose.patch 0000001191 1.16 KB
Latest Revision
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 2)
osc copypac from project:devel:languages:python package:python-jmespath revision:f4b52c5d294eada42f279d03c2123ede, using keep-link
Comments 0
openSUSE Build Service is sponsored by