Python Remote Objects 4.x

Pyro is a library that enables you to build applications in which objects can talk to each other over the network, with minimal programming effort. You can just use normal Python method calls, with almost every possible parameter and return value type, and Pyro takes care of locating the right object on the right computer to execute the method. It is designed to be very easy to use, and to generally stay out of your way. But it also provides a set of powerful features that enables you to build distributed applications rapidly and effortlessly. Pyro is written in 100% pure Python and therefore runs on many platforms and Python versions, including Python 3.x.

Pyro is written and © by Irmen de Jong. It is open-source software and is released under the MIT Software License (more info).

Download and Info

More info

The manual has all information you need. Please let me know if you think something is missing.

For fun, here is a screenshot of one of the examples included with Pyro (example is called 'robots'):

It simulates a bunch of robots battling in an arena, and you can start any number of remote clients that add robots to the fight. Each client could program their own robot behavior (a few simple behaviors are implemented in the example).

Ideas / TODO