How to Install and Uninstall python2-jmespath Package on openSUSE Leap

Last updated: May 12,2024

1. Install "python2-jmespath" package

Please follow the instructions below to install python2-jmespath on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python2-jmespath

2. Uninstall "python2-jmespath" package

Please follow the step by step instructions below to uninstall python2-jmespath on openSUSE Leap:

$ sudo zypper remove python2-jmespath

3. Information about the python2-jmespath package on openSUSE Leap

Information for package python2-jmespath:
-----------------------------------------
Repository : Main Repository
Name : python2-jmespath
Version : 0.9.3-1.21
Arch : noarch
Vendor : SUSE LLC
Installed Size : 204,7 KiB
Installed : No
Status : not installed
Source package : python-jmespath-0.9.3-1.21.src
Summary : Extract elements from JSON document
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"].