cpython/Demo/rpc
Guido van Rossum bf66c64ffb Added note about standard library module xdrlib.py 1996-08-19 22:24:21 +00:00
..
MANIFEST *** empty log message *** 1993-12-17 14:32:26 +00:00
README Added note about standard library module xdrlib.py 1996-08-19 22:24:21 +00:00
T.py Use time.time() instead of time.millitimer() 1994-02-17 12:36:58 +00:00
mountclient.py *** empty log message *** 1993-12-17 14:32:26 +00:00
nfsclient.py *** empty log message *** 1993-12-17 14:32:26 +00:00
rnusersclient.py *** empty log message *** 1993-12-17 14:32:26 +00:00
rpc.py add mac compatibility 1996-07-21 02:09:54 +00:00
test undo opaque=fopaque changes; make test script more flexible 1995-10-11 18:54:15 +00:00
xdr.py undo opaque=fopaque changes; make test script more flexible 1995-10-11 18:54:15 +00:00

README

This is a Python interface to Sun RPC, designed and implemented mostly
by reading the Internet RFCs about the subject.

*** NOTE: xdr.py has evolved into the standard module xdrlib.py ***

There are two library modules, xdr.py and rpc.py, and several example
clients: mountclient.py, nfsclient.py, and rnusersclient.py,
implementing the NFS Mount protocol, (part of) the NFS protocol, and
the "rnusers" protocol (used by rusers(1)), respectively.  The latter
demonstrates the use of broadcast via the Port mapper's CALLIT
procedure.

There is also a way to create servers in Python.

To test the nfs client, run it from the shell with something like this:

  python -c 'import nfsclient; nfsclient.test()' [hostname [filesystemname]]

When called without a filesystemname, it lists the filesystems at the
host; default host is the local machine.

Other clients are tested similarly.

For hostname, use e.g. wuarchive.wustl.edu or gatekeeper.dec.com (two
hosts that are known to export NFS filesystems with little restrictions).