home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pyth_os2.zip / python-1.0.2 / Demo / README < prev   
Text File  |  1994-02-22  |  2KB  |  55 lines

  1. This directory contains various demonstrations of what you can do with
  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. embed        An example of embedding Python in another application.
  10.  
  11. ibrowse        An Emacs info file browser (uses stdwin).
  12.         See also ../doc (the Python library documentation can
  13.         be converted to info format).
  14.  
  15. lutz        Some demos written by Mark Lutz -- includes a nice
  16.         enhanced Python shell!!!
  17.  
  18. md5test        Test program for the optional md5 module.
  19.  
  20. mpzpi.py    Currently the only test for mpz -- print digits of pi
  21.         (compare scripts/pi.py).
  22.  
  23. rpc        A set of classes for building clients and servers for
  24.         Sun RPC.
  25.  
  26. rsa        An RSA public-key cryptosystem (needs mpz and md5).
  27.  
  28. scripts        Some useful Python scripts that I put in my bin
  29.         directory.  No optional built-in modules needed.
  30.  
  31. stoffel        Some games written by Stoffel Erasmus.
  32.  
  33. sockets        Examples for the new built-in module 'socket'.
  34.  
  35. sgi        Demos that only run on Silicon Graphics machines.
  36.         These require at least one of the optional built-in
  37.         modules that only make sense for the SGI, such as
  38.         'gl', 'al', and 'sv'.  Split in subdirectories
  39.         per subject.
  40.  
  41. stdwin        Demos that use the STDWIN library.  Require the 'stdwin'
  42.         built-in module.
  43.  
  44. threads        Demos that use the 'thread' module.  (Currently these
  45.         only run on SGIs, but this may change in the future.)
  46.  
  47. WARNING: many scripts are executable and have a first line saying
  48.  
  49.     #! /usr/local/bin/python
  50.  
  51. This is unlikely to give good results unless you've really installed
  52. the latest version python there.  Edit the first line before
  53. installing such scripts; to try them out, you can just say "python
  54. foo.py" or enter python interactively and say "import foo".
  55.