How to Install and Uninstall python3-aioxmlrpc Package on Ubuntu 16.04 LTS (Xenial Xerus)

Last updated: May 16,2024

1. Install "python3-aioxmlrpc" package

Please follow the step by step instructions below to install python3-aioxmlrpc on Ubuntu 16.04 LTS (Xenial Xerus)

$ sudo apt update $ sudo apt install python3-aioxmlrpc

2. Uninstall "python3-aioxmlrpc" package

Please follow the guidance below to uninstall python3-aioxmlrpc on Ubuntu 16.04 LTS (Xenial Xerus):

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

3. Information about the python3-aioxmlrpc package on Ubuntu 16.04 LTS (Xenial Xerus)

Package: python3-aioxmlrpc
Priority: optional
Section: universe/python
Installed-Size: 34
Maintainer: Ubuntu Developers
Original-Maintainer: Piotr Ożarowski
Architecture: all
Source: aioxmlrpc
Version: 0.1-1
Depends: python3-aiohttp, python3:any (>= 3.3.2-2~)
Filename: pool/universe/a/aioxmlrpc/python3-aioxmlrpc_0.1-1_all.deb
Size: 6032
MD5sum: d4b7660b1b69afeebb6d31026bc1eb38
SHA1: 2c7ef6d12f8ca54bddd44e8ff774bd76a4fb9860
SHA256: 319d94aec3362e022bc925de8c879a02e2e44a58af388c4c168ec25295163908
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
Homepage: https://github.com/mardiros/aioxmlrpc
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Origin: Ubuntu