METADATA 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. Metadata-Version: 2.1
  2. Name: Pyro4
  3. Version: 4.81
  4. Summary: distributed object middleware for Python (RPC)
  5. Home-page: http://pyro4.readthedocs.io
  6. Author: Irmen de Jong
  7. Author-email: irmen@razorvine.net
  8. License: MIT
  9. Keywords: distributed objects,RPC,remote method call,IPC
  10. Platform: any
  11. Classifier: Development Status :: 5 - Production/Stable
  12. Classifier: Development Status :: 6 - Mature
  13. Classifier: Intended Audience :: Developers
  14. Classifier: License :: OSI Approved :: MIT License
  15. Classifier: Natural Language :: English
  16. Classifier: Natural Language :: Dutch
  17. Classifier: Operating System :: OS Independent
  18. Classifier: Programming Language :: Python
  19. Classifier: Programming Language :: Python :: 2.7
  20. Classifier: Programming Language :: Python :: 3.5
  21. Classifier: Programming Language :: Python :: 3.6
  22. Classifier: Programming Language :: Python :: 3.7
  23. Classifier: Programming Language :: Python :: 3.8
  24. Classifier: Programming Language :: Python :: 3.9
  25. Classifier: Topic :: Software Development :: Object Brokering
  26. Classifier: Topic :: System :: Distributed Computing
  27. Classifier: Topic :: System :: Networking
  28. Requires: serpent
  29. License-File: LICENSE
  30. Requires-Dist: serpent (<1.30,>=1.27) ; python_version < "3.2"
  31. Requires-Dist: serpent (>=1.27) ; python_version >= "3.2"
  32. Requires-Dist: selectors34 ; python_version<'3.4'
  33. Pyro means PYthon Remote Objects.
  34. It is a library that enables you to build applications in which
  35. objects can talk to eachother over the network, with minimal programming effort.
  36. You can just use normal Python method calls, with almost every possible parameter
  37. and return value type, and Pyro takes care of locating the right object on the right
  38. computer to execute the method. It is designed to be very easy to use, and to
  39. generally stay out of your way. But it also provides a set of powerful features that
  40. enables you to build distributed applications rapidly and effortlessly.
  41. Pyro is a pure Python library and runs on many different platforms and Python versions.
  42. The source code repository is on Github: https://github.com/irmen/Pyro4
  43. The documentation can be found here: http://pyro4.readthedocs.io