Pure python implemention of Apache Thrift.
Project description
ThriftPy is a pure python implemention of Apache Thrift in a pythonic way.
Documentation: https://thriftpy.readthedocs.org/
Installation
Install with pip
$ pip install thriftpy
You may also install cython first to build cython extension locally.
$ pip install cython thriftpy
Code Demo
ThriftPy make it super easy to write server/client code with thrift. Let’s checkout this simple pingpong service demo.
We need a ‘pingpong.thrift’ file:
service PingPong { string ping(), }
Then we can make a server:
import thriftpy
from thriftpy.rpc import make_server
pingpong = thriftpy.load("pingpong.thrift")
class Dispatcher(object):
def ping(self):
return "pong"
server = make_server(pingpong.PingPong, Dispatcher(), '127.0.0.1', 6000)
server.serve()
And a client:
import thriftpy
from thriftpy.rpc import make_client
pingpong = thriftpy.load("pingpong.thrift")
client = make_client(pingpong.PingPong, '127.0.0.1', 6000)
client.ping()
See, it’s that easy!
You can refer to ‘examples’ and ‘tests’ directory in source code for more usage examples.
Features
Currently ThriftPy have these features (also advantages over the upstream python lib):
Supports python2.7 to python3.4 and pypy.
Compatible with Apache Thirft. You can use ThriftPy together with the official implemention servers and clients, such as a upstream server with a thriftpy client or the opposite.
Currently implemented protocols and transports:
binary protocol (python and cython implemention)
buffered transport
tornado server and client (with tornado 4.0)
framed transport
Can directly load thrift file as module, the sdk code will be generated on the fly.
For example, pingpong = thriftpy.load("pingpong.thrift") will load ‘pingpong.thrift’ as ‘pingpong’ module.
Or, when import hook enabled, directly use import pingpong_thrift to import the ‘pingpong.thrift’ file as module.
Pure python, standalone implemention. No longer need to compile & install the ‘thrift’ package. All you need is thrift file.
Easy RPC server/client setup.
Benchmarks
Some benchmark results:
# apache thrift py binary binary protocol struct benchmark for 100000 times: encode -> 3.74061203003 decode -> 5.02829790115 # apache thrift c binary accelerated protocol struct benchmark for 100000 times: encode -> 0.398949146271 decode -> 0.536000013351 # thriftpy & pypy2.3 binary protocol struct benchmark for 100000 times: encode -> 0.413738965988 decode -> 0.605606079102 # thriftpy & py3.4 binary protocol struct benchmark for 100000 times: encode -> 3.291545867919922 decode -> 4.337666034698486 # thriftpy & py3.4 + cython cybin protocol struct benchmark for 100000 times: encode -> 0.5828649997711182 decode -> 0.8259570598602295
Checkout the benchmark/benchmark.rst for detailed benchmark scripts and scores.
TODOs
Currently ThriftPy is not fully compatible with thrift, I only implemented the features we need in ele.me.
These todos need to be done, but may not be completed by me in near future, so contributions are very welcome!
other protocol and transport except binary and buffered transport.
map type const.
‘namespace’, ‘extends’, ‘import’, ‘oneway’ etc keywords.
the ‘.thrift’ file parser will skip a section if it has syntax error. A better warning message should be given.
Changelogs
Contribute
Fork the repo and make changes.
Write a test which shows a bug was fixed or the feature works as expected.
Make sure travis-ci test succeed.
Send pull request.
Contributors
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file thriftpy-0.1.7.tar.gz
.
File metadata
- Download URL: thriftpy-0.1.7.tar.gz
- Upload date:
- Size: 78.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5002a80dc150421f37e3760af05f3568fe906da2b7bc35badebe6ce0a1cbe9af |
|
MD5 | 62f8a132a4aefee7257b7f1365005d8f |
|
BLAKE2b-256 | da5b88ee7074ed1fc03fa0ce85e574ecdd59ae57bf0bf180b13bfa3caf3d09d6 |