How to Install and Uninstall python3-aioxmlrpc Package on Ubuntu 21.10 (Impish Indri)

Last updated: September 28,2024

1. Install "python3-aioxmlrpc" package

In this section, we are going to explain the necessary steps to install python3-aioxmlrpc on Ubuntu 21.10 (Impish Indri)

$ sudo apt update $ sudo apt install python3-aioxmlrpc

2. Uninstall "python3-aioxmlrpc" package

Please follow the guidance below to uninstall python3-aioxmlrpc on Ubuntu 21.10 (Impish Indri):

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

3. Information about the python3-aioxmlrpc package on Ubuntu 21.10 (Impish Indri)

Package: python3-aioxmlrpc
Architecture: all
Version: 0.5-1.1
Priority: optional
Section: universe/python
Source: aioxmlrpc
Origin: Ubuntu
Maintainer: Ubuntu Developers
Original-Maintainer: Piotr Ożarowski
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Installed-Size: 39
Depends: python3-aiohttp, python3:any (>= 3.3~)
Filename: pool/universe/a/aioxmlrpc/python3-aioxmlrpc_0.5-1.1_all.deb
Size: 7152
MD5sum: de9aabb4746b37625101c3edd2a3c53b
SHA1: 0fed537b5d45dd76ef5f9e6f6cbc5887753a4279
SHA256: c9a0db412a077285018d8a9bf9673713ff2247a21b4d5c6238a36c50c1d8d6fd
SHA512: 8d78f6e1ead8256c85a5440051f4985eab46c034e61a7dd0d10be92a098cf8fffe4bc1f55133a8bd5c21f3a6540afe7cc2edaf3454643d94ab288c94d4c44bff
Homepage: https://github.com/mardiros/aioxmlrpc
Description-en: 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: b3c079341e60fb1d4fa86b00554e7210