How to Install and Uninstall python3-aiomcache Package on Kali Linux

Last updated: May 20,2024

1. Install "python3-aiomcache" package

Please follow the step by step instructions below to install python3-aiomcache on Kali Linux

$ sudo apt update $ sudo apt install python3-aiomcache

2. Uninstall "python3-aiomcache" package

This tutorial shows how to uninstall python3-aiomcache on Kali Linux:

$ sudo apt remove python3-aiomcache $ sudo apt autoclean && sudo apt autoremove

3. Information about the python3-aiomcache package on Kali Linux

Package: python3-aiomcache
Source: aiomcache
Version: 0.8.1-2
Installed-Size: 49
Maintainer: Gianfranco Costamagna
Architecture: all
Depends: python3-typing-extensions | python3 (>> 3.11), python3:any
Size: 10456
SHA256: 3d54f47b7dff4efcf411067fdd85f80aadd717c1cb4bc7aac9e2f95696e1bbd5
SHA1: 22cac667a537e94a2873e4f4d723ddb5ae654ca0
MD5sum: d419d2adaf1f762795f75e53cb8a4031
Description: Minimal pure python memcached client
memcached client for asyncio
The API looks very similar to the other memcache clients:
.
.. code:: python
.
import asyncio
import aiomcache
.
async def hello_aiomcache():
mc = aiomcache.Client("127.0.0.1", 11211)
await mc.set(b"some_key", b"Some value")
value = await mc.get(b"some_key")
print(value)
values = await mc.multi_get(b"some_key", b"other_key")
print(values)
await mc.delete(b"another_key")
.
asyncio.run(hello_aiomcache())
.
.
Version 0.8 introduces `FlagClient` which allows registering callbacks to
set or process flags. See `examples/simple_with_flag_handler.py`
Description-md5:
Homepage: https://github.com/aio-libs/aiomcache/
Section: python
Priority: optional
Filename: pool/main/a/aiomcache/python3-aiomcache_0.8.1-2_all.deb