blob: a70e087a58fdee5f146d49ef505bc24737f8a82e [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. Kuchling5dd064a2001-08-06 19:33:52 +00004audiopy Audiopy is a program to control the Solaris audio
5 device, allowing you to choose both the input and
6 output devices, and to set the output volume, that can
7 be run either as a command-line script, or as a
8 Tkinter application.
Andrew M. Kuchlingce2f4032001-08-06 18:55:22 +00009
Jeremy Hyltonfe148c82001-09-20 15:27:30 +000010compiler Tools used to maintain the compiler package in the
11 standard library.
Jeremy Hylton20b2ca92000-08-04 17:03:58 +000012
Guido van Rossuma11b0411997-08-28 02:41:33 +000013faqwiz FAQ Wizard.
Andrew M. Kuchlingce2f4032001-08-06 18:55:22 +000014 See http://www.python.org/cgi-bin/faqw.py
Guido van Rossuma11b0411997-08-28 02:41:33 +000015 for a live example.
16
Guido van Rossum5f858801995-03-02 15:51:27 +000017freeze Create a stand-alone executable from a Python program.
18
Andrew M. Kuchling5dd064a2001-08-06 19:33:52 +000019i18n Tools for internationalization. pygettext.py
20 parses Python source code and generates .pot files,
21 and msgfmt.py generates a binary message catalog
22 from a catalog in text format.
Andrew M. Kuchlingce2f4032001-08-06 18:55:22 +000023
Guido van Rossum5f858801995-03-02 15:51:27 +000024modulator Interactively generate boiler plate for an extension
Andrew M. Kuchling5dd064a2001-08-06 19:33:52 +000025 module. Works easiest if you have Tk.
Guido van Rossum5f858801995-03-02 15:51:27 +000026
Andrew M. Kuchling5dd064a2001-08-06 19:33:52 +000027pynche A Tkinter-based color editor.
Andrew M. Kuchlingce2f4032001-08-06 18:55:22 +000028
Georg Brandlaba97962010-11-26 08:37:46 +000029scripts A number of useful single-file programs, e.g. tabnanny.py
30 by Tim Peters, which checks for inconsistent mixing of
31 tabs and spaces, and 2to3, which converts Python 2 code
32 to Python 3 code.
Guido van Rossuma11b0411997-08-28 02:41:33 +000033
Fredrik Lundhe9133f72000-09-25 17:59:57 +000034unicode Tools used to generate unicode database files for
35 Python 2.0 (by Fredrik Lundh).
36
Guido van Rossumc4b9af71997-12-23 19:03:42 +000037versioncheck A tool to automate checking whether you have the latest
38 version of a package (by Jack Jansen).
39
Guido van Rossuma11b0411997-08-28 02:41:33 +000040webchecker A link checker for web sites.
Andrew M. Kuchlingce2f4032001-08-06 18:55:22 +000041
Andrew M. Kuchling5dd064a2001-08-06 19:33:52 +000042world Script to take a list of Internet addresses and print
43 out where in the world those addresses originate from,
44 based on the top-level domain country code found in
45 the address.