Guido van Rossum | 5f85880 | 1995-03-02 15:51:27 +0000 | [diff] [blame] | 1 | This directory contains a number of Python programs that are useful |
| 2 | while building or extending Python. |
| 3 | |
Guido van Rossum | a11b041 | 1997-08-28 02:41:33 +0000 | [diff] [blame] | 4 | faqwiz FAQ Wizard. |
Andrew M. Kuchling | ce2f403 | 2001-08-06 18:55:22 +0000 | [diff] [blame] | 5 | See http://www.python.org/cgi-bin/faqw.py |
Guido van Rossum | a11b041 | 1997-08-28 02:41:33 +0000 | [diff] [blame] | 6 | for a live example. |
| 7 | |
Guido van Rossum | 5f85880 | 1995-03-02 15:51:27 +0000 | [diff] [blame] | 8 | freeze Create a stand-alone executable from a Python program. |
| 9 | |
Andrew M. Kuchling | 5dd064a | 2001-08-06 19:33:52 +0000 | [diff] [blame] | 10 | i18n Tools for internationalization. pygettext.py |
| 11 | parses Python source code and generates .pot files, |
| 12 | and msgfmt.py generates a binary message catalog |
| 13 | from a catalog in text format. |
Andrew M. Kuchling | ce2f403 | 2001-08-06 18:55:22 +0000 | [diff] [blame] | 14 | |
Guido van Rossum | 5f85880 | 1995-03-02 15:51:27 +0000 | [diff] [blame] | 15 | modulator Interactively generate boiler plate for an extension |
Andrew M. Kuchling | 5dd064a | 2001-08-06 19:33:52 +0000 | [diff] [blame] | 16 | module. Works easiest if you have Tk. |
Guido van Rossum | 5f85880 | 1995-03-02 15:51:27 +0000 | [diff] [blame] | 17 | |
Andrew M. Kuchling | 5dd064a | 2001-08-06 19:33:52 +0000 | [diff] [blame] | 18 | pynche A Tkinter-based color editor. |
Andrew M. Kuchling | ce2f403 | 2001-08-06 18:55:22 +0000 | [diff] [blame] | 19 | |
Georg Brandl | aba9796 | 2010-11-26 08:37:46 +0000 | [diff] [blame] | 20 | scripts A number of useful single-file programs, e.g. tabnanny.py |
| 21 | by Tim Peters, which checks for inconsistent mixing of |
| 22 | tabs and spaces, and 2to3, which converts Python 2 code |
| 23 | to Python 3 code. |
Guido van Rossum | a11b041 | 1997-08-28 02:41:33 +0000 | [diff] [blame] | 24 | |
Fredrik Lundh | e9133f7 | 2000-09-25 17:59:57 +0000 | [diff] [blame] | 25 | unicode Tools used to generate unicode database files for |
| 26 | Python 2.0 (by Fredrik Lundh). |
| 27 | |
Guido van Rossum | a11b041 | 1997-08-28 02:41:33 +0000 | [diff] [blame] | 28 | webchecker A link checker for web sites. |
Andrew M. Kuchling | ce2f403 | 2001-08-06 18:55:22 +0000 | [diff] [blame] | 29 | |
Andrew M. Kuchling | 5dd064a | 2001-08-06 19:33:52 +0000 | [diff] [blame] | 30 | world Script to take a list of Internet addresses and print |
| 31 | out where in the world those addresses originate from, |
| 32 | based on the top-level domain country code found in |
| 33 | the address. |