How to Install and Uninstall python3-backoff Package on openSUSE Leap

Last updated: July 01,2024

1. Install "python3-backoff" package

Please follow the instructions below to install python3-backoff on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python3-backoff

2. Uninstall "python3-backoff" package

In this section, we are going to explain the necessary steps to uninstall python3-backoff on openSUSE Leap:

$ sudo zypper remove python3-backoff

3. Information about the python3-backoff package on openSUSE Leap

Information for package python3-backoff:
----------------------------------------
Repository : Main Repository
Name : python3-backoff
Version : 1.10.0-bp155.2.12
Arch : noarch
Vendor : openSUSE
Installed Size : 76.7 KiB
Installed : No
Status : not installed
Source package : python-backoff-1.10.0-bp155.2.12.src
Upstream URL : https://github.com/litl/backoff
Summary : Function decoration for backoff and retry
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.
Decorators support both regular functions for synchronous code and
`asyncio `_'s coroutines
for asynchronous code.