python-hessian

Hessian RPC Library


License
BSD-3-Clause
Install
pip install python-hessian==1.1.2

Documentation

python-hessian

https://travis-ci.org/theatlantic/python-hessian.svg?branch=master

python-hessian is a Python implemention of Hessian, a binary web services protocol. It supports the Hessian 1.0.2 specification and the Hessian 2.0 Serialization Protocol. The library is a fork of mustaine, which is no longer maintained. It provides a standard HTTP-based client as well as a general-purpose serialization library.

Usage

Using pyhessian.client

Testing against Caucho’s reference service:

from pyhessian.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 python-hessian GitHub site.