Guido van Rossum | ed3c791 | 1995-03-02 15:56:30 +0000 | [diff] [blame] | 1 | This directory contains a collection of executable Python scripts that |
| 2 | are useful while building, extending or managing Python. Some (e.g., |
| 3 | dutree or lll) are also generally useful UNIX tools. |
| 4 | |
| 5 | See also the Demo/scripts directory! |
| 6 | |
Guido van Rossum | bf1b1fd | 2003-01-02 02:24:22 +0000 | [diff] [blame] | 7 | byext.py Print lines/words/chars stats of files by extension |
Guido van Rossum | ed3c791 | 1995-03-02 15:56:30 +0000 | [diff] [blame] | 8 | byteyears.py Print product of a file's size and age |
Martin v. Löwis | bb640c1 | 2003-06-07 18:46:34 +0000 | [diff] [blame] | 9 | checkappend.py Search for multi-argument .append() calls |
Guido van Rossum | ed3c791 | 1995-03-02 15:56:30 +0000 | [diff] [blame] | 10 | checkpyc.py Check presence and validity of ".pyc" files |
| 11 | classfix.py Convert old class syntax to new |
Martin v. Löwis | bb640c1 | 2003-06-07 18:46:34 +0000 | [diff] [blame] | 12 | cleanfuture.py Fix reduntant Python __future__ statements |
| 13 | combinerefs.py A helper for analyzing PYTHONDUMPREFS output. |
Guido van Rossum | ed3c791 | 1995-03-02 15:56:30 +0000 | [diff] [blame] | 14 | copytime.py Copy one file's atime and mtime to another |
Guido van Rossum | a57c9b9 | 1998-10-07 19:52:35 +0000 | [diff] [blame] | 15 | crlf.py Change CRLF line endings to LF (Windows to Unix) |
Guido van Rossum | 4d3376a | 1997-08-14 20:16:32 +0000 | [diff] [blame] | 16 | cvsfiles.py Print a list of files that are under CVS |
Skip Montanaro | 9445ce5 | 2003-02-03 15:09:32 +0000 | [diff] [blame] | 17 | db2pickle.py Dump a database file to a pickle |
Raymond Hettinger | a33d177 | 2003-06-08 23:04:17 +0000 | [diff] [blame] | 18 | diff.py Print file diffs in context, unified, or ndiff formats |
Guido van Rossum | ed3c791 | 1995-03-02 15:56:30 +0000 | [diff] [blame] | 19 | dutree.py Format du(1) output as a tree sorted by size |
| 20 | eptags.py Create Emacs TAGS file for Python modules |
Martin v. Löwis | bb640c1 | 2003-06-07 18:46:34 +0000 | [diff] [blame] | 21 | finddiv.py A grep-like tool that looks for division operators. |
Guido van Rossum | ed3c791 | 1995-03-02 15:56:30 +0000 | [diff] [blame] | 22 | findlinksto.py Recursively find symbolic links to a given path prefix |
Georg Brandl | 256372c | 2005-08-24 21:42:14 +0000 | [diff] [blame] | 23 | findnocoding.py Find source files which need an encoding declaration |
Guido van Rossum | ed3c791 | 1995-03-02 15:56:30 +0000 | [diff] [blame] | 24 | fixcid.py Massive identifier substitution on C source files |
Martin v. Löwis | bb640c1 | 2003-06-07 18:46:34 +0000 | [diff] [blame] | 25 | fixdiv.py Tool to fix division operators. |
Guido van Rossum | ed3c791 | 1995-03-02 15:56:30 +0000 | [diff] [blame] | 26 | fixheader.py Add some cpp magic to a C include file |
Guido van Rossum | a57c9b9 | 1998-10-07 19:52:35 +0000 | [diff] [blame] | 27 | fixnotice.py Fix the copyright notice in source files |
Guido van Rossum | ed3c791 | 1995-03-02 15:56:30 +0000 | [diff] [blame] | 28 | fixps.py Fix Python scripts' first line (if #!) |
Guido van Rossum | e830e55 | 1995-06-20 19:31:37 +0000 | [diff] [blame] | 29 | ftpmirror.py FTP mirror script |
Martin v. Löwis | bb640c1 | 2003-06-07 18:46:34 +0000 | [diff] [blame] | 30 | google.py Open a webbrowser with Google. |
| 31 | gprof2html.py Transform gprof(1) output into useful HTML. |
Guido van Rossum | ed3c791 | 1995-03-02 15:56:30 +0000 | [diff] [blame] | 32 | h2py.py Translate #define's into Python assignments |
Guido van Rossum | ab537e9 | 2003-06-13 20:34:27 +0000 | [diff] [blame] | 33 | idle Main program to start IDLE |
Guido van Rossum | ed3c791 | 1995-03-02 15:56:30 +0000 | [diff] [blame] | 34 | ifdef.py Remove #if(n)def groups from C sources |
Guido van Rossum | a57c9b9 | 1998-10-07 19:52:35 +0000 | [diff] [blame] | 35 | lfcr.py Change LF line endings to CRLF (Unix to Windows) |
Guido van Rossum | ed3c791 | 1995-03-02 15:56:30 +0000 | [diff] [blame] | 36 | linktree.py Make a copy of a tree with links to original files |
| 37 | lll.py Find and list symbolic links in current directory |
Guido van Rossum | 3485bb6 | 1997-08-14 22:04:26 +0000 | [diff] [blame] | 38 | logmerge.py Consolidate CVS/RCS logs read from stdin |
Guido van Rossum | a57c9b9 | 1998-10-07 19:52:35 +0000 | [diff] [blame] | 39 | mailerdaemon.py parse error messages from mailer daemons (Sjoerd&Jack) |
Martin v. Löwis | bb640c1 | 2003-06-07 18:46:34 +0000 | [diff] [blame] | 40 | md5sum.py Print MD5 checksums of argument files. |
Guido van Rossum | ed3c791 | 1995-03-02 15:56:30 +0000 | [diff] [blame] | 41 | methfix.py Fix old method syntax def f(self, (a1, ..., aN)): |
| 42 | mkreal.py Turn a symbolic link into a real file or directory |
Guido van Rossum | a57c9b9 | 1998-10-07 19:52:35 +0000 | [diff] [blame] | 43 | ndiff.py Intelligent diff between text files (Tim Peters) |
| 44 | nm2def.py Create a template for PC/python_nt.def (Marc Lemburg) |
Guido van Rossum | ed3c791 | 1995-03-02 15:56:30 +0000 | [diff] [blame] | 45 | objgraph.py Print object graph from nm output on a library |
Martin v. Löwis | bb640c1 | 2003-06-07 18:46:34 +0000 | [diff] [blame] | 46 | parseentities.py Utility for parsing HTML entity definitions |
Guido van Rossum | ed3c791 | 1995-03-02 15:56:30 +0000 | [diff] [blame] | 47 | pathfix.py Change #!/usr/local/bin/python into something else |
| 48 | pdeps.py Print dependencies between Python modules |
Skip Montanaro | 9445ce5 | 2003-02-03 15:09:32 +0000 | [diff] [blame] | 49 | pickle2db.py Load a pickle generated by db2pickle.py to a database |
Guido van Rossum | ed3c791 | 1995-03-02 15:56:30 +0000 | [diff] [blame] | 50 | pindent.py Indent Python code, giving block-closing comments |
| 51 | ptags.py Create vi tags file for Python modules |
Martin v. Löwis | bb640c1 | 2003-06-07 18:46:34 +0000 | [diff] [blame] | 52 | pydoc Python documentation browser. |
Georg Brandl | 256372c | 2005-08-24 21:42:14 +0000 | [diff] [blame] | 53 | pysource.py Find Python source files |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 54 | redemo.py Basic regular expression demonstration facility |
Martin v. Löwis | bb640c1 | 2003-06-07 18:46:34 +0000 | [diff] [blame] | 55 | reindent.py Change .py files to use 4-space indents. |
Guido van Rossum | a57c9b9 | 1998-10-07 19:52:35 +0000 | [diff] [blame] | 56 | rgrep.py Reverse grep through a file (useful for big logfiles) |
Martin v. Löwis | bb640c1 | 2003-06-07 18:46:34 +0000 | [diff] [blame] | 57 | setup.py Install all scripts listed here. |
Guido van Rossum | ed3c791 | 1995-03-02 15:56:30 +0000 | [diff] [blame] | 58 | suff.py Sort a list of files by suffix |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 59 | svneol.py Sets svn:eol-style on all files in directory. |
Raymond Hettinger | 71e0033 | 2003-05-10 03:30:13 +0000 | [diff] [blame] | 60 | texcheck.py Validate Python LaTeX formatting (Raymond Hettinger) |
Guido van Rossum | a57c9b9 | 1998-10-07 19:52:35 +0000 | [diff] [blame] | 61 | texi2html.py Convert GNU texinfo files into HTML |
Guido van Rossum | 4d3376a | 1997-08-14 20:16:32 +0000 | [diff] [blame] | 62 | treesync.py Synchronize source trees (very ideosyncratic) |
Guido van Rossum | a57c9b9 | 1998-10-07 19:52:35 +0000 | [diff] [blame] | 63 | untabify.py Replace tabs with spaces in argument files |
Guido van Rossum | ed3c791 | 1995-03-02 15:56:30 +0000 | [diff] [blame] | 64 | which.py Find a program in $PATH |
| 65 | xxci.py Wrapper for rcsdiff and ci |