Staging
v0.5.1
https://github.com/python/cpython
Revision a95a1405a8c13f2deb3f79ddb2bae1d9e7e95397 authored by Guido van Rossum on 26 June 1996, 19:26:55 UTC, committed by Guido van Rossum on 26 June 1996, 19:26:55 UTC
1 parent 7710f1f
Raw File
Tip revision: a95a1405a8c13f2deb3f79ddb2bae1d9e7e95397 authored by Guido van Rossum on 26 June 1996, 19:26:55 UTC
expr_list -> expression_list
Tip revision: a95a140
README
This is a Python interface to Sun RPC, designed and implemented mostly
by reading the Internet RFCs about the subject.

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).
back to top