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

Last updated: October 05,2024

1. Install "python310-async-lru" package

Please follow the guidelines below to install python310-async-lru on openSuSE Tumbleweed

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

2. Uninstall "python310-async-lru" package

Please follow the guidelines below to uninstall python310-async-lru on openSuSE Tumbleweed:

$ sudo zypper remove python310-async-lru

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

Information for package python310-async-lru:
--------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python310-async-lru
Version : 2.0.4-1.3
Arch : noarch
Vendor : openSUSE
Installed Size : 29.4 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.