diff options
author | Guido van Rossum <guido@python.org> | 1991-12-24 13:49:29 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-12-24 13:49:29 (GMT) |
commit | 04fe492a4491ab85db600c574105b1284f670439 (patch) | |
tree | 90e8107d3e0822b561bb5809081c4737789b3afa /Demo/README | |
parent | 54a41d6366dc5a4c12172c54be455b2c701dd24d (diff) | |
download | cpython-04fe492a4491ab85db600c574105b1284f670439.zip cpython-04fe492a4491ab85db600c574105b1284f670439.tar.gz cpython-04fe492a4491ab85db600c574105b1284f670439.tar.bz2 |
Initial revision
Diffstat (limited to 'Demo/README')
-rw-r--r-- | Demo/README | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Demo/README b/Demo/README new file mode 100644 index 0000000..b08055e --- /dev/null +++ b/Demo/README @@ -0,0 +1,25 @@ +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. + Require the built-in modules 'audio' and/or 'gl' + and/or 'stdwin'. + (This is split in corresponding subdirectories.) + +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". |