blob: 8cdc256e7c9e0e09c269a7549866a9620c9ef21b [file] [log] [blame]
Georg Brandl54a3faa2008-01-20 09:30:57 +00001.. highlightlang:: c
2
3.. _importing:
4
5Importing Modules
6=================
7
8
Georg Brandl60203b42010-10-06 10:11:56 +00009.. c:function:: PyObject* PyImport_ImportModule(const char *name)
Georg Brandl54a3faa2008-01-20 09:30:57 +000010
11 .. index::
12 single: package variable; __all__
13 single: __all__ (package variable)
14 single: modules (in module sys)
15
Georg Brandl60203b42010-10-06 10:11:56 +000016 This is a simplified interface to :c:func:`PyImport_ImportModuleEx` below,
Georg Brandl54a3faa2008-01-20 09:30:57 +000017 leaving the *globals* and *locals* arguments set to *NULL* and *level* set
18 to 0. When the *name*
19 argument contains a dot (when it specifies a submodule of a package), the
20 *fromlist* argument is set to the list ``['*']`` so that the return value is the
21 named module rather than the top-level package containing it as would otherwise
22 be the case. (Unfortunately, this has an additional side effect when *name* in
23 fact specifies a subpackage instead of a submodule: the submodules specified in
24 the package's ``__all__`` variable are loaded.) Return a new reference to the
Georg Brandle6bcc912008-05-12 18:05:20 +000025 imported module, or *NULL* with an exception set on failure. A failing
26 import of a module doesn't leave the module in :data:`sys.modules`.
Georg Brandl54a3faa2008-01-20 09:30:57 +000027
Alexandre Vassalotti711ed4a2009-07-17 10:42:05 +000028 This function always uses absolute imports.
29
Georg Brandl54a3faa2008-01-20 09:30:57 +000030
Georg Brandl60203b42010-10-06 10:11:56 +000031.. c:function:: PyObject* PyImport_ImportModuleNoBlock(const char *name)
Georg Brandl54a3faa2008-01-20 09:30:57 +000032
Antoine Pitrouea3eb882012-05-17 18:55:59 +020033 This function is a deprecated alias of :c:func:`PyImport_ImportModule`.
34
35 .. versionchanged:: 3.3
36 This function used to fail immediately when the import lock was held
37 by another thread. In Python 3.3 though, the locking scheme switched
38 to per-module locks for most purposes, so this function's special
39 behaviour isn't needed anymore.
Georg Brandl54a3faa2008-01-20 09:30:57 +000040
41
Serhiy Storchaka03863d22015-06-21 17:11:21 +030042.. c:function:: PyObject* PyImport_ImportModuleEx(const char *name, PyObject *globals, PyObject *locals, PyObject *fromlist)
Georg Brandl54a3faa2008-01-20 09:30:57 +000043
44 .. index:: builtin: __import__
45
46 Import a module. This is best described by referring to the built-in Python
Brett Cannon522267e2012-08-10 18:55:08 -040047 function :func:`__import__`.
Georg Brandl54a3faa2008-01-20 09:30:57 +000048
Georg Brandle6bcc912008-05-12 18:05:20 +000049 The return value is a new reference to the imported module or top-level
50 package, or *NULL* with an exception set on failure. Like for
51 :func:`__import__`, the return value when a submodule of a package was
52 requested is normally the top-level package, unless a non-empty *fromlist*
53 was given.
Georg Brandl54a3faa2008-01-20 09:30:57 +000054
55 Failing imports remove incomplete module objects, like with
Georg Brandl60203b42010-10-06 10:11:56 +000056 :c:func:`PyImport_ImportModule`.
Georg Brandl54a3faa2008-01-20 09:30:57 +000057
58
Victor Stinnerfe93faf2011-03-14 15:54:52 -040059.. c:function:: PyObject* PyImport_ImportModuleLevelObject(PyObject *name, PyObject *globals, PyObject *locals, PyObject *fromlist, int level)
Georg Brandl54a3faa2008-01-20 09:30:57 +000060
61 Import a module. This is best described by referring to the built-in Python
62 function :func:`__import__`, as the standard :func:`__import__` function calls
63 this function directly.
64
65 The return value is a new reference to the imported module or top-level package,
66 or *NULL* with an exception set on failure. Like for :func:`__import__`,
67 the return value when a submodule of a package was requested is normally the
68 top-level package, unless a non-empty *fromlist* was given.
69
Victor Stinnerfe93faf2011-03-14 15:54:52 -040070 .. versionadded:: 3.3
71
72
Serhiy Storchaka03863d22015-06-21 17:11:21 +030073.. c:function:: PyObject* PyImport_ImportModuleLevel(const char *name, PyObject *globals, PyObject *locals, PyObject *fromlist, int level)
Victor Stinnerfe93faf2011-03-14 15:54:52 -040074
Martin Panter6245cb32016-04-15 02:14:19 +000075 Similar to :c:func:`PyImport_ImportModuleLevelObject`, but the name is a
Victor Stinnerfe93faf2011-03-14 15:54:52 -040076 UTF-8 encoded string instead of a Unicode object.
Georg Brandl54a3faa2008-01-20 09:30:57 +000077
Brett Cannon522267e2012-08-10 18:55:08 -040078 .. versionchanged:: 3.3
Ezio Melotti7598e182012-09-20 08:33:53 +030079 Negative values for *level* are no longer accepted.
Brett Cannon522267e2012-08-10 18:55:08 -040080
Georg Brandl60203b42010-10-06 10:11:56 +000081.. c:function:: PyObject* PyImport_Import(PyObject *name)
Georg Brandl54a3faa2008-01-20 09:30:57 +000082
83 This is a higher-level interface that calls the current "import hook
84 function" (with an explicit *level* of 0, meaning absolute import). It
85 invokes the :func:`__import__` function from the ``__builtins__`` of the
86 current globals. This means that the import is done using whatever import
87 hooks are installed in the current environment.
88
Alexandre Vassalotti711ed4a2009-07-17 10:42:05 +000089 This function always uses absolute imports.
90
Georg Brandl54a3faa2008-01-20 09:30:57 +000091
Georg Brandl60203b42010-10-06 10:11:56 +000092.. c:function:: PyObject* PyImport_ReloadModule(PyObject *m)
Georg Brandl54a3faa2008-01-20 09:30:57 +000093
94 Reload a module. Return a new reference to the reloaded module, or *NULL* with
95 an exception set on failure (the module still exists in this case).
96
97
Victor Stinner27ee0892011-03-04 12:57:09 +000098.. c:function:: PyObject* PyImport_AddModuleObject(PyObject *name)
Georg Brandl54a3faa2008-01-20 09:30:57 +000099
100 Return the module object corresponding to a module name. The *name* argument
101 may be of the form ``package.module``. First check the modules dictionary if
102 there's one there, and if not, create a new one and insert it in the modules
103 dictionary. Return *NULL* with an exception set on failure.
104
105 .. note::
106
107 This function does not load or import the module; if the module wasn't already
Georg Brandl60203b42010-10-06 10:11:56 +0000108 loaded, you will get an empty module object. Use :c:func:`PyImport_ImportModule`
Georg Brandl54a3faa2008-01-20 09:30:57 +0000109 or one of its variants to import a module. Package structures implied by a
110 dotted name for *name* are not created if not already present.
111
Victor Stinner27ee0892011-03-04 12:57:09 +0000112 .. versionadded:: 3.3
113
114
115.. c:function:: PyObject* PyImport_AddModule(const char *name)
116
Éric Araujo16e6f4c2011-03-20 18:08:19 +0100117 Similar to :c:func:`PyImport_AddModuleObject`, but the name is a UTF-8
Victor Stinner27ee0892011-03-04 12:57:09 +0000118 encoded string instead of a Unicode object.
119
Georg Brandl54a3faa2008-01-20 09:30:57 +0000120
Serhiy Storchakac6792272013-10-19 21:03:34 +0300121.. c:function:: PyObject* PyImport_ExecCodeModule(const char *name, PyObject *co)
Georg Brandl54a3faa2008-01-20 09:30:57 +0000122
123 .. index:: builtin: compile
124
125 Given a module name (possibly of the form ``package.module``) and a code object
126 read from a Python bytecode file or obtained from the built-in function
127 :func:`compile`, load the module. Return a new reference to the module object,
Georg Brandle6bcc912008-05-12 18:05:20 +0000128 or *NULL* with an exception set if an error occurred. *name*
129 is removed from :attr:`sys.modules` in error cases, even if *name* was already
Georg Brandl60203b42010-10-06 10:11:56 +0000130 in :attr:`sys.modules` on entry to :c:func:`PyImport_ExecCodeModule`. Leaving
Georg Brandl54a3faa2008-01-20 09:30:57 +0000131 incompletely initialized modules in :attr:`sys.modules` is dangerous, as imports of
132 such modules have no way to know that the module object is an unknown (and
133 probably damaged with respect to the module author's intents) state.
134
Eric Snow08197a42014-05-12 17:54:55 -0600135 The module's :attr:`__spec__` and :attr:`__loader__` will be set, if
136 not set already, with the appropriate values. The spec's loader will
137 be set to the module's ``__loader__`` (if set) and to an instance of
138 :class:`SourceFileLoader` otherwise.
139
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000140 The module's :attr:`__file__` attribute will be set to the code object's
Eric Snow08197a42014-05-12 17:54:55 -0600141 :c:member:`co_filename`. If applicable, :attr:`__cached__` will also
142 be set.
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000143
Georg Brandl54a3faa2008-01-20 09:30:57 +0000144 This function will reload the module if it was already imported. See
Georg Brandl60203b42010-10-06 10:11:56 +0000145 :c:func:`PyImport_ReloadModule` for the intended way to reload a module.
Georg Brandl54a3faa2008-01-20 09:30:57 +0000146
147 If *name* points to a dotted name of the form ``package.module``, any package
148 structures not already created will still not be created.
149
Georg Brandl60203b42010-10-06 10:11:56 +0000150 See also :c:func:`PyImport_ExecCodeModuleEx` and
151 :c:func:`PyImport_ExecCodeModuleWithPathnames`.
Barry Warsaw28a691b2010-04-17 00:19:56 +0000152
Georg Brandl54a3faa2008-01-20 09:30:57 +0000153
Serhiy Storchakac6792272013-10-19 21:03:34 +0300154.. c:function:: PyObject* PyImport_ExecCodeModuleEx(const char *name, PyObject *co, const char *pathname)
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000155
Georg Brandl60203b42010-10-06 10:11:56 +0000156 Like :c:func:`PyImport_ExecCodeModule`, but the :attr:`__file__` attribute of
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000157 the module object is set to *pathname* if it is non-``NULL``.
158
Georg Brandl60203b42010-10-06 10:11:56 +0000159 See also :c:func:`PyImport_ExecCodeModuleWithPathnames`.
Barry Warsaw28a691b2010-04-17 00:19:56 +0000160
161
Victor Stinner27ee0892011-03-04 12:57:09 +0000162.. c:function:: PyObject* PyImport_ExecCodeModuleObject(PyObject *name, PyObject *co, PyObject *pathname, PyObject *cpathname)
Barry Warsaw28a691b2010-04-17 00:19:56 +0000163
Georg Brandl60203b42010-10-06 10:11:56 +0000164 Like :c:func:`PyImport_ExecCodeModuleEx`, but the :attr:`__cached__`
Barry Warsaw28a691b2010-04-17 00:19:56 +0000165 attribute of the module object is set to *cpathname* if it is
166 non-``NULL``. Of the three functions, this is the preferred one to use.
167
Victor Stinner27ee0892011-03-04 12:57:09 +0000168 .. versionadded:: 3.3
169
170
Serhiy Storchakac6792272013-10-19 21:03:34 +0300171.. c:function:: PyObject* PyImport_ExecCodeModuleWithPathnames(const char *name, PyObject *co, const char *pathname, const char *cpathname)
Victor Stinner27ee0892011-03-04 12:57:09 +0000172
173 Like :c:func:`PyImport_ExecCodeModuleObject`, but *name*, *pathname* and
Brett Cannona6473f92012-07-13 13:57:03 -0400174 *cpathname* are UTF-8 encoded strings. Attempts are also made to figure out
175 what the value for *pathname* should be from *cpathname* if the former is
176 set to ``NULL``.
Victor Stinner27ee0892011-03-04 12:57:09 +0000177
Éric Araujo930df312010-12-16 06:28:48 +0000178 .. versionadded:: 3.2
Brett Cannona6473f92012-07-13 13:57:03 -0400179 .. versionchanged:: 3.3
180 Uses :func:`imp.source_from_cache()` in calculating the source path if
181 only the bytecode path is provided.
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000182
Victor Stinner27ee0892011-03-04 12:57:09 +0000183
Georg Brandl60203b42010-10-06 10:11:56 +0000184.. c:function:: long PyImport_GetMagicNumber()
Georg Brandl54a3faa2008-01-20 09:30:57 +0000185
Brett Cannonf299abd2015-04-13 14:21:02 -0400186 Return the magic number for Python bytecode files (a.k.a. :file:`.pyc` file).
187 The magic number should be present in the first four bytes of the bytecode
Serhiy Storchaka1ecf7d22016-10-27 21:41:19 +0300188 file, in little-endian byte order. Returns ``-1`` on error.
Brett Cannon77b2abd2012-07-09 16:09:00 -0400189
190 .. versionchanged:: 3.3
Serhiy Storchaka1ecf7d22016-10-27 21:41:19 +0300191 Return value of ``-1`` upon failure.
Georg Brandl54a3faa2008-01-20 09:30:57 +0000192
193
Georg Brandl60203b42010-10-06 10:11:56 +0000194.. c:function:: const char * PyImport_GetMagicTag()
Barry Warsaw28a691b2010-04-17 00:19:56 +0000195
196 Return the magic tag string for :pep:`3147` format Python bytecode file
Brett Cannon3adc7b72012-07-09 14:22:12 -0400197 names. Keep in mind that the value at ``sys.implementation.cache_tag`` is
198 authoritative and should be used instead of this function.
Barry Warsaw28a691b2010-04-17 00:19:56 +0000199
Éric Araujo930df312010-12-16 06:28:48 +0000200 .. versionadded:: 3.2
201
Georg Brandl60203b42010-10-06 10:11:56 +0000202.. c:function:: PyObject* PyImport_GetModuleDict()
Georg Brandl54a3faa2008-01-20 09:30:57 +0000203
204 Return the dictionary used for the module administration (a.k.a.
205 ``sys.modules``). Note that this is a per-interpreter variable.
206
Eric Snow3f9eee62017-09-15 16:35:20 -0600207.. c:function:: PyObject* PyImport_GetModule(PyObject *name)
208
209 Return the already imported module with the given name. If the
210 module has not been imported yet then returns NULL but does not set
211 an error. Returns NULL and sets an error if the lookup failed.
212
213 .. versionadded:: 3.7
Georg Brandl54a3faa2008-01-20 09:30:57 +0000214
Georg Brandl60203b42010-10-06 10:11:56 +0000215.. c:function:: PyObject* PyImport_GetImporter(PyObject *path)
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000216
Senthil Kumaran32d37422016-09-07 00:52:20 -0700217 Return a finder object for a :data:`sys.path`/:attr:`pkg.__path__` item
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000218 *path*, possibly by fetching it from the :data:`sys.path_importer_cache`
219 dict. If it wasn't yet cached, traverse :data:`sys.path_hooks` until a hook
220 is found that can handle the path item. Return ``None`` if no hook could;
Senthil Kumaran32d37422016-09-07 00:52:20 -0700221 this tells our caller that the :term:`path based finder` could not find a
222 finder for this path item. Cache the result in :data:`sys.path_importer_cache`.
223 Return a new reference to the finder object.
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000224
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000225
Georg Brandl60203b42010-10-06 10:11:56 +0000226.. c:function:: void _PyImport_Init()
Georg Brandl54a3faa2008-01-20 09:30:57 +0000227
228 Initialize the import mechanism. For internal use only.
229
230
Georg Brandl60203b42010-10-06 10:11:56 +0000231.. c:function:: void PyImport_Cleanup()
Georg Brandl54a3faa2008-01-20 09:30:57 +0000232
233 Empty the module table. For internal use only.
234
235
Georg Brandl60203b42010-10-06 10:11:56 +0000236.. c:function:: void _PyImport_Fini()
Georg Brandl54a3faa2008-01-20 09:30:57 +0000237
238 Finalize the import mechanism. For internal use only.
239
240
Victor Stinner53dc7352011-03-20 01:50:21 +0100241.. c:function:: int PyImport_ImportFrozenModuleObject(PyObject *name)
Georg Brandl54a3faa2008-01-20 09:30:57 +0000242
243 Load a frozen module named *name*. Return ``1`` for success, ``0`` if the
244 module is not found, and ``-1`` with an exception set if the initialization
245 failed. To access the imported module on a successful load, use
Georg Brandl60203b42010-10-06 10:11:56 +0000246 :c:func:`PyImport_ImportModule`. (Note the misnomer --- this function would
Georg Brandl54a3faa2008-01-20 09:30:57 +0000247 reload the module if it was already imported.)
248
Victor Stinner53dc7352011-03-20 01:50:21 +0100249 .. versionadded:: 3.3
250
Brett Cannon18fc4e72014-04-04 10:01:46 -0400251 .. versionchanged:: 3.4
252 The ``__file__`` attribute is no longer set on the module.
253
Victor Stinner53dc7352011-03-20 01:50:21 +0100254
Serhiy Storchakac6792272013-10-19 21:03:34 +0300255.. c:function:: int PyImport_ImportFrozenModule(const char *name)
Victor Stinner53dc7352011-03-20 01:50:21 +0100256
Éric Araujo16e6f4c2011-03-20 18:08:19 +0100257 Similar to :c:func:`PyImport_ImportFrozenModuleObject`, but the name is a
Victor Stinner53dc7352011-03-20 01:50:21 +0100258 UTF-8 encoded string instead of a Unicode object.
259
Georg Brandl54a3faa2008-01-20 09:30:57 +0000260
Georg Brandl60203b42010-10-06 10:11:56 +0000261.. c:type:: struct _frozen
Georg Brandl54a3faa2008-01-20 09:30:57 +0000262
263 .. index:: single: freeze utility
264
265 This is the structure type definition for frozen module descriptors, as
266 generated by the :program:`freeze` utility (see :file:`Tools/freeze/` in the
267 Python source distribution). Its definition, found in :file:`Include/import.h`,
268 is::
269
270 struct _frozen {
Serhiy Storchaka84b8e922017-03-30 10:01:03 +0300271 const char *name;
272 const unsigned char *code;
Georg Brandl54a3faa2008-01-20 09:30:57 +0000273 int size;
274 };
275
276
Martin Panterf47a4002016-05-15 00:13:04 +0000277.. c:var:: const struct _frozen* PyImport_FrozenModules
Georg Brandl54a3faa2008-01-20 09:30:57 +0000278
Georg Brandl60203b42010-10-06 10:11:56 +0000279 This pointer is initialized to point to an array of :c:type:`struct _frozen`
Georg Brandl54a3faa2008-01-20 09:30:57 +0000280 records, terminated by one whose members are all *NULL* or zero. When a frozen
281 module is imported, it is searched in this table. Third-party code could play
282 tricks with this to provide a dynamically created collection of frozen modules.
283
284
Georg Brandl60203b42010-10-06 10:11:56 +0000285.. c:function:: int PyImport_AppendInittab(const char *name, PyObject* (*initfunc)(void))
Georg Brandl54a3faa2008-01-20 09:30:57 +0000286
287 Add a single module to the existing table of built-in modules. This is a
Georg Brandl60203b42010-10-06 10:11:56 +0000288 convenience wrapper around :c:func:`PyImport_ExtendInittab`, returning ``-1`` if
Georg Brandl54a3faa2008-01-20 09:30:57 +0000289 the table could not be extended. The new module can be imported by the name
290 *name*, and uses the function *initfunc* as the initialization function called
291 on the first attempted import. This should be called before
Georg Brandl60203b42010-10-06 10:11:56 +0000292 :c:func:`Py_Initialize`.
Georg Brandl54a3faa2008-01-20 09:30:57 +0000293
294
Georg Brandl60203b42010-10-06 10:11:56 +0000295.. c:type:: struct _inittab
Georg Brandl54a3faa2008-01-20 09:30:57 +0000296
297 Structure describing a single entry in the list of built-in modules. Each of
298 these structures gives the name and initialization function for a module built
Victor Stinnerdb536af2011-03-07 18:34:59 +0100299 into the interpreter. The name is an ASCII encoded string. Programs which
300 embed Python may use an array of these structures in conjunction with
301 :c:func:`PyImport_ExtendInittab` to provide additional built-in modules.
302 The structure is defined in :file:`Include/import.h` as::
Georg Brandl54a3faa2008-01-20 09:30:57 +0000303
304 struct _inittab {
Serhiy Storchaka84b8e922017-03-30 10:01:03 +0300305 const char *name; /* ASCII encoded string */
Martin v. Löwis1a214512008-06-11 05:26:20 +0000306 PyObject* (*initfunc)(void);
Georg Brandl54a3faa2008-01-20 09:30:57 +0000307 };
308
309
Georg Brandl60203b42010-10-06 10:11:56 +0000310.. c:function:: int PyImport_ExtendInittab(struct _inittab *newtab)
Georg Brandl54a3faa2008-01-20 09:30:57 +0000311
312 Add a collection of modules to the table of built-in modules. The *newtab*
313 array must end with a sentinel entry which contains *NULL* for the :attr:`name`
314 field; failure to provide the sentinel value can result in a memory fault.
315 Returns ``0`` on success or ``-1`` if insufficient memory could be allocated to
316 extend the internal table. In the event of failure, no modules are added to the
Georg Brandl60203b42010-10-06 10:11:56 +0000317 internal table. This should be called before :c:func:`Py_Initialize`.