cpython/Demo
Senthil Kumaran 67f953c5e7 s/colour/color/g 2010-11-26 02:20:04 +00:00
..
cgi faqwiz is removed. 2010-10-26 10:42:16 +00:00
classes "Modernized" the demo a little. 2010-07-05 21:44:05 +00:00
comparisons convert shebang lines: python -> python3 2010-03-11 22:53:45 +00:00
curses s/colour/color/g 2010-11-26 02:20:04 +00:00
distutils/test2to3 convert shebang lines: python -> python3 2010-03-11 22:53:45 +00:00
embed #6439: fix argument type for PySys_SetArgvEx() and Py_SetProgramName() in Demo/embed code. 2010-08-01 14:25:22 +00:00
md5test Encoding fix. 2010-10-27 07:21:54 +00:00
newmetaclasses Remove __metaclass__ remains. 2008-05-27 20:34:09 +00:00
parser Make Demo/parser/test_parser.py run. 2010-07-04 18:49:18 +00:00
pysvr Recorded merge of revisions 81029 via svnmerge from 2010-05-09 15:52:27 +00:00
rpc Merged revisions 66394,66404,66412,66414,66424-66436 via svnmerge from 2008-09-13 15:58:53 +00:00
scripts Update README, remove obsolete script. 2010-08-02 22:55:17 +00:00
sockets Merged revisions 78779 via svnmerge from 2010-03-21 22:42:02 +00:00
threads Merged revisions 66394,66404,66412,66414,66424-66436 via svnmerge from 2008-09-13 15:58:53 +00:00
tix Merged revisions 78779 via svnmerge from 2010-03-21 22:42:02 +00:00
tkinter Work a bit more on tkinter demos. 2010-10-26 10:39:14 +00:00
xml Merged revisions 75358 via svnmerge from 2009-10-11 15:56:06 +00:00
zlib Use os.fsencode() to support surrogates 2010-09-29 16:59:18 +00:00
README Remove reference to removed faqwiz tool. 2010-08-02 23:18:35 +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.


cgi             CGI examples.

classes         Some examples of how to use classes.

comparisons     A set of responses to a really old language-comparison
                challenge.

curses          A set of curses demos.

distutils       Test for using transparent 2to3 conversion in distutils.

embed           An example of embedding Python in another application
                (see also pysvr).

imputil         Demonstration subclasses of imputil.Importer.

md5test         Test program for the optional md5 module.

newmetaclasses  Demonstration of metaclasses.

parser          Example using the parser module.

pysvr           An example of embedding Python in a threaded
                application.

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'.

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

tix             Demos using the Tix widget set addition to Tkinter.

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

turtle          Demos for the "turtle" module.

xml             Some XML demos.

zlib            Some demos for the zlib module (see also the standard
                library module gzip.py).