Metadata-Version: 2.0
Name: thriftrw
Version: 0.3.3
Summary: A library to serialize and deserialize Thrift values.
Home-page: https://github.com/uber/thriftrw-python
Author: Abhinav Gupta
Author-email: abg@uber.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: six
Requires-Dist: ply

``thriftrw``
============

|build| |coverage| |docs|

``thriftrw`` is a Python library to serialize and deserialize Thrift types.

`Documentation <http://thriftrw.readthedocs.org/en/latest/>`_ is available on
Read The Docs.

.. |build| image:: https://travis-ci.org/uber/thriftrw-python.svg?branch=master
    :target: https://travis-ci.org/uber/thriftrw-python

.. |coverage| image:: https://coveralls.io/repos/uber/thriftrw-python/badge.svg?branch=master&service=github
    :target: https://coveralls.io/github/uber/thriftrw-python?branch=master


.. |docs| image:: https://readthedocs.org/projects/thriftrw/badge/?version=latest
    :target: https://readthedocs.org/projects/thriftrw/?badge=latest

Features
--------

* No code generation. The ``.thrift`` files are parsed and compiled in-memory
  at runtime.
* No assumptions about how bytes are sent or received. The library
  concerns itself with serialization and deserialization only.
* Supports Python 2 and 3.
* Forward and cyclic references in types.

Example
-------

Given the ``.thrift`` file,::

    // blog.thrift

    typedef string PostUUID

    typedef binary RichText

    union Body {
        1: string plainText
        2: RichText richText
    }

    struct PostDetails {
        1: required string author
        2: required string subject
        3: required Body body
    }

    exception UnauthorizedRequestError {
    }

    service BlogService {
        PostUUID newPost(1: PostDetails post)
            throws (1: UnauthorizedRequestError unauthorized);
    }


You can use the library to send and receive requests and responses like so,

.. code-block:: python

    # client.py

    import thriftrw

    blog = thriftrw.load('blog.thrift')
    BlogService = blog.BlogService

    def new_post():
        post = blog.PostDetails(
            author='...',
            subject='...',
            body=blog.Body(plainText='Hello, world!')
        )

        request = BlogService.newPost.request(post)
        payload = blog.dumps(request)

        # send_to_server is implemented by the user.
        response_payload = send_to_server(payload)
        response = blog.loads(BlogService.newPost.response, response_payload)
        if response.unauthorized is not None:
            raise response.unauthorized
        else:
            return response.success


.. code-block:: python

    # server.py

    import thriftrw

    blog = thriftrw.load('blog.thrift')
    BlogService = blog.BlogService

    # The user's server handler calls handle_new_post with the payload.
    def handle_new_post(request_payload):
        request = blog.loads(BlogService.newPost.request, request_payload)
        if request.post.author != 'admin':
            response = BlogService.newPost.response(
                unauthorized=blog.UnauthorizedRequestError()
            )
        else:
            # create_post is implemented by the user.
            post_uuid = create_post(request.post)
            response = BlogService.newPost.response(success=post_uuid)

        return blog.dumps(response)

Caveats
-------

* Only the Thrift Binary protocol is supported at this time.
* Message wrappers for Thrift calls and responses are not supported at this
  time.

Related
-------

`thriftrw <https://github.com/uber/thriftrw>`_ provides the same functionality
for Node.js.

License
-------

::

    Copyright (c) 2015 Uber Technologies, Inc.

    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    furnished to do so, subject to the following conditions:
    The above copyright notice and this permission notice shall be included in
    all copies or substantial portions of the Software.
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    THE SOFTWARE.


