Fred Drake | 3a0351c | 1998-04-04 07:23:21 +0000 | [diff] [blame] | 1 | \section{Built-in Module \module{imp}} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 2 | \label{module-imp} |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 3 | \bimodindex{imp} |
| 4 | \index{import} |
| 5 | |
Guido van Rossum | 6c4f003 | 1995-03-07 10:14:09 +0000 | [diff] [blame] | 6 | This module provides an interface to the mechanisms used to implement |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 7 | the \keyword{import} statement. It defines the following constants and |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 8 | functions: |
| 9 | |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 10 | |
| 11 | \begin{funcdesc}{get_magic}{} |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 12 | Return the magic string value used to recognize byte-compiled code |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 13 | files (``\code{.pyc} files''). (This value may be different for each |
| 14 | Python version.) |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 15 | \end{funcdesc} |
| 16 | |
| 17 | \begin{funcdesc}{get_suffixes}{} |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 18 | Return a list of triples, each describing a particular type of module. |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 19 | Each triple has the form \code{(\var{suffix}, \var{mode}, |
| 20 | \var{type})}, where \var{suffix} is a string to be appended to the |
| 21 | module name to form the filename to search for, \var{mode} is the mode |
| 22 | string to pass to the built-in \code{open} function to open the file |
| 23 | (this can be \code{'r'} for text files or \code{'rb'} for binary |
| 24 | files), and \var{type} is the file type, which has one of the values |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 25 | \constant{PY_SOURCE}, \constant{PY_COMPILED}, or |
| 26 | \constant{C_EXTENSION}, described below. |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 27 | \end{funcdesc} |
| 28 | |
Fred Drake | c9a32ab | 1998-01-07 18:57:01 +0000 | [diff] [blame] | 29 | \begin{funcdesc}{find_module}{name\optional{, path}} |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 30 | Try to find the module \var{name} on the search path \var{path}. If |
| 31 | \var{path} is a list of directory names, each directory is searched |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 32 | for files with any of the suffixes returned by \function{get_suffixes()} |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 33 | above. Invalid names in the list are silently ignored (but all list |
| 34 | items must be strings). If \var{path} is omitted or \code{None}, the |
| 35 | list of directory names given by \code{sys.path} is searched, but |
| 36 | first it searches a few special places: it tries to find a built-in |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 37 | module with the given name (\constant{C_BUILTIN}), then a frozen module |
| 38 | (\constant{PY_FROZEN}), and on some systems some other places are looked |
| 39 | in as well (on the Mac, it looks for a resource (\constant{PY_RESOURCE}); |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 40 | on Windows, it looks in the registry which may point to a specific |
| 41 | file). |
| 42 | |
| 43 | If search is successful, the return value is a triple |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 44 | \code{(\var{file}, \var{pathname}, \var{description})} where |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 45 | \var{file} is an open file object positioned at the beginning, |
| 46 | \var{pathname} is the pathname of the |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 47 | file found, and \var{description} is a triple as contained in the list |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 48 | returned by \function{get_suffixes()} describing the kind of module found. |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 49 | If the module does not live in a file, the returned \var{file} is |
| 50 | \code{None}, \var{filename} is the empty string, and the |
| 51 | \var{description} tuple contains empty strings for its suffix and |
| 52 | mode; the module type is as indicate in parentheses dabove. If the |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 53 | search is unsuccessful, \exception{ImportError} is raised. Other |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 54 | exceptions indicate problems with the arguments or environment. |
| 55 | |
| 56 | This function does not handle hierarchical module names (names |
Fred Drake | cc97454 | 1997-12-29 17:16:24 +0000 | [diff] [blame] | 57 | containing dots). In order to find \var{P}.\var{M}, i.e., submodule |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 58 | \var{M} of package \var{P}, use \function{find_module()} and |
| 59 | \function{load_module()} to find and load package \var{P}, and then use |
| 60 | \function{find_module()} with the \var{path} argument set to |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 61 | \code{\var{P}.__path__}. When \var{P} itself has a dotted name, apply |
| 62 | this recipe recursively. |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 63 | \end{funcdesc} |
| 64 | |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 65 | \begin{funcdesc}{load_module}{name, file, filename, description} |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 66 | Load a module that was previously found by \function{find_module()} (or by |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 67 | an otherwise conducted search yielding compatible results). This |
| 68 | function does more than importing the module: if the module was |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 69 | already imported, it is equivalent to a |
| 70 | \function{reload()}\bifuncindex{reload}! The |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 71 | \var{name} argument indicates the full module name (including the |
| 72 | package name, if this is a submodule of a package). The \var{file} |
| 73 | argument is an open file, and \var{filename} is the corresponding |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 74 | file name; these can be \code{None} and \code{''}, respectively, when |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 75 | the module is not being loaded from a file. The \var{description} |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 76 | argument is a tuple as returned by \function{find_module()} describing |
| 77 | what kind of module must be loaded. |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 78 | |
| 79 | If the load is successful, the return value is the module object; |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 80 | otherwise, an exception (usually \exception{ImportError}) is raised. |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 81 | |
| 82 | \strong{Important:} the caller is responsible for closing the |
| 83 | \var{file} argument, if it was not \code{None}, even when an exception |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 84 | is raised. This is best done using a \keyword{try} |
| 85 | ... \keyword{finally} statement. |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 86 | \end{funcdesc} |
| 87 | |
| 88 | \begin{funcdesc}{new_module}{name} |
| 89 | Return a new empty module object called \var{name}. This object is |
Fred Drake | c9a32ab | 1998-01-07 18:57:01 +0000 | [diff] [blame] | 90 | \emph{not} inserted in \code{sys.modules}. |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 91 | \end{funcdesc} |
| 92 | |
| 93 | The following constants with integer values, defined in this module, |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 94 | are used to indicate the search result of \function{find_module()}. |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 95 | |
| 96 | \begin{datadesc}{PY_SOURCE} |
| 97 | The module was found as a source file. |
| 98 | \end{datadesc} |
| 99 | |
| 100 | \begin{datadesc}{PY_COMPILED} |
| 101 | The module was found as a compiled code object file. |
| 102 | \end{datadesc} |
| 103 | |
| 104 | \begin{datadesc}{C_EXTENSION} |
| 105 | The module was found as dynamically loadable shared library. |
| 106 | \end{datadesc} |
| 107 | |
| 108 | \begin{datadesc}{PY_RESOURCE} |
| 109 | The module was found as a Macintosh resource. This value can only be |
| 110 | returned on a Macintosh. |
| 111 | \end{datadesc} |
| 112 | |
| 113 | \begin{datadesc}{PKG_DIRECTORY} |
| 114 | The module was found as a package directory. |
| 115 | \end{datadesc} |
| 116 | |
| 117 | \begin{datadesc}{C_BUILTIN} |
| 118 | The module was found as a built-in module. |
| 119 | \end{datadesc} |
| 120 | |
| 121 | \begin{datadesc}{PY_FROZEN} |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 122 | The module was found as a frozen module (see \function{init_frozen()}). |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 123 | \end{datadesc} |
| 124 | |
| 125 | The following constant and functions are obsolete; their functionality |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 126 | is available through \function{find_module()} or \function{load_module()}. |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 127 | They are kept around for backward compatibility: |
| 128 | |
| 129 | \begin{datadesc}{SEARCH_ERROR} |
| 130 | Unused. |
| 131 | \end{datadesc} |
| 132 | |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 133 | \begin{funcdesc}{init_builtin}{name} |
| 134 | Initialize the built-in module called \var{name} and return its module |
| 135 | object. If the module was already initialized, it will be initialized |
Fred Drake | c9a32ab | 1998-01-07 18:57:01 +0000 | [diff] [blame] | 136 | \emph{again}. A few modules cannot be initialized twice --- attempting |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 137 | to initialize these again will raise an \exception{ImportError} |
| 138 | exception. If there is no |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 139 | built-in module called \var{name}, \code{None} is returned. |
| 140 | \end{funcdesc} |
| 141 | |
| 142 | \begin{funcdesc}{init_frozen}{name} |
| 143 | Initialize the frozen module called \var{name} and return its module |
| 144 | object. If the module was already initialized, it will be initialized |
Fred Drake | c9a32ab | 1998-01-07 18:57:01 +0000 | [diff] [blame] | 145 | \emph{again}. If there is no frozen module called \var{name}, |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 146 | \code{None} is returned. (Frozen modules are modules written in |
| 147 | Python whose compiled byte-code object is incorporated into a |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 148 | custom-built Python interpreter by Python's \program{freeze} utility. |
| 149 | See \file{Tools/freeze/} for now.) |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 150 | \end{funcdesc} |
| 151 | |
| 152 | \begin{funcdesc}{is_builtin}{name} |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 153 | Return \code{1} if there is a built-in module called \var{name} which |
| 154 | can be initialized again. Return \code{-1} if there is a built-in |
| 155 | module called \var{name} which cannot be initialized again (see |
| 156 | \function{init_builtin()}). Return \code{0} if there is no built-in |
| 157 | module called \var{name}. |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 158 | \end{funcdesc} |
| 159 | |
| 160 | \begin{funcdesc}{is_frozen}{name} |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 161 | Return \code{1} if there is a frozen module (see |
| 162 | \function{init_frozen()}) called \var{name}, or \code{0} if there is |
| 163 | no such module. |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 164 | \end{funcdesc} |
| 165 | |
Fred Drake | c9a32ab | 1998-01-07 18:57:01 +0000 | [diff] [blame] | 166 | \begin{funcdesc}{load_compiled}{name, pathname, file} |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 167 | Load and initialize a module implemented as a byte-compiled code file |
| 168 | and return its module object. If the module was already initialized, |
Fred Drake | c9a32ab | 1998-01-07 18:57:01 +0000 | [diff] [blame] | 169 | it will be initialized \emph{again}. The \var{name} argument is used |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 170 | to create or access a module object. The \var{pathname} argument |
Guido van Rossum | 4d20654 | 1996-06-26 19:21:24 +0000 | [diff] [blame] | 171 | points to the byte-compiled code file. The \var{file} |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 172 | argument is the byte-compiled code file, open for reading in binary |
Guido van Rossum | 4d20654 | 1996-06-26 19:21:24 +0000 | [diff] [blame] | 173 | mode, from the beginning. |
| 174 | It must currently be a real file object, not a |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 175 | user-defined class emulating a file. |
| 176 | \end{funcdesc} |
| 177 | |
Fred Drake | c9a32ab | 1998-01-07 18:57:01 +0000 | [diff] [blame] | 178 | \begin{funcdesc}{load_dynamic}{name, pathname\optional{, file}} |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 179 | Load and initialize a module implemented as a dynamically loadable |
| 180 | shared library and return its module object. If the module was |
Fred Drake | c9a32ab | 1998-01-07 18:57:01 +0000 | [diff] [blame] | 181 | already initialized, it will be initialized \emph{again}. Some modules |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 182 | don't like that and may raise an exception. The \var{pathname} |
| 183 | argument must point to the shared library. The \var{name} argument is |
| 184 | used to construct the name of the initialization function: an external |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 185 | C function called \samp{init\var{name}()} in the shared library is |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 186 | called. The optional \var{file} argment is ignored. (Note: using |
| 187 | shared libraries is highly system dependent, and not all systems |
| 188 | support it.) |
| 189 | \end{funcdesc} |
| 190 | |
Fred Drake | cce1090 | 1998-03-17 06:33:25 +0000 | [diff] [blame] | 191 | \begin{funcdesc}{load_source}{name, pathname, file} |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 192 | Load and initialize a module implemented as a Python source file and |
| 193 | return its module object. If the module was already initialized, it |
Fred Drake | c9a32ab | 1998-01-07 18:57:01 +0000 | [diff] [blame] | 194 | will be initialized \emph{again}. The \var{name} argument is used to |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 195 | create or access a module object. The \var{pathname} argument points |
Guido van Rossum | 4d20654 | 1996-06-26 19:21:24 +0000 | [diff] [blame] | 196 | to the source file. The \var{file} argument is the source |
| 197 | file, open for reading as text, from the beginning. |
| 198 | It must currently be a real file |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 199 | object, not a user-defined class emulating a file. Note that if a |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 200 | properly matching byte-compiled file (with suffix \file{.pyc}) exists, |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 201 | it will be used instead of parsing the given source file. |
| 202 | \end{funcdesc} |
| 203 | |
Fred Drake | c83db33 | 1998-02-19 20:50:52 +0000 | [diff] [blame] | 204 | |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 205 | \subsection{Examples} |
Fred Drake | c83db33 | 1998-02-19 20:50:52 +0000 | [diff] [blame] | 206 | \label{examples-imp} |
| 207 | |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 208 | The following function emulates what was the standard import statement |
| 209 | up to Python 1.4 (i.e., no hierarchical module names). (This |
| 210 | \emph{implementation} wouldn't work in that version, since |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 211 | \function{find_module()} has been extended and |
| 212 | \function{load_module()} has been added in 1.4.) |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 213 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 214 | \begin{verbatim} |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 215 | import imp import sys |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 216 | |
Guido van Rossum | 4f4c9b4 | 1995-02-15 15:52:13 +0000 | [diff] [blame] | 217 | def __import__(name, globals=None, locals=None, fromlist=None): |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 218 | # Fast path: see if the module has already been imported. |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 219 | try: |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 220 | return sys.modules[name] |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 221 | except KeyError: |
| 222 | pass |
Guido van Rossum | 946805d | 1995-01-10 10:51:08 +0000 | [diff] [blame] | 223 | |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 224 | # If any of the following calls raises an exception, |
Guido van Rossum | 96628a9 | 1995-04-10 11:34:00 +0000 | [diff] [blame] | 225 | # there's a problem we can't handle -- let the caller handle it. |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 226 | |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 227 | fp, pathname, description = imp.find_module(name) |
| 228 | |
Guido van Rossum | d6ac380 | 1995-07-07 23:01:27 +0000 | [diff] [blame] | 229 | try: |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 230 | return imp.load_module(name, fp, pathname, description) |
Guido van Rossum | d6ac380 | 1995-07-07 23:01:27 +0000 | [diff] [blame] | 231 | finally: |
| 232 | # Since we may exit via an exception, close fp explicitly. |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 233 | if fp: |
| 234 | fp.close() |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 235 | \end{verbatim} |
Guido van Rossum | 3cdb8f3 | 1997-09-09 20:53:37 +0000 | [diff] [blame] | 236 | |
| 237 | A more complete example that implements hierarchical module names and |
Fred Drake | bccc640 | 1998-03-08 06:41:57 +0000 | [diff] [blame] | 238 | includes a \function{reload()}\bifuncindex{reload} function can be |
| 239 | found in the standard module \module{knee}\refstmodindex{knee} (which |
| 240 | is intended as an example only --- don't rely on any part of it being |
| 241 | a standard interface). |