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

Last updated: July 01,2024

1. Install "python3-injector.noarch" package

Learn how to install python3-injector.noarch on Fedora 34

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

2. Uninstall "python3-injector.noarch" package

Please follow the steps below to uninstall python3-injector.noarch on Fedora 34:

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

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

Last metadata expiration check: 5:20:35 ago on Tue Sep 6 02:10:55 2022.
Available Packages
Name : python3-injector
Version : 0.19.0
Release : 1.fc34
Architecture : noarch
Size : 40 k
Source : python-injector-0.19.0-1.fc34.src.rpm
Repository : updates
Summary : Python dependency injection framework inspired by Guice
URL : https://github.com/alecthomas/injector
License : BSD
Description : Dependency injection as a formal pattern is less useful in Python than in other
: languages, primarily due to its support for keyword arguments, the ease with
: which objects can be mocked, and its dynamic nature.
:
: That said, a framework for assisting in this process can remove a lot of
: boiler-plate from larger applications. That's where Injector can help. It
: automatically and transitively provides keyword arguments with their values. As
: an added benefit, Injector encourages nicely compartmentalised code through the
: use of `Module` s.
:
: While being inspired by Guice, it does not slavishly replicate its API.
: Providing a Pythonic API trumps faithfulness.