blob: 195b2dd5931688c2a0a382d8c87eec8b80495709 [file] [log] [blame]
Andrew M. Kuchling17e33e42004-08-07 20:13:34 +00001\section{\module{modulefinder} ---
2 Find modules used by a script}
3\sectionauthor{A.M. Kuchling}{amk@amk.ca}
4
5\declaremodule{standard}{modulefinder}
6\modulesynopsis{Find modules used by a script.}
7
8This module provides a \class{ModuleFinder} class that can be used to
9determine the set of modules imported by a script.
10\code{modulefinder.py} can also be run as a script, giving the
11filename of a Python script as its argument, after which a report of
12the imported modules will be printed.
13
14\begin{funcdesc}{AddPackagePath}{pkg_name, path}
15Record that the package named \var{pkg_name} can be found in the specified \var{path}.
16\end{funcdesc}
17
18\begin{funcdesc}{ReplacePackage}{oldname, newname}
19Allows specifying that the module named \var{oldname} is in fact
20the package named \var{newname}. The most common usage would be
21to handle how the \module{_xmlplus} package replaces the \module{xml}
22package.
23\end{funcdesc}
24
25\begin{classdesc}{ModuleFinder}{\optional{path=None, debug=0, excludes=[], replace_paths=[]}}
26
27This class provides \method{run_script()} and \method{report()}
28methods to determine the set of modules imported by a script.
29\var{path} can be a list of directories to search for modules; if not
30specified, \code{sys.path} is used.
31\var{debug} sets the debugging level; higher values make the class print
32debugging messages about what it's doing.
33\var{excludes} is a list of module names to exclude from the analysis.
34\var{replace_paths} is a list of \code{(\var{oldpath}, \var{newpath})}
35tuples that will be replaced in module paths.
36\end{classdesc}
37
38\begin{methoddesc}[ModuleFinder]{report}{}
39Print a report to standard output that lists the modules imported by the script
40and their
41paths, as well as modules that are missing or seem to be missing.
42\end{methoddesc}
43
44\begin{methoddesc}[ModuleFinder]{run_script}{pathname}
45Analyze the contents of the \var{pathname} file, which must contain
46Python code.
47\end{methoddesc}
48
49