|
1 | 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. |
| 2 | +Python. Most demos are grouped sub(sub*)directories according to |
| 3 | +required optional built-in modules or specific platform; there is also |
| 4 | +a set of generally useful scripts and there are some more-or-less |
| 5 | +complete applications. |
| 6 | + |
| 7 | +classes Some examples of how to use classes. |
| 8 | + |
| 9 | +ibrowse An Emacs info file browser (uses stdwin). |
| 10 | + See also ../doc (the Python library documentation can |
| 11 | + be converted to info format). |
| 12 | + |
| 13 | +md5test Test program for the optional md5 module. |
| 14 | + |
| 15 | +rpc A set of classes for building clients and servers for |
| 16 | + Sun RPC. |
| 17 | + |
| 18 | +rsa An RSA public-key cryptosystem (needs mpz and md5). |
4 | 19 |
|
5 | 20 | scripts Some useful Python scripts that I put in my bin |
6 | | - directory. No optional built-in modules meeded. |
| 21 | + directory. No optional built-in modules needed. |
7 | 22 |
|
8 | 23 | sockets Examples for the new built-in module 'socket'. |
9 | 24 |
|
10 | 25 | sgi Demos that only run on Silicon Graphics machines. |
11 | 26 | These require at least one of the optional built-in |
12 | 27 | modules that only make sense for the SGI, such as |
13 | | - the modules 'gl' and 'al'. Split in subdirectories |
| 28 | + 'gl', 'al', and 'sv'. Split in subdirectories |
14 | 29 | per subject. |
15 | 30 |
|
16 | 31 | stdwin Demos that use the STDWIN library. Require the 'stdwin' |
17 | 32 | built-in module. |
18 | 33 |
|
| 34 | +threads Demos that use the 'thread' module. (Currently these |
| 35 | + only run on SGIs, but this may change in the future.) |
| 36 | + |
| 37 | +www Browsers for CERN's distributed hypertext system |
| 38 | + World-Wide Web (one with a stdwin-based user |
| 39 | + interface, one for dumb ttys). Also contains a |
| 40 | + primitive gopher client and an ftp client. |
| 41 | + See also ../doc (the Python library documentation can |
| 42 | + be converted to WWW's "HTML" format). |
| 43 | + |
19 | 44 | WARNING: many scripts are executable and have a first line saying |
20 | 45 |
|
21 | | - #! /usr/local/python |
| 46 | + #! /usr/local/bin/python |
22 | 47 |
|
23 | 48 | This is unlikely to give good results unless you've really installed |
24 | 49 | the latest version python there. Edit the first line before |
|
0 commit comments