cpython/Demo
Guido van Rossum 9e3f335bea VFile: added new formats 'jpeg' and 'jpeggrey'. Decompression is done
using module 'jpeg' by the Displayer class.  (Unfortunately it's too
slow for real time.)  Print file size in printinfo() method.

Vinfo: added -t option (terse -- one line per file) and usage message.

Vtime: use BasicV{in,out}File classes -- the minimum needed.

Vmkjpeg, Vunjpeg: new utilities for jpeg (de)compression.
1992-09-29 13:40:47 +00:00
..
classes Initial revision 1992-08-13 12:14:11 +00:00
scripts all Long constants have an L suffix, not l; 1992-08-31 10:54:17 +00:00
sgi VFile: added new formats 'jpeg' and 'jpeggrey'. Decompression is done 1992-09-29 13:40:47 +00:00
sockets *** empty log message *** 1992-09-24 10:34:25 +00:00
stdwin open() now raises IOError, not RuntimeError! 1992-09-24 09:14:44 +00:00
threads Initial revision 1992-08-10 10:48:14 +00:00
README Change comments about SGI subdirectory 1992-04-13 18:41:41 +00:00

This directory contains various demonstrations of what you can do with
Python.  The demos are grouped sub(sub*)directories according to
required optional built-in modules.

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

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
		the modules 'gl' and 'al'.  Split in subdirectories
		per subject.

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

WARNING: many scripts are executable and have a first line saying

	#! /usr/local/python

This is unlikely to give good results unless you've really installed
the latest version python there.  Edit the first line before
installing such scripts; to try them out, you can just say "python
foo.py" or enter python interactively and say "import foo".