blob: cf48363e105bff66576b4918f1ccde9a23bae977 [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
Georg Brandl60203b42010-10-06 10:11:56 +000033 This version of :c:func:`PyImport_ImportModule` does not block. It's intended
Georg Brandl54a3faa2008-01-20 09:30:57 +000034 to be used in C functions that import other modules to execute a function.
35 The import may block if another thread holds the import lock. The function
Georg Brandl60203b42010-10-06 10:11:56 +000036 :c:func:`PyImport_ImportModuleNoBlock` never blocks. It first tries to fetch
37 the module from sys.modules and falls back to :c:func:`PyImport_ImportModule`
Georg Brandl54a3faa2008-01-20 09:30:57 +000038 unless the lock is held, in which case the function will raise an
39 :exc:`ImportError`.
40
41
Georg Brandl60203b42010-10-06 10:11:56 +000042.. c:function:: PyObject* PyImport_ImportModuleEx(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
47 function :func:`__import__`, as the standard :func:`__import__` function calls
48 this function directly.
49
Georg Brandle6bcc912008-05-12 18:05:20 +000050 The return value is a new reference to the imported module or top-level
51 package, or *NULL* with an exception set on failure. Like for
52 :func:`__import__`, the return value when a submodule of a package was
53 requested is normally the top-level package, unless a non-empty *fromlist*
54 was given.
Georg Brandl54a3faa2008-01-20 09:30:57 +000055
56 Failing imports remove incomplete module objects, like with
Georg Brandl60203b42010-10-06 10:11:56 +000057 :c:func:`PyImport_ImportModule`.
Georg Brandl54a3faa2008-01-20 09:30:57 +000058
59
Georg Brandl60203b42010-10-06 10:11:56 +000060.. c:function:: PyObject* PyImport_ImportModuleLevel(char *name, PyObject *globals, PyObject *locals, PyObject *fromlist, int level)
Georg Brandl54a3faa2008-01-20 09:30:57 +000061
62 Import a module. This is best described by referring to the built-in Python
63 function :func:`__import__`, as the standard :func:`__import__` function calls
64 this function directly.
65
66 The return value is a new reference to the imported module or top-level package,
67 or *NULL* with an exception set on failure. Like for :func:`__import__`,
68 the return value when a submodule of a package was requested is normally the
69 top-level package, unless a non-empty *fromlist* was given.
70
71
Georg Brandl60203b42010-10-06 10:11:56 +000072.. c:function:: PyObject* PyImport_Import(PyObject *name)
Georg Brandl54a3faa2008-01-20 09:30:57 +000073
74 This is a higher-level interface that calls the current "import hook
75 function" (with an explicit *level* of 0, meaning absolute import). It
76 invokes the :func:`__import__` function from the ``__builtins__`` of the
77 current globals. This means that the import is done using whatever import
78 hooks are installed in the current environment.
79
Alexandre Vassalotti711ed4a2009-07-17 10:42:05 +000080 This function always uses absolute imports.
81
Georg Brandl54a3faa2008-01-20 09:30:57 +000082
Georg Brandl60203b42010-10-06 10:11:56 +000083.. c:function:: PyObject* PyImport_ReloadModule(PyObject *m)
Georg Brandl54a3faa2008-01-20 09:30:57 +000084
85 Reload a module. Return a new reference to the reloaded module, or *NULL* with
86 an exception set on failure (the module still exists in this case).
87
88
Georg Brandl60203b42010-10-06 10:11:56 +000089.. c:function:: PyObject* PyImport_AddModule(const char *name)
Georg Brandl54a3faa2008-01-20 09:30:57 +000090
91 Return the module object corresponding to a module name. The *name* argument
92 may be of the form ``package.module``. First check the modules dictionary if
93 there's one there, and if not, create a new one and insert it in the modules
94 dictionary. Return *NULL* with an exception set on failure.
95
96 .. note::
97
98 This function does not load or import the module; if the module wasn't already
Georg Brandl60203b42010-10-06 10:11:56 +000099 loaded, you will get an empty module object. Use :c:func:`PyImport_ImportModule`
Georg Brandl54a3faa2008-01-20 09:30:57 +0000100 or one of its variants to import a module. Package structures implied by a
101 dotted name for *name* are not created if not already present.
102
103
Georg Brandl60203b42010-10-06 10:11:56 +0000104.. c:function:: PyObject* PyImport_ExecCodeModule(char *name, PyObject *co)
Georg Brandl54a3faa2008-01-20 09:30:57 +0000105
106 .. index:: builtin: compile
107
108 Given a module name (possibly of the form ``package.module``) and a code object
109 read from a Python bytecode file or obtained from the built-in function
110 :func:`compile`, load the module. Return a new reference to the module object,
Georg Brandle6bcc912008-05-12 18:05:20 +0000111 or *NULL* with an exception set if an error occurred. *name*
112 is removed from :attr:`sys.modules` in error cases, even if *name* was already
Georg Brandl60203b42010-10-06 10:11:56 +0000113 in :attr:`sys.modules` on entry to :c:func:`PyImport_ExecCodeModule`. Leaving
Georg Brandl54a3faa2008-01-20 09:30:57 +0000114 incompletely initialized modules in :attr:`sys.modules` is dangerous, as imports of
115 such modules have no way to know that the module object is an unknown (and
116 probably damaged with respect to the module author's intents) state.
117
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000118 The module's :attr:`__file__` attribute will be set to the code object's
Georg Brandl60203b42010-10-06 10:11:56 +0000119 :c:member:`co_filename`.
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000120
Georg Brandl54a3faa2008-01-20 09:30:57 +0000121 This function will reload the module if it was already imported. See
Georg Brandl60203b42010-10-06 10:11:56 +0000122 :c:func:`PyImport_ReloadModule` for the intended way to reload a module.
Georg Brandl54a3faa2008-01-20 09:30:57 +0000123
124 If *name* points to a dotted name of the form ``package.module``, any package
125 structures not already created will still not be created.
126
Georg Brandl60203b42010-10-06 10:11:56 +0000127 See also :c:func:`PyImport_ExecCodeModuleEx` and
128 :c:func:`PyImport_ExecCodeModuleWithPathnames`.
Barry Warsaw28a691b2010-04-17 00:19:56 +0000129
Georg Brandl54a3faa2008-01-20 09:30:57 +0000130
Georg Brandl60203b42010-10-06 10:11:56 +0000131.. c:function:: PyObject* PyImport_ExecCodeModuleEx(char *name, PyObject *co, char *pathname)
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000132
Georg Brandl60203b42010-10-06 10:11:56 +0000133 Like :c:func:`PyImport_ExecCodeModule`, but the :attr:`__file__` attribute of
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000134 the module object is set to *pathname* if it is non-``NULL``.
135
Georg Brandl60203b42010-10-06 10:11:56 +0000136 See also :c:func:`PyImport_ExecCodeModuleWithPathnames`.
Barry Warsaw28a691b2010-04-17 00:19:56 +0000137
138
Georg Brandl60203b42010-10-06 10:11:56 +0000139.. c:function:: PyObject* PyImport_ExecCodeModuleWithPathnames(char *name, PyObject *co, char *pathname, char *cpathname)
Barry Warsaw28a691b2010-04-17 00:19:56 +0000140
Georg Brandl60203b42010-10-06 10:11:56 +0000141 Like :c:func:`PyImport_ExecCodeModuleEx`, but the :attr:`__cached__`
Barry Warsaw28a691b2010-04-17 00:19:56 +0000142 attribute of the module object is set to *cpathname* if it is
143 non-``NULL``. Of the three functions, this is the preferred one to use.
144
Éric Araujo930df312010-12-16 06:28:48 +0000145 .. versionadded:: 3.2
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000146
Georg Brandl60203b42010-10-06 10:11:56 +0000147.. c:function:: long PyImport_GetMagicNumber()
Georg Brandl54a3faa2008-01-20 09:30:57 +0000148
149 Return the magic number for Python bytecode files (a.k.a. :file:`.pyc` and
150 :file:`.pyo` files). The magic number should be present in the first four bytes
151 of the bytecode file, in little-endian byte order.
152
153
Georg Brandl60203b42010-10-06 10:11:56 +0000154.. c:function:: const char * PyImport_GetMagicTag()
Barry Warsaw28a691b2010-04-17 00:19:56 +0000155
156 Return the magic tag string for :pep:`3147` format Python bytecode file
157 names.
158
Éric Araujo930df312010-12-16 06:28:48 +0000159 .. versionadded:: 3.2
160
Georg Brandl60203b42010-10-06 10:11:56 +0000161.. c:function:: PyObject* PyImport_GetModuleDict()
Georg Brandl54a3faa2008-01-20 09:30:57 +0000162
163 Return the dictionary used for the module administration (a.k.a.
164 ``sys.modules``). Note that this is a per-interpreter variable.
165
166
Georg Brandl60203b42010-10-06 10:11:56 +0000167.. c:function:: PyObject* PyImport_GetImporter(PyObject *path)
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000168
169 Return an importer object for a :data:`sys.path`/:attr:`pkg.__path__` item
170 *path*, possibly by fetching it from the :data:`sys.path_importer_cache`
171 dict. If it wasn't yet cached, traverse :data:`sys.path_hooks` until a hook
172 is found that can handle the path item. Return ``None`` if no hook could;
Georg Brandl22b34312009-07-26 14:54:51 +0000173 this tells our caller it should fall back to the built-in import mechanism.
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000174 Cache the result in :data:`sys.path_importer_cache`. Return a new reference
175 to the importer object.
176
Christian Heimes4fbc72b2008-03-22 00:47:35 +0000177
Georg Brandl60203b42010-10-06 10:11:56 +0000178.. c:function:: void _PyImport_Init()
Georg Brandl54a3faa2008-01-20 09:30:57 +0000179
180 Initialize the import mechanism. For internal use only.
181
182
Georg Brandl60203b42010-10-06 10:11:56 +0000183.. c:function:: void PyImport_Cleanup()
Georg Brandl54a3faa2008-01-20 09:30:57 +0000184
185 Empty the module table. For internal use only.
186
187
Georg Brandl60203b42010-10-06 10:11:56 +0000188.. c:function:: void _PyImport_Fini()
Georg Brandl54a3faa2008-01-20 09:30:57 +0000189
190 Finalize the import mechanism. For internal use only.
191
192
Georg Brandl60203b42010-10-06 10:11:56 +0000193.. c:function:: PyObject* _PyImport_FindExtension(char *, char *)
Georg Brandl54a3faa2008-01-20 09:30:57 +0000194
195 For internal use only.
196
197
Georg Brandl60203b42010-10-06 10:11:56 +0000198.. c:function:: PyObject* _PyImport_FixupExtension(char *, char *)
Georg Brandl54a3faa2008-01-20 09:30:57 +0000199
200 For internal use only.
201
202
Georg Brandl60203b42010-10-06 10:11:56 +0000203.. c:function:: int PyImport_ImportFrozenModule(char *name)
Georg Brandl54a3faa2008-01-20 09:30:57 +0000204
205 Load a frozen module named *name*. Return ``1`` for success, ``0`` if the
206 module is not found, and ``-1`` with an exception set if the initialization
207 failed. To access the imported module on a successful load, use
Georg Brandl60203b42010-10-06 10:11:56 +0000208 :c:func:`PyImport_ImportModule`. (Note the misnomer --- this function would
Georg Brandl54a3faa2008-01-20 09:30:57 +0000209 reload the module if it was already imported.)
210
211
Georg Brandl60203b42010-10-06 10:11:56 +0000212.. c:type:: struct _frozen
Georg Brandl54a3faa2008-01-20 09:30:57 +0000213
214 .. index:: single: freeze utility
215
216 This is the structure type definition for frozen module descriptors, as
217 generated by the :program:`freeze` utility (see :file:`Tools/freeze/` in the
218 Python source distribution). Its definition, found in :file:`Include/import.h`,
219 is::
220
221 struct _frozen {
222 char *name;
223 unsigned char *code;
224 int size;
225 };
226
227
Georg Brandl60203b42010-10-06 10:11:56 +0000228.. c:var:: struct _frozen* PyImport_FrozenModules
Georg Brandl54a3faa2008-01-20 09:30:57 +0000229
Georg Brandl60203b42010-10-06 10:11:56 +0000230 This pointer is initialized to point to an array of :c:type:`struct _frozen`
Georg Brandl54a3faa2008-01-20 09:30:57 +0000231 records, terminated by one whose members are all *NULL* or zero. When a frozen
232 module is imported, it is searched in this table. Third-party code could play
233 tricks with this to provide a dynamically created collection of frozen modules.
234
235
Georg Brandl60203b42010-10-06 10:11:56 +0000236.. c:function:: int PyImport_AppendInittab(const char *name, PyObject* (*initfunc)(void))
Georg Brandl54a3faa2008-01-20 09:30:57 +0000237
238 Add a single module to the existing table of built-in modules. This is a
Georg Brandl60203b42010-10-06 10:11:56 +0000239 convenience wrapper around :c:func:`PyImport_ExtendInittab`, returning ``-1`` if
Georg Brandl54a3faa2008-01-20 09:30:57 +0000240 the table could not be extended. The new module can be imported by the name
241 *name*, and uses the function *initfunc* as the initialization function called
242 on the first attempted import. This should be called before
Georg Brandl60203b42010-10-06 10:11:56 +0000243 :c:func:`Py_Initialize`.
Georg Brandl54a3faa2008-01-20 09:30:57 +0000244
245
Georg Brandl60203b42010-10-06 10:11:56 +0000246.. c:type:: struct _inittab
Georg Brandl54a3faa2008-01-20 09:30:57 +0000247
248 Structure describing a single entry in the list of built-in modules. Each of
249 these structures gives the name and initialization function for a module built
250 into the interpreter. Programs which embed Python may use an array of these
Georg Brandl60203b42010-10-06 10:11:56 +0000251 structures in conjunction with :c:func:`PyImport_ExtendInittab` to provide
Georg Brandl54a3faa2008-01-20 09:30:57 +0000252 additional built-in modules. The structure is defined in
253 :file:`Include/import.h` as::
254
255 struct _inittab {
256 char *name;
Martin v. Löwis1a214512008-06-11 05:26:20 +0000257 PyObject* (*initfunc)(void);
Georg Brandl54a3faa2008-01-20 09:30:57 +0000258 };
259
260
Georg Brandl60203b42010-10-06 10:11:56 +0000261.. c:function:: int PyImport_ExtendInittab(struct _inittab *newtab)
Georg Brandl54a3faa2008-01-20 09:30:57 +0000262
263 Add a collection of modules to the table of built-in modules. The *newtab*
264 array must end with a sentinel entry which contains *NULL* for the :attr:`name`
265 field; failure to provide the sentinel value can result in a memory fault.
266 Returns ``0`` on success or ``-1`` if insufficient memory could be allocated to
267 extend the internal table. In the event of failure, no modules are added to the
Georg Brandl60203b42010-10-06 10:11:56 +0000268 internal table. This should be called before :c:func:`Py_Initialize`.