How to Install and Uninstall python311-stevedore Package on openSuSE Tumbleweed

Last updated: July 07,2024

1. Install "python311-stevedore" package

Please follow the guidelines below to install python311-stevedore on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python311-stevedore

2. Uninstall "python311-stevedore" package

This is a short guide on how to uninstall python311-stevedore on openSuSE Tumbleweed:

$ sudo zypper remove python311-stevedore

3. Information about the python311-stevedore package on openSuSE Tumbleweed

Information for package python311-stevedore:
--------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python311-stevedore
Version : 5.1.0-2.2
Arch : noarch
Vendor : openSUSE
Installed Size : 344.3 KiB
Installed : No
Status : not installed
Source package : python-stevedore-5.1.0-2.2.src
Upstream URL : https://docs.openstack.org/stevedore/latest/
Summary : Manage dynamic plugins for Python applications
Description :
Python makes loading code dynamically easy, allowing you to configure
and extend your application by discovering and loading extensions
(plugins) at runtime. Many applications implement their own
library for doing this, using ``__import__`` or ``importlib``.
stevedore avoids creating yet another extension
mechanism by building on top of setuptools entry points. The code
for managing entry points tends to be repetitive, though, so stevedore
provides manager classes for implementing common patterns for using
dynamically loaded extensions.