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

Last updated: November 08,2024

1. Install "python311-pylru" package

Please follow the step by step instructions below to install python311-pylru on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python311-pylru

2. Uninstall "python311-pylru" package

In this section, we are going to explain the necessary steps to uninstall python311-pylru on openSuSE Tumbleweed:

$ sudo zypper remove python311-pylru

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

Information for package python311-pylru:
----------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python311-pylru
Version : 1.2.1-1.9
Arch : noarch
Vendor : openSUSE
Installed Size : 107.3 KiB
Installed : No
Status : not installed
Source package : python-pylru-1.2.1-1.9.src
Upstream URL : https://github.com/jlhutch/pylru
Summary : A least recently used (LRU) cache implementation
Description :
Pylru implements a true LRU cache along with several support classes. The cache is efficient and written in pure Python. It works with Python 2.6+ including the 3.x series. Basic operations (lookup, insert, delete) all run in a constant amount of time. Pylru provides a cache class with a simple dict interface. It also provides classes to wrap any object that has a dict interface with a cache. Both write-through and write-back semantics are supported. Pylru also provides classes to wrap functions in a similar way, including a function decorator.