Guido van Rossum | 04fe492 | 1991-12-24 13:49:29 +0000 | [diff] [blame] | 1 | This directory contains various demonstrations of what you can do with |
| 2 | Python. The demos are grouped sub(sub*)directories according to |
| 3 | required optional built-in modules. |
| 4 | |
| 5 | scripts Some useful Python scripts that I put in my bin |
| 6 | directory. No optional built-in modules meeded. |
| 7 | |
| 8 | sockets Examples for the new built-in module 'socket'. |
| 9 | |
| 10 | sgi Demos that only run on Silicon Graphics machines. |
| 11 | Require the built-in modules 'audio' and/or 'gl' |
| 12 | and/or 'stdwin'. |
| 13 | (This is split in corresponding subdirectories.) |
| 14 | |
| 15 | stdwin Demos that use the STDWIN library. Require the 'stdwin' |
| 16 | built-in module. |
| 17 | |
| 18 | WARNING: many scripts are executable and have a first line saying |
| 19 | |
| 20 | #! /usr/local/python |
| 21 | |
| 22 | This is unlikely to give good results unless you've really installed |
| 23 | the latest version python there. Edit the first line before |
| 24 | installing such scripts; to try them out, you can just say "python |
| 25 | foo.py" or enter python interactively and say "import foo". |