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

Last updated: October 05,2024

1. Install "python3-ConfigUpdater.noarch" package

Please follow the instructions below to install python3-ConfigUpdater.noarch on Fedora 34

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

2. Uninstall "python3-ConfigUpdater.noarch" package

Please follow the step by step instructions below to uninstall python3-ConfigUpdater.noarch on Fedora 34:

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

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

Last metadata expiration check: 3:42:42 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : python3-ConfigUpdater
Version : 2.0
Release : 1.fc34
Architecture : noarch
Size : 35 k
Source : python-configupdater-2.0-1.fc34.src.rpm
Repository : updates
Summary : Parser like ConfigParser but for updating configuration files
URL : https://pypi.org/pypi/ConfigUpdater
License : MIT
Description : The sole purpose of ConfigUpdater is to easily update an INI config file with
: no changes to the original file except the intended ones. This means comments,
: the ordering of sections and key/value-pairs as well as their cases are kept
: as in the original file. Thus ConfigUpdater provides complementary
: functionality to Python’s ConfigParser which is primarily meant for reading
: config files and writing new ones.
:
: Features
: The key differences to ConfigParser are:
:
: - minimal invasive changes in the update configuration file,
: - proper handling of comments,
: - only a single config file can be updated at a time,
: - the original case of sections and keys are kept,
: - control over the position of a new section/key
:
: Following features are deliberately not implemented:
:
: - interpolation of values,
: - propagation of parameters from the default section,
: - conversions of values,
: - passing key/value-pairs with default argument,
: - non-strict mode allowing duplicate sections and keys.