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

Last updated: July 02,2024

1. Install "python3-injector-doc.noarch" package

Here is a brief guide to show you how to install python3-injector-doc.noarch on Fedora 35

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

2. Uninstall "python3-injector-doc.noarch" package

Here is a brief guide to show you how to uninstall python3-injector-doc.noarch on Fedora 35:

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

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

Last metadata expiration check: 3:12:31 ago on Wed Sep 7 08:25:01 2022.
Available Packages
Name : python3-injector-doc
Version : 0.19.0
Release : 1.fc35
Architecture : noarch
Size : 183 k
Source : python-injector-0.19.0-1.fc35.src.rpm
Repository : updates
Summary : Documentation for Python dependency injection framework
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.