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

Last updated: May 20,2024

1. Install "python3-aenum.noarch" package

This guide let you learn how to install python3-aenum.noarch on Fedora 39

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

2. Uninstall "python3-aenum.noarch" package

This guide covers the steps necessary to uninstall python3-aenum.noarch on Fedora 39:

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

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

Last metadata expiration check: 2:35:32 ago on Thu Mar 7 17:44:52 2024.
Available Packages
Name : python3-aenum
Version : 3.1.0
Release : 7.fc39
Architecture : noarch
Size : 248 k
Source : python-aenum-3.1.0-7.fc39.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.