How to Install and Uninstall python36-jmespath Package on openSuSE Tumbleweed
Last updated: November 07,2024
Deprecated! Installation of this package may no longer be supported.
1. Install "python36-jmespath" package
Please follow the steps below to install python36-jmespath on openSuSE Tumbleweed
$
sudo zypper refresh
Copied
$
sudo zypper install
python36-jmespath
Copied
2. Uninstall "python36-jmespath" package
Here is a brief guide to show you how to uninstall python36-jmespath on openSuSE Tumbleweed:
$
sudo zypper remove
python36-jmespath
Copied
3. Information about the python36-jmespath package on openSuSE Tumbleweed
Information for package python36-jmespath:
------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python36-jmespath
Version : 0.10.0-3.1
Arch : noarch
Vendor : openSUSE
Installed Size : 174,6 KiB
Installed : No
Status : not installed
Source package : python-jmespath-0.10.0-3.1.src
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"].
------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python36-jmespath
Version : 0.10.0-3.1
Arch : noarch
Vendor : openSUSE
Installed Size : 174,6 KiB
Installed : No
Status : not installed
Source package : python-jmespath-0.10.0-3.1.src
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"].