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

Last updated: October 10,2024

1. Install "python3-aenum.noarch" package

Please follow the steps below to install python3-aenum.noarch on Fedora 36

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

2. Uninstall "python3-aenum.noarch" package

Please follow the guidance below to uninstall python3-aenum.noarch on Fedora 36:

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

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

Last metadata expiration check: 1:37:53 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : python3-aenum
Version : 3.1.0
Release : 2.fc36
Architecture : noarch
Size : 190 k
Source : python-aenum-3.1.0-2.fc36.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.