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

Last updated: October 13,2024

1. Install "python3-aenum.noarch" package

This tutorial shows how to install python3-aenum.noarch on Fedora 38

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

2. Uninstall "python3-aenum.noarch" package

This tutorial shows how to uninstall python3-aenum.noarch on Fedora 38:

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

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

Last metadata expiration check: 0:04:19 ago on Sat Mar 16 22:59:57 2024.
Available Packages
Name : python3-aenum
Version : 3.1.0
Release : 5.fc38
Architecture : noarch
Size : 256 k
Source : python-aenum-3.1.0-5.fc38.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.