How to Install and Uninstall python311-async-lru Package on openSuSE Tumbleweed

Last updated: October 06,2024

1. Install "python311-async-lru" package

This tutorial shows how to install python311-async-lru on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python311-async-lru

2. Uninstall "python311-async-lru" package

This tutorial shows how to uninstall python311-async-lru on openSuSE Tumbleweed:

$ sudo zypper remove python311-async-lru

3. Information about the python311-async-lru package on openSuSE Tumbleweed

Information for package python311-async-lru:
--------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python311-async-lru
Version : 2.0.4-1.3
Arch : noarch
Vendor : openSUSE
Installed Size : 37.2 KiB
Installed : No
Status : not installed
Source package : python-async-lru-2.0.4-1.3.src
Upstream URL : https://github.com/aio-libs/async-lru
Summary : Simple LRU cache for asyncio
Description :
This package is a port of Python's built-in functools.lru_cache function for asyncio.
To better handle async behaviour, it also ensures multiple concurrent calls will only
result in 1 call to the wrapped function, with all awaits receiving the result of that
call when it completes.