Metadata-Version: 1.1
Name: vxrpc
Version: 0.1.0
Summary: XML-RPC client
Home-page: http://bitbucket.org/klepa/vxrpc
Author: Konstantin Lepa
Author-email: konstantin.lepa@gmail.com
License: MIT
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
        
        .. _xmlrpc-c: http://xmlrpc-c.sourceforge.net/
        .. _cURL: http://curl.haxx.se/
        
        CHANGES
        =======
        
        0.1.0 (06.04.2011)
        ------------------
        
        - Initial release.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Cython
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet
Requires: Cython(>=0.14)
