METADATA 1.9 KB

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