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

Last updated: June 29,2024

1. Install "python39-jmespath" package

This tutorial shows how to install python39-jmespath on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python39-jmespath

2. Uninstall "python39-jmespath" package

Please follow the step by step instructions below to uninstall python39-jmespath on openSuSE Tumbleweed:

$ sudo zypper remove python39-jmespath

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

Information for package python39-jmespath:
------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python39-jmespath
Version : 1.0.1-5.1
Arch : noarch
Vendor : openSUSE
Installed Size : 124.2 KiB
Installed : No
Status : not installed
Source package : python-jmespath-1.0.1-5.1.src
Upstream URL : https://github.com/jmespath/jmespath.py
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"].