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

Last updated: April 29,2024

1. Install "python3-aioxmlrpc" package

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

$ sudo apt update $ sudo apt install python3-aioxmlrpc

2. Uninstall "python3-aioxmlrpc" package

Please follow the steps below to uninstall python3-aioxmlrpc on Kali Linux:

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

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

Package: python3-aioxmlrpc
Source: aioxmlrpc
Version: 0.7.0-1
Installed-Size: 27
Maintainer: Piotr Ożarowski
Architecture: all
Depends: python3:any, python3-aiohttp
Size: 6292
SHA256: 453487885a48ad7c89a0633973e1867d6c511e7b47be091fd1365f05fef0abe4
SHA1: 44f3b94879d246aacc6f1b37b0bbf59815877255
MD5sum: 3ec526c7c241926bb311caa8787cb490
Description: XML-RPC for asyncio
Asyncio version of the standard lib xmlrpc.
.
Currently only aioxmlrpc.client, which works like xmlrpc.client but
with coroutine is implemented.
.
aioxmlrpc is based on aiohttp for the transport, and just patch
the necessary from the Python standard library to get it working.
.
Example of usage:
.
import asyncio
from aioxmlrpc.client import ServerProxy
.
@asyncio.coroutine
def print_gandi_api_version():
api = ServerProxy('https://rpc.gandi.net/xmlrpc/')
result = yield from api.version.info()
print(result)
.
if __name__ == '__main__':
loop = asyncio.get_event_loop()
loop.run_until_complete(print_gandi_api_version())
loop.stop()
Description-md5:
Homepage: https://github.com/mardiros/aioxmlrpc
Section: python
Priority: optional
Filename: pool/main/a/aioxmlrpc/python3-aioxmlrpc_0.7.0-1_all.deb