Skip to content
Sections
>> Trisquel >> 软件包 >> etiona >> python >> python3-aioxmlrpc
etiona  ] [  nabia  ] [  aramo  ]
[ 源代码: aioxmlrpc  ]

软件包: python3-aioxmlrpc (0.5-1)

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()

其他与 python3-aioxmlrpc 有关的软件包

  • 依赖
  • 推荐
  • 建议
  • dep: python3
    interactive high-level object-oriented language (default python3 version)
  • dep: python3-aiohttp
    http client/server for asyncio

下载 python3-aioxmlrpc

下载可用于所有硬件架构的
硬件架构 软件包大小 安装后大小 文件
all 6.8 kB39 kB [文件列表]