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

Last updated: November 23,2024

1. Install "python312-stevedore" package

This guide let you learn how to install python312-stevedore on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python312-stevedore

2. Uninstall "python312-stevedore" package

This tutorial shows how to uninstall python312-stevedore on openSuSE Tumbleweed:

$ sudo zypper remove python312-stevedore

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

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