How to Install and Uninstall python3-sieve.noarch Package on Fedora 35

Last updated: March 03,2025

1. Install "python3-sieve.noarch" package

Here is a brief guide to show you how to install python3-sieve.noarch on Fedora 35

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

2. Uninstall "python3-sieve.noarch" package

In this section, we are going to explain the necessary steps to uninstall python3-sieve.noarch on Fedora 35:

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

3. Information about the python3-sieve.noarch package on Fedora 35

Last metadata expiration check: 3:16:44 ago on Wed Sep 7 08:25:01 2022.
Available Packages
Name : python3-sieve
Version : 0.1.9
Release : 23.fc35
Architecture : noarch
Size : 22 k
Source : python-sieve-0.1.9-23.fc35.src.rpm
Repository : fedora
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