Name : python38-jmespath
| |
Version : 0.10.0
| Vendor : Qubes OS
|
Release : qubes.4.24
| Date : 2021-09-27 02:00:00
|
Group : Unspecified
| Source RPM : python-jmespath-0.10.0-qubes.4.24.src.rpm
|
Size : 0.17 MB
| |
Packager : obs://build_opensuse_org/home:wicked
| |
Summary : Python module for declarative JSON document element extraction
|
Description :
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\"].
|
RPM found in directory: /packages/linux-pbone/ftp5.gwdg.de/pub/opensuse/repositories/home:/wicked:/qubes-build/openSUSE_Factory/noarch |