blob: 655b3ceaedc60062a01e1f925f5c1969cdb34efb [file] [log] [blame]
Guido van Rossum5f858801995-03-02 15:51:27 +00001This directory contains a number of Python programs that are useful
2while building or extending Python.
3
Andrew M. Kuchling5cca6952010-07-04 20:47:00 +00004faqwiz FAQ Wizard: a CGI script for a user-editable FAQ.
Guido van Rossuma11b0411997-08-28 02:41:33 +00005
Guido van Rossum5f858801995-03-02 15:51:27 +00006freeze Create a stand-alone executable from a Python program.
7
Benjamin Peterson6a6666a2010-04-11 21:49:28 +00008gdb Python code to be run inside gdb, to make it easier to
9 debug Python itself (by David Malcolm).
10
Andrew M. Kuchling5dd064a2001-08-06 19:33:52 +000011i18n Tools for internationalization. pygettext.py
12 parses Python source code and generates .pot files,
13 and msgfmt.py generates a binary message catalog
14 from a catalog in text format.
Andrew M. Kuchlingce2f4032001-08-06 18:55:22 +000015
Andrew M. Kuchling5dd064a2001-08-06 19:33:52 +000016pynche A Tkinter-based color editor.
Andrew M. Kuchlingce2f4032001-08-06 18:55:22 +000017
Guido van Rossum9cd9fbb1998-04-10 20:58:53 +000018scripts A number of useful single-file programs, e.g. tabnanny.py
19 (by Tim Peters), which checks for inconsistent mixing
20 of tabs and spaces.
Guido van Rossuma11b0411997-08-28 02:41:33 +000021
Fredrik Lundhe9133f72000-09-25 17:59:57 +000022unicode Tools used to generate unicode database files for
23 Python 2.0 (by Fredrik Lundh).
24
Guido van Rossumc4b9af71997-12-23 19:03:42 +000025versioncheck A tool to automate checking whether you have the latest
26 version of a package (by Jack Jansen).
27
Andrew M. Kuchling5dd064a2001-08-06 19:33:52 +000028world Script to take a list of Internet addresses and print
29 out where in the world those addresses originate from,
30 based on the top-level domain country code found in
31 the address.