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

Last updated: May 23,2024

1. Install "python310-stevedore" package

Please follow the guidance below to install python310-stevedore on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python310-stevedore

2. Uninstall "python310-stevedore" package

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

$ sudo zypper remove python310-stevedore

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

Information for package python310-stevedore:
--------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python310-stevedore
Version : 5.1.0-2.2
Arch : noarch
Vendor : openSUSE
Installed Size : 281.6 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.