1.thrift版本号与下载地址:
https://codeload.github.com/apache/thrift/tar.gz/0.11.0
2.python版本:
Python 3.6.4 :: Anaconda, Inc.
经常看到网上抱怨thrift对python2的支持很好,但是python3存在兼容性的问题。然而实际上,thrift已经能够支持了。
例子参考这篇文章:https://juejin.im/post/5a8f0a335188257a5b047451
1.example.thrift
namespace py example
struct Data {
1: string text
}
service format_data {
Data do_format(1:Data data),
}
2.thrift --gen py example.thrift
3.server.py
4.client.py