blob: 3a5ba920b14115811dd9e58e170c24c497d3fb9f [file] [log] [blame]
Mark Slee54b7ab92007-03-06 00:06:27 +00001Thrift Python Software Library
2
3Author: Mark Slee (mcslee@facebook.com)
David Reissd6832192007-09-05 00:47:32 +00004Last Modified: 2007-Sep-04
Mark Slee54b7ab92007-03-06 00:06:27 +00005
6Thrift is distributed under the Thrift open source software license.
7Please see the included LICENSE file.
8
9Using Thrift with Python
10========================
11
12Thrift is provided as a set of Python packages. The top level package is
13thrift, and there are subpackages for the protocol, transport, and server
14code. Each package contains modules using standard Thrift naming conventions
15(i.e. TProtocol, TTransport) and implementations in corresponding modules
David Reissd6832192007-09-05 00:47:32 +000016(i.e. TSocket). There is also a subpackage reflection, which contains
17the generated code for the reflection structures.
Mark Slee54b7ab92007-03-06 00:06:27 +000018
19The Python libraries can be installed manually using the provided setup.py
20file, or automatically using the install hook provided via autoconf/automake.
21To use the latter, become superuser and do make install.