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

Last updated: January 06,2025

1. Install "python3-ConfigUpdater.noarch" package

This tutorial shows how to install python3-ConfigUpdater.noarch on Fedora 36

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

2. Uninstall "python3-ConfigUpdater.noarch" package

This tutorial shows how to uninstall python3-ConfigUpdater.noarch on Fedora 36:

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

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

Last metadata expiration check: 1:45:34 ago on Thu Sep 8 08:04:50 2022.
Available Packages
Name : python3-ConfigUpdater
Version : 3.1
Release : 1.fc36
Architecture : noarch
Size : 59 k
Source : python-configupdater-3.1-1.fc36.src.rpm
Repository : updates
Summary : Parser like ConfigParser but for updating configuration files
URL : https://github.com/pyscaffold/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
:
: The 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.