How to Install and Uninstall python3-sieve.noarch Package on Red Hat Enterprise Linux 9 (RHEL 9)

Last updated: June 16,2024

1. Install "python3-sieve.noarch" package

Please follow the step by step instructions below to install python3-sieve.noarch on Red Hat Enterprise Linux 9 (RHEL 9)

$ sudo dnf update $ sudo dnf install python3-sieve.noarch

2. Uninstall "python3-sieve.noarch" package

Please follow the guidelines below to uninstall python3-sieve.noarch on Red Hat Enterprise Linux 9 (RHEL 9):

$ sudo dnf remove python3-sieve.noarch $ sudo dnf autoremove

3. Information about the python3-sieve.noarch package on Red Hat Enterprise Linux 9 (RHEL 9)

Last metadata expiration check: 2:17:34 ago on Mon Feb 26 07:04:30 2024.
Available Packages
Name : python3-sieve
Version : 0.1.9
Release : 28.el9
Architecture : noarch
Size : 21 k
Source : python-sieve-0.1.9-28.el9.src.rpm
Repository : epel
Summary : XML Comparison Utils
URL : https://pypi.python.org/pypi/sieve
License : MIT
Description : Ripped from FormEncode and strainer just to support Pythons 2 and 3.
: Intended for use in your webapp test suites.
:
: Example usage::
:
: >>> from sieve.operators import eq_xml, in_xml
: >>> a = "Value"
: >>> b = """
: ...
: ...
: ... Value
: ...

: ...

: ... """
: >>> eq_xml(a, b)
: True
: >>> c = "Value : >>> in_xml(a, c) # 'needle' in a 'haystack'
: True