This commit was manufactured by cvs2svn to create tag 'r22a4-fork'.
[python/dscho.git] / Demo / README
blobac39f39b0411c3d863f39b47fddff996e991d38f
1 This directory contains various demonstrations of what you can do with
2 Python.  They were all written by me except where explicitly stated
3 otherwise -- in general, demos contributed by others ends up in the
4 ../Contrib directory, unless I think they're of utmost general
5 importance (like Matt Conway's Tk demos).
7 A fair number of utilities that are useful when while developing
8 Python code can be found in the ../Tools directory -- some of these
9 can also be considered good examples of how to write Python code.
11 Finally, in order to save disk space and net bandwidth, not all
12 subdirectories listed here are distributed.  They are listed just
13 in case I change my mind about them.
16 classes         Some examples of how to use classes.
18 embed           An example of embedding Python in another application
19                 (see also pysvr).
21 extend          An example of using the generic Makefile.pre.in from
22                 the Misc directory to build a statically linked or
23                 shared extension module.
25 md5test         Test program for the optional md5 module.
27 pysvr           An example of embedding Python in a threaded
28                 application.
30 rpc             A set of classes for building clients and servers for
31                 Sun RPC.
33 scripts         Some useful Python scripts that I put in my bin
34                 directory.  No optional built-in modules needed.
36 sockets         Examples for the new built-in module 'socket'.
38 sgi             Demos that only run on Silicon Graphics machines.
39                 These require at least one of the optional built-in
40                 modules that only make sense for the SGI, such as
41                 'gl', 'al', and 'sv'.  Split in subdirectories
42                 per subject.
44 threads         Demos that use the 'thread' module.  (Currently these
45                 only run on SGIs, but this may change in the future.)
47 tkinter         Demos using the Tk interface (including Matt Conway's
48                 excellent set of demos).
50 tix             Demos using the Tix widget set addition to Tkinter.