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

Last updated: May 18,2024

1. Install "python2-backoff" package

Please follow the guidelines below to install python2-backoff on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python2-backoff

2. Uninstall "python2-backoff" package

Please follow the steps below to uninstall python2-backoff on openSUSE Leap:

$ sudo zypper remove python2-backoff

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

Information for package python2-backoff:
----------------------------------------
Repository : Main Repository
Name : python2-backoff
Version : 1.10.0-bp153.1.23
Arch : noarch
Vendor : openSUSE
Installed Size : 67,7 KiB
Installed : No
Status : not installed
Source package : python-backoff-1.10.0-bp153.1.23.src
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.