METADATA 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. Metadata-Version: 2.1
  2. Name: thrift
  3. Version: 0.20.0
  4. Summary: Python bindings for the Apache Thrift RPC system
  5. Home-page: http://thrift.apache.org
  6. Author: Apache Thrift Developers
  7. Author-email: dev@thrift.apache.org
  8. License: Apache License 2.0
  9. Classifier: Development Status :: 5 - Production/Stable
  10. Classifier: Environment :: Console
  11. Classifier: Intended Audience :: Developers
  12. Classifier: Programming Language :: Python
  13. Classifier: Programming Language :: Python :: 2
  14. Classifier: Programming Language :: Python :: 3
  15. Classifier: Topic :: Software Development :: Libraries
  16. Classifier: Topic :: System :: Networking
  17. Description-Content-Type: text/markdown
  18. Requires-Dist: six >=1.7.2
  19. Provides-Extra: all
  20. Requires-Dist: tornado >=4.0 ; extra == 'all'
  21. Requires-Dist: twisted ; extra == 'all'
  22. Provides-Extra: ssl
  23. Provides-Extra: tornado
  24. Requires-Dist: tornado >=4.0 ; extra == 'tornado'
  25. Provides-Extra: twisted
  26. Requires-Dist: twisted ; extra == 'twisted'
  27. Thrift Python Software Library
  28. License
  29. =======
  30. Licensed to the Apache Software Foundation (ASF) under one
  31. or more contributor license agreements. See the NOTICE file
  32. distributed with this work for additional information
  33. regarding copyright ownership. The ASF licenses this file
  34. to you under the Apache License, Version 2.0 (the
  35. "License"); you may not use this file except in compliance
  36. with the License. You may obtain a copy of the License at
  37. http://www.apache.org/licenses/LICENSE-2.0
  38. Unless required by applicable law or agreed to in writing,
  39. software distributed under the License is distributed on an
  40. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  41. KIND, either express or implied. See the License for the
  42. specific language governing permissions and limitations
  43. under the License.
  44. Using Thrift with Python
  45. ========================
  46. Thrift is provided as a set of Python packages. The top level package is
  47. thrift, and there are subpackages for the protocol, transport, and server
  48. code. Each package contains modules using standard Thrift naming conventions
  49. (i.e. TProtocol, TTransport) and implementations in corresponding modules
  50. (i.e. TSocket). There is also a subpackage reflection, which contains
  51. the generated code for the reflection structures.
  52. The Python libraries can be installed manually using the provided setup.py
  53. file, or automatically using the install hook provided via autoconf/automake.
  54. To use the latter, become superuser and do make install.