blob: ae9b5927d84b881269bce43364c1a929f937a8a4 [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
Andrew M. Kuchling5dd064a2001-08-06 19:33:52 +000010i18n 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. Kuchlingce2f4032001-08-06 18:55:22 +000014
Guido van Rossum5f858801995-03-02 15:51:27 +000015modulator Interactively generate boiler plate for an extension
Andrew M. Kuchling5dd064a2001-08-06 19:33:52 +000016 module. Works easiest if you have Tk.
Guido van Rossum5f858801995-03-02 15:51:27 +000017
Andrew M. Kuchling5dd064a2001-08-06 19:33:52 +000018pynche A Tkinter-based color editor.
Andrew M. Kuchlingce2f4032001-08-06 18:55:22 +000019
Georg Brandlaba97962010-11-26 08:37:46 +000020scripts 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 Rossuma11b0411997-08-28 02:41:33 +000024
Fredrik Lundhe9133f72000-09-25 17:59:57 +000025unicode Tools used to generate unicode database files for
26 Python 2.0 (by Fredrik Lundh).
27
Guido van Rossuma11b0411997-08-28 02:41:33 +000028webchecker A link checker for web sites.
Andrew M. Kuchlingce2f4032001-08-06 18:55:22 +000029
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.