How to Install and Uninstall python3-backoff.noarch Package on CentOS Stream 9

Last updated: October 14,2024

1. Install "python3-backoff.noarch" package

In this section, we are going to explain the necessary steps to install python3-backoff.noarch on CentOS Stream 9

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

2. Uninstall "python3-backoff.noarch" package

Here is a brief guide to show you how to uninstall python3-backoff.noarch on CentOS Stream 9:

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

3. Information about the python3-backoff.noarch package on CentOS Stream 9

Last metadata expiration check: 0:34:34 ago on Sat Mar 16 16:03:45 2024.
Available Packages
Name : python3-backoff
Version : 2.2.1
Release : 1.el9
Architecture : noarch
Size : 31 k
Source : python-backoff-2.2.1-1.el9.src.rpm
Repository : epel
Summary : Python library providing function decorators for configurable backoff and retry
URL : https://github.com/litl/backoff
License : MIT
Description : This module provides function decorators which can be used to wrap
: a function such that it will be retried until some condition is met.
: It is meant to be of use when accessing unreliable resources with the
: potential for intermittent failures i.e. network resources and external
: APIs. Somewhat more generally, it may also be of use for dynamically
: polling resources for externally generated content.