<previous | contents | next> Pyro Manual

1. Introduction

Pyro is an acronym for PYthon Remote Objects. It is a basic Distributed Object Technology system written entirely in Python. It resembles Java's Remote Method Invocation (RMI). It is less similar to CORBA - which is a system and language independent Distributed Object Technology and has much more to offer than Pyro or RMI. But Pyro is small, simple and free! For another overview of what Pyro is, see the Pyro page online (http://pyro.sourceforge.net/). You can also download the package from there.

Copyright and Disclaimer
This software is copyright © by Irmen de Jong. It is subject to change without notice. Pyro comes as-is, without warranty and in no event can Irmen de Jong be held liable for any problems resulting from this software. License: Pyro is released under the MIT license, see the file "LICENSE".

To get an idea of how Pyro works, here is a scenario:

  1. You write a module 'test' containing a class 'testclass', which will be accessed remotely.
  2. Optional: using the PyroC proxy compiler, you can generate client proxy code for your 'test' module.
  3. The server creates one or more instances of the 'testclass', and registers them with the Pyro Name Server.
  4. The client queries the Name Server for the location of those objects. It gets a Pyro URI (Universal Resource Identifier) for them.
  5. The client creates proxies for the remote objects.
  6. Because the proxy mimics the real 'testclass', the client can now invoke methods on the remote objects. The proxy will forward the method invocations and return the results, just as if it was the remote object itself. Not a single line of network communication code has been written.
This looks like a big oversimplification, but it isn't!

To dive directly into the code, have a look at the various Pyro examples in the examples directory (read the Readme.txt). There is much to learn there.

Required Software:

Related technology

Thanks



<previous | contents | next> Pyro Manual