Source: aioxmlrpc Section: python Priority: optional Maintainer: Piotr Ożarowski Uploaders: Debian Python Modules Team Build-Depends: debhelper (>= 9), dh-python, python3-all, python3-setuptools, python3-aiohttp Standards-Version: 4.1.1 Homepage: https://github.com/mardiros/aioxmlrpc Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/aioxmlrpc.git Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/aioxmlrpc.git X-Python3-Version: >= 3.3 Package: python3-aioxmlrpc Architecture: all Depends: ${misc:Depends}, ${python3:Depends}, python3-aiohttp 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()