python3-aioxmlrpc
XML-RPC for asyncio
Description
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()
Upload more screenshots
Please help extend the collection of screenshots. Just make a screenshot and upload it here. You don't need to register or anything.
Upload a screenshotHint: upload an image here from your clipboard with Ctrl-V
Homepage
https://github.com/mardiros/aioxmlrpc
Install this software package
If the package is available for the distribution you are currently using on your computer then install the software by clicking on…
Install python3-aioxmlrpc