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

Last updated: July 03,2024

1. Install "python310-lazy" package

Here is a brief guide to show you how to install python310-lazy on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python310-lazy

2. Uninstall "python310-lazy" package

Please follow the instructions below to uninstall python310-lazy on openSuSE Tumbleweed:

$ sudo zypper remove python310-lazy

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

Information for package python310-lazy:
---------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python310-lazy
Version : 1.6-1.4
Arch : noarch
Vendor : openSUSE
Installed Size : 14.1 KiB
Installed : No
Status : not installed
Source package : python-lazy-1.6-1.4.src
Upstream URL : https://github.com/stefanholek/lazy
Summary : Lazy attributes for Python objects
Description :
Lazy attributes are computed attributes that are evaluated only once,
the first time they are used. Subsequent uses return the results of
the first call. They come handy when code should run
* late, i.e. just before it is needed, and
* once, i.e. not twice, in the lifetime of an object.
You can think of it as deferred initialization. The possibilities are
endless.