How to Install and Uninstall python3-aenum.noarch Package on Fedora 34

Last updated: October 05,2024

1. Install "python3-aenum.noarch" package

Please follow the step by step instructions below to install python3-aenum.noarch on Fedora 34

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

2. Uninstall "python3-aenum.noarch" package

Here is a brief guide to show you how to uninstall python3-aenum.noarch on Fedora 34:

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

3. Information about the python3-aenum.noarch package on Fedora 34

Last metadata expiration check: 5:17:26 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : python3-aenum
Version : 3.0.0
Release : 1.fc34
Architecture : noarch
Size : 183 k
Source : python-aenum-3.0.0-1.fc34.src.rpm
Repository : fedora
Summary : Advanced Enumerations, NamedTuples and NamedConstants for Python
URL : https://pypi.org/project/aenum/
License : BSD
Description : aenum includes a Python stdlib Enum-compatible data type, as well as a
: metaclass-based NamedTuple implementation and a NamedConstant class.
:
: An Enum is a set of symbolic names (members) bound to unique, constant values.
: Within an enumeration, the members can be compared by identity, and the
: enumeration itself can be iterated over. Support exists for unique values,
: multiple values, auto-numbering, and suspension of aliasing, plus the ability
: to have values automatically bound to attributes.
:
: A NamedTuple is a class-based, fixed-length tuple with a name for each
: possible position accessible using attribute-access notation as well as
: the standard index notation.
:
: A NamedConstant is a class whose members cannot be rebound; it lacks all other
: Enum capabilities, however.