blob: fffe9d29625224844c7a2f68f3a1eff39ca84e9f [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
Guido van Rossuma11b0411997-08-28 02:41:33 +00004faqwiz FAQ Wizard.
Andrew M. Kuchlingce2f4032001-08-06 18:55:22 +00005 See http://www.python.org/cgi-bin/faqw.py
Guido van Rossuma11b0411997-08-28 02:41:33 +00006 for a live example.
7
Guido van Rossum5f858801995-03-02 15:51:27 +00008freeze Create a stand-alone executable from a Python program.
9
Benjamin Peterson6a6666a2010-04-11 21:49:28 +000010gdb Python code to be run inside gdb, to make it easier to
11 debug Python itself (by David Malcolm).
12
Andrew M. Kuchling5dd064a2001-08-06 19:33:52 +000013i18n Tools for internationalization. pygettext.py
14 parses Python source code and generates .pot files,
15 and msgfmt.py generates a binary message catalog
16 from a catalog in text format.
Andrew M. Kuchlingce2f4032001-08-06 18:55:22 +000017
Andrew M. Kuchling5dd064a2001-08-06 19:33:52 +000018pynche A Tkinter-based color editor.
Andrew M. Kuchlingce2f4032001-08-06 18:55:22 +000019
Guido van Rossum9cd9fbb1998-04-10 20:58:53 +000020scripts A number of useful single-file programs, e.g. tabnanny.py
21 (by Tim Peters), which checks for inconsistent mixing
22 of tabs and spaces.
Guido van Rossuma11b0411997-08-28 02:41:33 +000023
Fredrik Lundhe9133f72000-09-25 17:59:57 +000024unicode Tools used to generate unicode database files for
25 Python 2.0 (by Fredrik Lundh).
26
Guido van Rossumc4b9af71997-12-23 19:03:42 +000027versioncheck A tool to automate checking whether you have the latest
28 version of a package (by Jack Jansen).
29
Andrew M. Kuchling5dd064a2001-08-06 19:33:52 +000030world 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.