Giter Club home page Giter Club logo

jsonthrift's Introduction

jsonthrift Travis PyPI

jsonthrift is implemented for serializing and deserializing json to/from thrift.

Installation

   pip install jsonthrift

Usage

You can use it like this:

    >>> from jsonthrift.jsonthrift import JsonThrift
    >>> transport = 'TBufferedTransport'
    >>> protocol = 'TBinaryProtocol'
    >>> thrift_file = 'tutorial.thrift'
    >>> service = 'Calculator'
    >>> method = 'add'
    >>> params = {'num1': 1, 'num2': 3}

    >>> jt = JsonThrift(transport, protocol, thrift_file, service)
    >>> msg = jt.pack_request(method, params, 1)
    >>> response = send_and_recv(msg) # send msg to server, receive response
    >>> result = jt.unpack_response(response)[4]
    >>> print result
    {'success': 4}

    >>> method = 'calculate'
    >>> params = {'logid': 1, 'w':{'op': 4, 'num1': 1, 'num2': 0}}
    >>> msg = jt.pack_request(method, params, 2)
    >>> response = send_and_recv(msg) # send msg to server, receive response
    >>> result = jt.unpack_response(response)[4]
    >>> print result
    {'ouch': {'whatOp': 4, 'why': 'Cannot divide by 0'}}

    >>> # unpack_response returns a tuple, which contains:
    >>> #   message size(TFramedTransport)/None(TBufferedTransport),
    >>> #   message type, will be 2 for thrift REPLY message
    >>> #   method
    >>> #   sequence id
    >>> #   return value

Note

Only TBufferedTransport/TFramedTransport and TBinaryProtocol supported now.

jsonthrift's People

Contributors

wkplus avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.