PKG-INFO 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. Metadata-Version: 2.1
  2. Name: thrift
  3. Version: 0.13.0
  4. Summary: Python bindings for the Apache Thrift RPC system
  5. Home-page: https://thrift.apache.org
  6. Author: Apache Thrift Developers
  7. Author-email: dev@thrift.apache.org
  8. License: Apache Software License, Version 2
  9. Description: Thrift Python Software Library
  10. Thrift is a lightweight, language-independent software stack for
  11. point-to-point RPC implementation.
  12. Thrift provides clean abstractions and implementations for data transport,
  13. data serialization, and application level processing. The code generation
  14. system takes a simple definition language as input and generates code
  15. across programming languages that uses the abstracted stack to build
  16. interoperable RPC clients and servers.
  17. Thrift is provided as a set of Python packages. The top level package is
  18. thrift, and there are subpackages for the protocol, transport, and server
  19. code. Each package contains modules using standard Thrift naming conventions
  20. (i.e. TProtocol, TTransport) and implementations in corresponding modules
  21. (i.e. TSocket). There is also a subpackage reflection, which contains
  22. the generated code for the reflection structures.
  23. The Python libraries can be installed manually using the provided setup.py
  24. file, or automatically using the install hook provided via autoconf/automake.
  25. To use the latter, become superuser and do make install.
  26. For more information:
  27. https://thrift.apache.org/
  28. https://www.github.com/apache/thrift/
  29. Platform: UNKNOWN
  30. Classifier: Development Status :: 5 - Production/Stable
  31. Classifier: Environment :: Console
  32. Classifier: Intended Audience :: Developers
  33. Classifier: License :: OSI Approved :: Apache Software License
  34. Classifier: Programming Language :: Python
  35. Classifier: Programming Language :: Python :: 2
  36. Classifier: Programming Language :: Python :: 3
  37. Classifier: Topic :: Software Development :: Code Generators
  38. Classifier: Topic :: Software Development :: Libraries
  39. Classifier: Topic :: System :: Networking
  40. Description-Content-Type: text/markdown
  41. Provides-Extra: ssl
  42. Provides-Extra: tornado
  43. Provides-Extra: twisted
  44. Provides-Extra: all