cpython/Demo
Guido van Rossum c153d12738 Got rid of almost totally obsolete Demo/www subdir. 1996-10-11 14:49:19 +00:00
..
classes Added note about Python's support of complex numbers. 1996-07-30 19:02:01 +00:00
comparisons commit -- why not... 1995-04-10 11:40:26 +00:00
cwilib Restructured main loop. Etc. 1993-11-01 14:50:59 +00:00
dns print MX record 1996-07-30 19:04:18 +00:00
embed adapted to new naming; clarify comments somewhat 1995-03-28 09:22:53 +00:00
ibrowse commit -- why not 1995-04-10 11:47:11 +00:00
md5test initial checkin 1994-10-08 19:17:34 +00:00
parser (Demo/parser/FILES, Demo/parser/Makefile, Demo/parser/parser.tex, 1996-09-12 12:59:25 +00:00
pdist mac utility 1996-07-30 19:05:56 +00:00
rpc Added note about standard library module xdrlib.py 1996-08-19 22:24:21 +00:00
scripts moved lots of stuff to Tools/scripts 1995-03-02 16:00:55 +00:00
sgi Use variables from module cd instead of CD. 1995-04-06 14:46:31 +00:00
sockets unicast pendant for broadcast.py 1996-08-21 20:11:55 +00:00
stdwin Ignore a few more names when comparing directories. 1995-07-10 11:58:31 +00:00
threads Remove comment "SGI only" 1996-07-30 19:07:18 +00:00
tkinter update -- Undo is now entry 1 1996-08-21 20:13:08 +00:00
Makefile Initial revision 1994-01-04 23:24:38 +00:00
README Got rid of almost totally obsolete Demo/www subdir. 1996-10-11 14:49:19 +00:00

README

This directory contains various demonstrations of what you can do with
Python.  They were all written by me except where explicitly stated
otherwise -- in general, demos contributed by others ends up in the
../Contrib directory, unless I think they're of utmost general
importance (like Matt Conway's Tk demos).

A fair number of utilities that are useful when while developing
Python code can be found in the ../Tools directory -- some of these
can also be considered good examples of how to write Python code.

Finally, in order to save disk space and net bandwidth, not all
subdirectories listed here are distributed.  They are listed just
in case I change my mind about them.


classes		Some examples of how to use classes.

embed		An example of embedding Python in another application.

ibrowse		An Emacs info file browser (uses stdwin).
		See also ../doc (the Python library documentation can
		be converted to info format).

md5test		Test program for the optional md5 module.

rpc		A set of classes for building clients and servers for
		Sun RPC.

scripts		Some useful Python scripts that I put in my bin
		directory.  No optional built-in modules needed.

sockets		Examples for the new built-in module 'socket'.

sgi		Demos that only run on Silicon Graphics machines.
		These require at least one of the optional built-in
		modules that only make sense for the SGI, such as
		'gl', 'al', and 'sv'.  Split in subdirectories
		per subject.

stdwin		Demos that use the STDWIN library.  Require the 'stdwin'
		built-in module.

threads		Demos that use the 'thread' module.  (Currently these
		only run on SGIs, but this may change in the future.)

tkinter		Demos using the Tk interface (including Matt Conway's
		excellent set of demos).


--Guido van Rossum, CWI, Amsterdam <mailto:Guido.van.Rossum@cwi.nl>
<http://www.cwi.nl/cwi/people/Guido.van.Rossum.html>