Compatibility shim that exposes thriftpy2 under the historical thriftpy name.
Project description
thriftpy is now a thin shim around thriftpy2. The actual implementation lives in thriftpy2, and installing thriftpy just re-exports it under the historical thriftpy name. The two packages are released in sync and contain identical functionality at the same version, so you can pick whichever name you prefer.
ThriftPy is a pure python implementation 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
pingpong_thrift = thriftpy.load("pingpong.thrift", module_name="pingpong_thrift")
from thriftpy.rpc import make_server
class Dispatcher(object):
def ping(self):
return "pong"
server = make_server(pingpong_thrift.PingPong, Dispatcher(), '127.0.0.1', 6000)
server.serve()
And a client:
import thriftpy
pingpong_thrift = thriftpy.load("pingpong.thrift", module_name="pingpong_thrift")
from thriftpy.rpc import make_client
client = make_client(pingpong_thrift.PingPong, '127.0.0.1', 6000)
print(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 Python 2.7, Python 3.4+, PyPy and PyPy3.
Pure python implementation. No longer need to compile & install the ‘thrift’ package. All you need is thriftpy and thrift file.
Compatible with Apache Thrift. You can use ThriftPy together with the official implementation 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)
compact protocol (python and cython)
json protocol
buffered transport (python & cython)
framed transport
tornado server and client (with tornado 4.0)
http server and client
Can directly load thrift file as module, the sdk code will be generated on the fly.
For example, pingpong_thrift = thriftpy.load("pingpong.thrift", module_name="pingpong_thrift") will load ‘pingpong.thrift’ as ‘pingpong_thrift’ module.
Or, when import hook enabled by thriftpy.install_import_hook(), you can directly use import pingpong_thrift to import the ‘pingpong.thrift’ file as module, you may also use from pingpong_thrift import PingService to import specific object from the thrift module.
Easy RPC server/client setup.
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 or tox tests succeed.
Send pull request.
Contributors
Changelog
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file thriftpy-0.6.0.tar.gz.
File metadata
- Download URL: thriftpy-0.6.0.tar.gz
- Upload date:
- Size: 8.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad4d0eea24037176a5041a7ad0ea1e581edda82dbf9b10d4a02c8bd813496bab
|
|
| MD5 |
18e24d7c55694a270950f179d8abcb8b
|
|
| BLAKE2b-256 |
e96afb8b5e6736e0de9f9865ede11afb78915629696ea406952655df91108431
|
File details
Details for the file thriftpy-0.6.0-py3-none-any.whl.
File metadata
- Download URL: thriftpy-0.6.0-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e997b8b07e801629bc2290adaa24956055b505bd5522f3b0a10b841f162e3ab4
|
|
| MD5 |
357249b3527bf8dbde289159dc06dd95
|
|
| BLAKE2b-256 |
0e6464686ad32261feeb9d0913ced83adea02fbdd9b9f7fc4cb48fd80926725b
|