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

Last updated: July 02,2024

1. Install "python39-async-lru" package

Here is a brief guide to show you how to install python39-async-lru on openSuSE Tumbleweed

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

2. Uninstall "python39-async-lru" package

This guide covers the steps necessary to uninstall python39-async-lru on openSuSE Tumbleweed:

$ sudo zypper remove python39-async-lru

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

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