XML-RPC client
Project description
Summary
VxRPC implements XML-RPC client. It is based on xmlrpc-c client library with cURL transport. The implementation is faster, than standard xmlrpclib at least in 10 times.
Example of usage
#!/usr/bin/env python import vxrpc try: rpc_call = vxrpc.Caller('http://your_rpc_server') response = rpc_call('Id::get_session', login='user') except vxrpc.Exception as e: print e.message
CHANGES
0.2.5 (19.01.2012)
- Added support of Python 3.
0.2.4 (12.07.2011)
- Fixed bug with linking libxmlrpc.
0.2.3 (11.07.2011)
- Fixed bug with linking xmlrpc_xmlparse.
0.2.2 (11.07.2011)
- Fixed build on Debian.
0.2.1 (07.04.2011)
- Fixed build without Cython.
0.2.0 (07.04.2011)
- Added positional arguments to Caller.__call__.
0.1.1 (06.04.2011)
- Fixed build with Cython.
0.1.0 (06.04.2011)
- Initial release.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
vxrpc-0.2.5.tar.gz
(70.5 kB
view hashes)