Skip to main content

A library to serialize and deserialize Thrift values.

Project description

This project is no longer active. See https://github.com/thriftrw/thriftrw-python/issues/164.

thriftrw

test coverage docs

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

Documentation is available on Read The Docs.

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.

  • 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,

# 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
# 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)

Message Envelopes

Note that this example sends and receives just the request/response payload. It does not wrap the payload in a message envelope as expected by Apache Thrift. If you want to send or receive standard Apache Thrift requests to talk to other Apache Thrift services, you have to use the loads.message and dumps.message APIs. For example,

# client.py

def new_post():
    post = blog.PostDetails(...)
    request = BlogService.newPost.request(post)
    payload = blog.dumps.message(request)
    # ^ Instead of using blog.dumps, we use blog.dumps.message to indicate
    # that we want the request wrapped in a message envelope.


    response_payload = send_to_server(payload)

    # Similarly, instead of using blog.loads, we use blog.loads.message to
    # indicate that we want to parse a response stored inside a message.
    response_message = blog.loads.message(BlogService, response_payload)
    response = response_message.body

    if response.unauthorized is not None:
        raise response.unauthorized
    else:
        return response.success
# server.py

def handle_request(request_payload):
    message = blog.loads.message(BlogService, request_payload)
    if message.name == 'newPost':
        request = message.body
        # ...
        response = BlogService.newPost.response(success=post_uuid)
        return blog.dumps.message(response, seqid=message.seqid)
        # As before, we use blog.dumps.message instead of blog.dumps.
        # It is important that the server use the same seqid in the
        # response as what was used in the request, otherwise the client
        # will not be able to process out-of-order responses.
    else:
        raise Exception('Unknown method %s' % message.name)

For more information, see Overview.

Caveats

  • Only the Thrift Binary protocol is supported at this time.

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

thriftrw-1.9.0.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

thriftrw-1.9.0-cp311-cp311-macosx_13_0_arm64.whl (880.6 kB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

thriftrw-1.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

File details

Details for the file thriftrw-1.9.0.tar.gz.

File metadata

  • Download URL: thriftrw-1.9.0.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.2

File hashes

Hashes for thriftrw-1.9.0.tar.gz
Algorithm Hash digest
SHA256 e2563146a8cfd1cd581a46d87f5866186adb2f979f232c86f5f03fcf3b60f029
MD5 3a843dbdc1d760dec87c4e63dba61096
BLAKE2b-256 e57e6ce8e12e12a7524c0884963d8512c9160dc13ec9965804b49df99238dbb5

See more details on using hashes here.

File details

Details for the file thriftrw-1.9.0-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for thriftrw-1.9.0-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 58965b5ab94ebde4cbed4e40b35729a98c9ed52fce676b0889be6cf18751f627
MD5 f31482bff0f34e575148cf7c171dbe88
BLAKE2b-256 98129fb03372474bc3df24b670d3dc261516ab7a390a6e14eb42e9e0184625b5

See more details on using hashes here.

File details

Details for the file thriftrw-1.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for thriftrw-1.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9124b1ea73ce76654f99a7ae15246b39015ab091d75b18fe60c9808115c1b83
MD5 3765810154cacf7601caad5c0367170a
BLAKE2b-256 cb2719387d7c3feb5b7a6ee26f3edf55848a13a3493da5d5caee1ed2bd7cb3c8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page