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

Last updated: October 06,2024

1. Install "python311-jmespath" package

Here is a brief guide to show you how to install python311-jmespath on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python311-jmespath

2. Uninstall "python311-jmespath" package

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

$ sudo zypper remove python311-jmespath

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

Information for package python311-jmespath:
-------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python311-jmespath
Version : 1.0.1-5.1
Arch : noarch
Vendor : openSUSE
Installed Size : 159.1 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"].