blob: b4b64238d6fe84ead374c54b3e142a033c42eca9 [file] [log] [blame]
Fred Drake295da241998-08-10 19:42:37 +00001\section{\module{imp} ---
2 Access the implementation of the \keyword{import} statement.}
Fred Drakeb91e9341998-07-23 17:59:49 +00003\declaremodule{builtin}{imp}
4
5\modulesynopsis{Access the implementation of the \keyword{import} statement.}
6
Guido van Rossum946805d1995-01-10 10:51:08 +00007\index{import}
8
Guido van Rossum6c4f0031995-03-07 10:14:09 +00009This module provides an interface to the mechanisms used to implement
Fred Drakebccc6401998-03-08 06:41:57 +000010the \keyword{import} statement. It defines the following constants and
Guido van Rossum946805d1995-01-10 10:51:08 +000011functions:
12
Guido van Rossum946805d1995-01-10 10:51:08 +000013
14\begin{funcdesc}{get_magic}{}
Fred Drake64c105d1998-08-11 15:18:45 +000015\indexii{file}{byte-code}
Guido van Rossum470be141995-03-17 16:07:09 +000016Return the magic string value used to recognize byte-compiled code
Fred Drake64c105d1998-08-11 15:18:45 +000017files (\file{.pyc} files). (This value may be different for each
Guido van Rossum3cdb8f31997-09-09 20:53:37 +000018Python version.)
Guido van Rossum946805d1995-01-10 10:51:08 +000019\end{funcdesc}
20
21\begin{funcdesc}{get_suffixes}{}
Guido van Rossum3cdb8f31997-09-09 20:53:37 +000022Return a list of triples, each describing a particular type of module.
Guido van Rossum946805d1995-01-10 10:51:08 +000023Each triple has the form \code{(\var{suffix}, \var{mode},
24\var{type})}, where \var{suffix} is a string to be appended to the
25module name to form the filename to search for, \var{mode} is the mode
Fred Drake64c105d1998-08-11 15:18:45 +000026string to pass to the built-in \function{open()} function to open the
27file (this can be \code{'r'} for text files or \code{'rb'} for binary
Guido van Rossum946805d1995-01-10 10:51:08 +000028files), and \var{type} is the file type, which has one of the values
Fred Drakebccc6401998-03-08 06:41:57 +000029\constant{PY_SOURCE}, \constant{PY_COMPILED}, or
30\constant{C_EXTENSION}, described below.
Guido van Rossum946805d1995-01-10 10:51:08 +000031\end{funcdesc}
32
Fred Drakec9a32ab1998-01-07 18:57:01 +000033\begin{funcdesc}{find_module}{name\optional{, path}}
Guido van Rossum3cdb8f31997-09-09 20:53:37 +000034Try to find the module \var{name} on the search path \var{path}. If
35\var{path} is a list of directory names, each directory is searched
Fred Drakebccc6401998-03-08 06:41:57 +000036for files with any of the suffixes returned by \function{get_suffixes()}
Guido van Rossum3cdb8f31997-09-09 20:53:37 +000037above. Invalid names in the list are silently ignored (but all list
38items must be strings). If \var{path} is omitted or \code{None}, the
39list of directory names given by \code{sys.path} is searched, but
40first it searches a few special places: it tries to find a built-in
Fred Drakebccc6401998-03-08 06:41:57 +000041module with the given name (\constant{C_BUILTIN}), then a frozen module
42(\constant{PY_FROZEN}), and on some systems some other places are looked
43in as well (on the Mac, it looks for a resource (\constant{PY_RESOURCE});
Guido van Rossum3cdb8f31997-09-09 20:53:37 +000044on Windows, it looks in the registry which may point to a specific
45file).
46
47If search is successful, the return value is a triple
Guido van Rossum946805d1995-01-10 10:51:08 +000048\code{(\var{file}, \var{pathname}, \var{description})} where
Guido van Rossum470be141995-03-17 16:07:09 +000049\var{file} is an open file object positioned at the beginning,
50\var{pathname} is the pathname of the
Guido van Rossum946805d1995-01-10 10:51:08 +000051file found, and \var{description} is a triple as contained in the list
Fred Drakebccc6401998-03-08 06:41:57 +000052returned by \function{get_suffixes()} describing the kind of module found.
Guido van Rossum3cdb8f31997-09-09 20:53:37 +000053If the module does not live in a file, the returned \var{file} is
54\code{None}, \var{filename} is the empty string, and the
55\var{description} tuple contains empty strings for its suffix and
56mode; the module type is as indicate in parentheses dabove. If the
Fred Drakebccc6401998-03-08 06:41:57 +000057search is unsuccessful, \exception{ImportError} is raised. Other
Guido van Rossum3cdb8f31997-09-09 20:53:37 +000058exceptions indicate problems with the arguments or environment.
59
60This function does not handle hierarchical module names (names
Fred Drakecc974541997-12-29 17:16:24 +000061containing dots). In order to find \var{P}.\var{M}, i.e., submodule
Fred Drakebccc6401998-03-08 06:41:57 +000062\var{M} of package \var{P}, use \function{find_module()} and
63\function{load_module()} to find and load package \var{P}, and then use
64\function{find_module()} with the \var{path} argument set to
Guido van Rossum3cdb8f31997-09-09 20:53:37 +000065\code{\var{P}.__path__}. When \var{P} itself has a dotted name, apply
66this recipe recursively.
Guido van Rossum946805d1995-01-10 10:51:08 +000067\end{funcdesc}
68
Guido van Rossum3cdb8f31997-09-09 20:53:37 +000069\begin{funcdesc}{load_module}{name, file, filename, description}
Fred Drakebccc6401998-03-08 06:41:57 +000070Load a module that was previously found by \function{find_module()} (or by
Guido van Rossum3cdb8f31997-09-09 20:53:37 +000071an otherwise conducted search yielding compatible results). This
72function does more than importing the module: if the module was
Fred Drakebccc6401998-03-08 06:41:57 +000073already imported, it is equivalent to a
74\function{reload()}\bifuncindex{reload}! The
Guido van Rossum3cdb8f31997-09-09 20:53:37 +000075\var{name} argument indicates the full module name (including the
76package name, if this is a submodule of a package). The \var{file}
77argument is an open file, and \var{filename} is the corresponding
Fred Drakebccc6401998-03-08 06:41:57 +000078file name; these can be \code{None} and \code{''}, respectively, when
Guido van Rossum3cdb8f31997-09-09 20:53:37 +000079the module is not being loaded from a file. The \var{description}
Fred Drakebccc6401998-03-08 06:41:57 +000080argument is a tuple as returned by \function{find_module()} describing
81what kind of module must be loaded.
Guido van Rossum3cdb8f31997-09-09 20:53:37 +000082
83If the load is successful, the return value is the module object;
Fred Drakebccc6401998-03-08 06:41:57 +000084otherwise, an exception (usually \exception{ImportError}) is raised.
Guido van Rossum3cdb8f31997-09-09 20:53:37 +000085
86\strong{Important:} the caller is responsible for closing the
87\var{file} argument, if it was not \code{None}, even when an exception
Fred Drakebccc6401998-03-08 06:41:57 +000088is raised. This is best done using a \keyword{try}
89... \keyword{finally} statement.
Guido van Rossum3cdb8f31997-09-09 20:53:37 +000090\end{funcdesc}
91
92\begin{funcdesc}{new_module}{name}
93Return a new empty module object called \var{name}. This object is
Fred Drakec9a32ab1998-01-07 18:57:01 +000094\emph{not} inserted in \code{sys.modules}.
Guido van Rossum3cdb8f31997-09-09 20:53:37 +000095\end{funcdesc}
96
97The following constants with integer values, defined in this module,
Fred Drakebccc6401998-03-08 06:41:57 +000098are used to indicate the search result of \function{find_module()}.
Guido van Rossum3cdb8f31997-09-09 20:53:37 +000099
100\begin{datadesc}{PY_SOURCE}
101The module was found as a source file.
102\end{datadesc}
103
104\begin{datadesc}{PY_COMPILED}
105The module was found as a compiled code object file.
106\end{datadesc}
107
108\begin{datadesc}{C_EXTENSION}
109The module was found as dynamically loadable shared library.
110\end{datadesc}
111
112\begin{datadesc}{PY_RESOURCE}
113The module was found as a Macintosh resource. This value can only be
114returned on a Macintosh.
115\end{datadesc}
116
117\begin{datadesc}{PKG_DIRECTORY}
118The module was found as a package directory.
119\end{datadesc}
120
121\begin{datadesc}{C_BUILTIN}
122The module was found as a built-in module.
123\end{datadesc}
124
125\begin{datadesc}{PY_FROZEN}
Fred Drakebccc6401998-03-08 06:41:57 +0000126The module was found as a frozen module (see \function{init_frozen()}).
Guido van Rossum3cdb8f31997-09-09 20:53:37 +0000127\end{datadesc}
128
129The following constant and functions are obsolete; their functionality
Fred Drakebccc6401998-03-08 06:41:57 +0000130is available through \function{find_module()} or \function{load_module()}.
Guido van Rossum3cdb8f31997-09-09 20:53:37 +0000131They are kept around for backward compatibility:
132
133\begin{datadesc}{SEARCH_ERROR}
134Unused.
135\end{datadesc}
136
Guido van Rossum946805d1995-01-10 10:51:08 +0000137\begin{funcdesc}{init_builtin}{name}
138Initialize the built-in module called \var{name} and return its module
139object. If the module was already initialized, it will be initialized
Fred Drakec9a32ab1998-01-07 18:57:01 +0000140\emph{again}. A few modules cannot be initialized twice --- attempting
Fred Drakebccc6401998-03-08 06:41:57 +0000141to initialize these again will raise an \exception{ImportError}
142exception. If there is no
Guido van Rossum946805d1995-01-10 10:51:08 +0000143built-in module called \var{name}, \code{None} is returned.
144\end{funcdesc}
145
146\begin{funcdesc}{init_frozen}{name}
147Initialize the frozen module called \var{name} and return its module
148object. If the module was already initialized, it will be initialized
Fred Drakec9a32ab1998-01-07 18:57:01 +0000149\emph{again}. If there is no frozen module called \var{name},
Guido van Rossum946805d1995-01-10 10:51:08 +0000150\code{None} is returned. (Frozen modules are modules written in
151Python whose compiled byte-code object is incorporated into a
Fred Drakebccc6401998-03-08 06:41:57 +0000152custom-built Python interpreter by Python's \program{freeze} utility.
153See \file{Tools/freeze/} for now.)
Guido van Rossum946805d1995-01-10 10:51:08 +0000154\end{funcdesc}
155
156\begin{funcdesc}{is_builtin}{name}
Fred Drakebccc6401998-03-08 06:41:57 +0000157Return \code{1} if there is a built-in module called \var{name} which
158can be initialized again. Return \code{-1} if there is a built-in
159module called \var{name} which cannot be initialized again (see
160\function{init_builtin()}). Return \code{0} if there is no built-in
161module called \var{name}.
Guido van Rossum946805d1995-01-10 10:51:08 +0000162\end{funcdesc}
163
164\begin{funcdesc}{is_frozen}{name}
Fred Drakebccc6401998-03-08 06:41:57 +0000165Return \code{1} if there is a frozen module (see
166\function{init_frozen()}) called \var{name}, or \code{0} if there is
167no such module.
Guido van Rossum946805d1995-01-10 10:51:08 +0000168\end{funcdesc}
169
Fred Drakec9a32ab1998-01-07 18:57:01 +0000170\begin{funcdesc}{load_compiled}{name, pathname, file}
Fred Drake64c105d1998-08-11 15:18:45 +0000171\indexii{file}{byte-code}
Guido van Rossum946805d1995-01-10 10:51:08 +0000172Load and initialize a module implemented as a byte-compiled code file
173and return its module object. If the module was already initialized,
Fred Drakec9a32ab1998-01-07 18:57:01 +0000174it will be initialized \emph{again}. The \var{name} argument is used
Guido van Rossum946805d1995-01-10 10:51:08 +0000175to create or access a module object. The \var{pathname} argument
Guido van Rossum4d206541996-06-26 19:21:24 +0000176points to the byte-compiled code file. The \var{file}
Guido van Rossum946805d1995-01-10 10:51:08 +0000177argument is the byte-compiled code file, open for reading in binary
Guido van Rossum4d206541996-06-26 19:21:24 +0000178mode, from the beginning.
179It must currently be a real file object, not a
Guido van Rossum946805d1995-01-10 10:51:08 +0000180user-defined class emulating a file.
181\end{funcdesc}
182
Fred Drakec9a32ab1998-01-07 18:57:01 +0000183\begin{funcdesc}{load_dynamic}{name, pathname\optional{, file}}
Guido van Rossum946805d1995-01-10 10:51:08 +0000184Load and initialize a module implemented as a dynamically loadable
185shared library and return its module object. If the module was
Fred Drakec9a32ab1998-01-07 18:57:01 +0000186already initialized, it will be initialized \emph{again}. Some modules
Guido van Rossum946805d1995-01-10 10:51:08 +0000187don't like that and may raise an exception. The \var{pathname}
188argument must point to the shared library. The \var{name} argument is
189used to construct the name of the initialization function: an external
Fred Drakebccc6401998-03-08 06:41:57 +0000190C function called \samp{init\var{name}()} in the shared library is
Guido van Rossum946805d1995-01-10 10:51:08 +0000191called. The optional \var{file} argment is ignored. (Note: using
192shared libraries is highly system dependent, and not all systems
193support it.)
194\end{funcdesc}
195
Fred Drakecce10901998-03-17 06:33:25 +0000196\begin{funcdesc}{load_source}{name, pathname, file}
Guido van Rossum946805d1995-01-10 10:51:08 +0000197Load and initialize a module implemented as a Python source file and
198return its module object. If the module was already initialized, it
Fred Drakec9a32ab1998-01-07 18:57:01 +0000199will be initialized \emph{again}. The \var{name} argument is used to
Guido van Rossum946805d1995-01-10 10:51:08 +0000200create or access a module object. The \var{pathname} argument points
Guido van Rossum4d206541996-06-26 19:21:24 +0000201to the source file. The \var{file} argument is the source
202file, open for reading as text, from the beginning.
203It must currently be a real file
Guido van Rossum946805d1995-01-10 10:51:08 +0000204object, not a user-defined class emulating a file. Note that if a
Fred Drake64c105d1998-08-11 15:18:45 +0000205properly matching byte-compiled file (with suffix \file{.pyc} or
206\file{.pyo}) exists, it will be used instead of parsing the given
207source file.
Guido van Rossum946805d1995-01-10 10:51:08 +0000208\end{funcdesc}
209
Fred Drakec83db331998-02-19 20:50:52 +0000210
Guido van Rossum946805d1995-01-10 10:51:08 +0000211\subsection{Examples}
Fred Drakec83db331998-02-19 20:50:52 +0000212\label{examples-imp}
213
Guido van Rossum3cdb8f31997-09-09 20:53:37 +0000214The following function emulates what was the standard import statement
215up to Python 1.4 (i.e., no hierarchical module names). (This
216\emph{implementation} wouldn't work in that version, since
Fred Drakebccc6401998-03-08 06:41:57 +0000217\function{find_module()} has been extended and
218\function{load_module()} has been added in 1.4.)
Guido van Rossum946805d1995-01-10 10:51:08 +0000219
Fred Drake19479911998-02-13 06:58:54 +0000220\begin{verbatim}
Guido van Rossum3cdb8f31997-09-09 20:53:37 +0000221import imp import sys
Guido van Rossum946805d1995-01-10 10:51:08 +0000222
Guido van Rossum4f4c9b41995-02-15 15:52:13 +0000223def __import__(name, globals=None, locals=None, fromlist=None):
Guido van Rossum470be141995-03-17 16:07:09 +0000224 # Fast path: see if the module has already been imported.
Guido van Rossum3cdb8f31997-09-09 20:53:37 +0000225 try:
Guido van Rossum470be141995-03-17 16:07:09 +0000226 return sys.modules[name]
Guido van Rossum3cdb8f31997-09-09 20:53:37 +0000227 except KeyError:
228 pass
Guido van Rossum946805d1995-01-10 10:51:08 +0000229
Guido van Rossum470be141995-03-17 16:07:09 +0000230 # If any of the following calls raises an exception,
Guido van Rossum96628a91995-04-10 11:34:00 +0000231 # there's a problem we can't handle -- let the caller handle it.
Guido van Rossum470be141995-03-17 16:07:09 +0000232
Guido van Rossum3cdb8f31997-09-09 20:53:37 +0000233 fp, pathname, description = imp.find_module(name)
234
Guido van Rossumd6ac3801995-07-07 23:01:27 +0000235 try:
Guido van Rossum3cdb8f31997-09-09 20:53:37 +0000236 return imp.load_module(name, fp, pathname, description)
Guido van Rossumd6ac3801995-07-07 23:01:27 +0000237 finally:
238 # Since we may exit via an exception, close fp explicitly.
Guido van Rossum3cdb8f31997-09-09 20:53:37 +0000239 if fp:
240 fp.close()
Fred Drake19479911998-02-13 06:58:54 +0000241\end{verbatim}
Guido van Rossum3cdb8f31997-09-09 20:53:37 +0000242
243A more complete example that implements hierarchical module names and
Fred Drakebccc6401998-03-08 06:41:57 +0000244includes a \function{reload()}\bifuncindex{reload} function can be
245found in the standard module \module{knee}\refstmodindex{knee} (which
246is intended as an example only --- don't rely on any part of it being
247a standard interface).