aioxmlrpc 0.7.0-1 source package in Ubuntu

Changelog

aioxmlrpc (0.7.0-1) unstable; urgency=medium

  * New upstream release

 -- Piotr Ożarowski <email address hidden>  Fri, 21 Jul 2023 14:09:45 +0200

Upload details

Uploaded by:
Piotr Ożarowski
Uploaded to:
Sid
Original maintainer:
Piotr Ożarowski
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Noble release universe misc
Mantic release universe misc

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
aioxmlrpc_0.7.0-1.dsc 2.0 KiB abfdffc8c234b8bac62c635fd27b0fa70ff1a22c25f641b74b3fbc160da6cc9e
aioxmlrpc_0.7.0.orig.tar.gz 15.6 KiB 9a9c97242cef126125ffa1d7e4ed3629dc53ddee6069c0b682140fc44aa8ddf8
aioxmlrpc_0.7.0-1.debian.tar.xz 2.7 KiB 8977b97bf2f7e8eb9d0d464caa77e0439e2518ed2e6e8f4a8b22361a880feb28

Available diffs

No changes file available.

Binary packages built by this source

python3-aioxmlrpc: 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()