PKG-INFO 2.5 KB

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