blob: 546ab21ec22e9555f03948ecef131ad2d5bd1551 [file] [log] [blame]
Georg Brandld3f467a2010-08-02 22:53:22 +00001This directory contains a collection of executable Python scripts that are
2useful while building, extending or managing Python. Some (e.g., dutree or lll)
3are also generally useful UNIX tools.
Guido van Rossumed3c7911995-03-02 15:56:30 +00004
5See also the Demo/scripts directory!
6
Georg Brandld3f467a2010-08-02 22:53:22 +000072to3 Main script for running the 2to3 conversion tool
8analyze_dxp.py Analyzes the result of sys.getdxp()
9byext.py Print lines/words/chars stats of files by extension
10byteyears.py Print product of a file's size and age
11checkpyc.py Check presence and validity of ".pyc" files
12cleanfuture.py Fix redundant Python __future__ statements
13combinerefs.py A helper for analyzing PYTHONDUMPREFS output
14copytime.py Copy one file's atime and mtime to another
15crlf.py Change CRLF line endings to LF (Windows to Unix)
16db2pickle.py Dump a database file to a pickle
17diff.py Print file diffs in context, unified, or ndiff formats
18dutree.py Format du(1) output as a tree sorted by size
19eptags.py Create Emacs TAGS file for Python modules
Georg Brandl93d15cd2009-10-11 21:24:34 +000020find_recursionlimit.py Find the maximum recursion limit on this machine
Georg Brandld3f467a2010-08-02 22:53:22 +000021finddiv.py A grep-like tool that looks for division operators
22findlinksto.py Recursively find symbolic links to a given path prefix
23findnocoding.py Find source files which need an encoding declaration
24fixcid.py Massive identifier substitution on C source files
25fixdiv.py Tool to fix division operators.
26fixheader.py Add some cpp magic to a C include file
27fixnotice.py Fix the copyright notice in source files
28fixps.py Fix Python scripts' first line (if #!)
29ftpmirror.py FTP mirror script
30google.py Open a webbrowser with Google
31gprof2html.py Transform gprof(1) output into useful HTML
32h2py.py Translate #define's into Python assignments
33idle3 Main program to start IDLE
34ifdef.py Remove #if(n)def groups from C sources
35lfcr.py Change LF line endings to CRLF (Unix to Windows)
36linktree.py Make a copy of a tree with links to original files
37lll.py Find and list symbolic links in current directory
38mailerdaemon.py Parse error messages from mailer daemons (Sjoerd&Jack)
39make_ctype.py Generate ctype.h replacement in stringobject.c
40md5sum.py Print MD5 checksums of argument files
41mkreal.py Turn a symbolic link into a real file or directory
42ndiff.py Intelligent diff between text files (Tim Peters)
43nm2def.py Create a template for PC/python_nt.def (Marc Lemburg)
44objgraph.py Print object graph from nm output on a library
45parseentities.py Utility for parsing HTML entity definitions
46patchcheck.py Perform common checks and cleanup before committing
47pathfix.py Change #!/usr/local/bin/python into something else
48pdeps.py Print dependencies between Python modules
49pickle2db.py Load a pickle generated by db2pickle.py to a database
50pindent.py Indent Python code, giving block-closing comments
51ptags.py Create vi tags file for Python modules
52pydoc3 Python documentation browser
53pysource.py Find Python source files
54redemo.py Basic regular expression demonstration facility
55reindent.py Change .py files to use 4-space indents
56reindent-rst.py Fix-up reStructuredText file whitespace
57rgrep.py Reverse grep through a file (useful for big logfiles)
58serve.py Small wsgiref-based web server, used in make serve in Doc
59suff.py Sort a list of files by suffix
60svneol.py Set svn:eol-style on all files in directory
61texi2html.py Convert GNU texinfo files into HTML
62treesync.py Synchronize source trees (very idiosyncratic)
63untabify.py Replace tabs with spaces in argument files
64win_add2path.py Add Python to the search path on Windows
65which.py Find a program in $PATH