Metadata-Version: 1.0
Name: mustaine
Version: 0.1.5
Summary: Hessian RPC Library
Home-page: http://github.com/bgilmore/mustaine
Author: Brandon Gilmore
Author-email: brandon@mg2.org
License: BSD
Description: About
        -----
        
        Mustaine is a Python implemention of the `Hessian 1.0.2 specification
        <http://hessian.caucho.com/doc/hessian-1.0-spec.xtp>`_, a binary web services
        protocol. The library currently provides a standard HTTP-based client as well
        as a general-purpose serialization library. Server support is planned.
        
        Usage
        -----
        
        Using `mustaine.client`
        +++++++++++++++++++++++
        
        Testing against `Caucho <http://hessian.caucho.com/>`_'s reference service::
        
          from mustaine.client import HessianProxy
          service = HessianProxy("http://hessian.caucho.com/test/test")
          print service.replyDate_1()
        
        Source
        ------
        
        Up-to-date sources and documentation can always be found at the `mustaine
        GitHub site <http://github.com/bgilmore/mustaine>`_.
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Object Brokering
Classifier: Topic :: Software Development :: Libraries
