How to Install and Uninstall python38-jmespath Package on openSuSE Tumbleweed

Last updated: May 19,2024

1. Install "python38-jmespath" package

This guide let you learn how to install python38-jmespath on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python38-jmespath

2. Uninstall "python38-jmespath" package

Please follow the guidelines below to uninstall python38-jmespath on openSuSE Tumbleweed:

$ sudo zypper remove python38-jmespath

3. Information about the python38-jmespath package on openSuSE Tumbleweed

Information for package python38-jmespath:
------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python38-jmespath
Version : 0.10.0-3.1
Arch : noarch
Vendor : openSUSE
Installed Size : 174,7 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"].