2007-03-06 00:06:27 +00:00
|
|
|
Thrift Python Software Library
|
|
|
|
|
|
|
|
Author: Mark Slee (mcslee@facebook.com)
|
2007-09-05 00:47:32 +00:00
|
|
|
Last Modified: 2007-Sep-04
|
2007-03-06 00:06:27 +00:00
|
|
|
|
|
|
|
Thrift is distributed under the Thrift open source software license.
|
|
|
|
Please see the included LICENSE file.
|
|
|
|
|
|
|
|
Using Thrift with Python
|
|
|
|
========================
|
|
|
|
|
|
|
|
Thrift is provided as a set of Python packages. The top level package is
|
|
|
|
thrift, and there are subpackages for the protocol, transport, and server
|
|
|
|
code. Each package contains modules using standard Thrift naming conventions
|
|
|
|
(i.e. TProtocol, TTransport) and implementations in corresponding modules
|
2007-09-05 00:47:32 +00:00
|
|
|
(i.e. TSocket). There is also a subpackage reflection, which contains
|
|
|
|
the generated code for the reflection structures.
|
2007-03-06 00:06:27 +00:00
|
|
|
|
|
|
|
The Python libraries can be installed manually using the provided setup.py
|
|
|
|
file, or automatically using the install hook provided via autoconf/automake.
|
|
|
|
To use the latter, become superuser and do make install.
|