blob: 6dd13cc7d4f9854c65bf00a36e5f1af824ff3f43 [file] [log] [blame]
Brett Cannonafccd632009-01-20 02:21:27 +00001:mod:`importlib` -- An implementation of :keyword:`import`
2==========================================================
3
4.. module:: importlib
5 :synopsis: An implementation of the import machinery.
6
7.. moduleauthor:: Brett Cannon <brett@python.org>
8.. sectionauthor:: Brett Cannon <brett@python.org>
9
10.. versionadded:: 3.1
11
12
13Introduction
14------------
15
16The purpose of the :mod:`importlib` package is two-fold. One is to provide an
17implementation of the :keyword:`import` statement (and thus, by extension, the
18:func:`__import__` function) in Python source code. This provides an
Tarek Ziadé434caaa2009-05-14 12:48:09 +000019implementation of :keyword:`import` which is portable to any Python
Brett Cannonafccd632009-01-20 02:21:27 +000020interpreter. This also provides a reference implementation which is easier to
Brett Cannonf23e3742010-06-27 23:57:46 +000021comprehend than one implemented in a programming language other than Python.
Brett Cannonafccd632009-01-20 02:21:27 +000022
Brett Cannonf23e3742010-06-27 23:57:46 +000023Two, the components to implement :keyword:`import` are exposed in this
Brett Cannonafccd632009-01-20 02:21:27 +000024package, making it easier for users to create their own custom objects (known
Brett Cannondebb98d2009-02-16 04:18:01 +000025generically as an :term:`importer`) to participate in the import process.
Brett Cannonf23e3742010-06-27 23:57:46 +000026Details on custom importers can be found in :pep:`302`.
Brett Cannonafccd632009-01-20 02:21:27 +000027
28.. seealso::
29
30 :ref:`import`
31 The language reference for the :keyword:`import` statement.
32
33 `Packages specification <http://www.python.org/doc/essays/packages.html>`__
34 Original specification of packages. Some semantics have changed since
Georg Brandl375aec22011-01-15 17:03:02 +000035 the writing of this document (e.g. redirecting based on ``None``
Brett Cannonafccd632009-01-20 02:21:27 +000036 in :data:`sys.modules`).
37
38 The :func:`.__import__` function
Brett Cannon0e13c942010-06-29 18:26:11 +000039 The :keyword:`import` statement is syntactic sugar for this function.
Brett Cannonafccd632009-01-20 02:21:27 +000040
41 :pep:`235`
42 Import on Case-Insensitive Platforms
43
44 :pep:`263`
45 Defining Python Source Code Encodings
46
47 :pep:`302`
Brett Cannonf23e3742010-06-27 23:57:46 +000048 New Import Hooks
Brett Cannonafccd632009-01-20 02:21:27 +000049
50 :pep:`328`
51 Imports: Multi-Line and Absolute/Relative
52
53 :pep:`366`
54 Main module explicit relative imports
55
Brett Cannon8917d5e2010-01-13 19:21:00 +000056 :pep:`3120`
Brett Cannonafccd632009-01-20 02:21:27 +000057 Using UTF-8 as the Default Source Encoding
58
Brett Cannon30b7a902010-06-27 21:49:22 +000059 :pep:`3147`
60 PYC Repository Directories
61
Brett Cannonafccd632009-01-20 02:21:27 +000062
63Functions
64---------
65
Brett Cannon78246b62009-01-25 04:56:30 +000066.. function:: __import__(name, globals={}, locals={}, fromlist=list(), level=0)
Brett Cannonafccd632009-01-20 02:21:27 +000067
Brett Cannonf23e3742010-06-27 23:57:46 +000068 An implementation of the built-in :func:`__import__` function.
Brett Cannonafccd632009-01-20 02:21:27 +000069
70.. function:: import_module(name, package=None)
71
Brett Cannon33418c82009-01-22 18:37:20 +000072 Import a module. The *name* argument specifies what module to
Brett Cannonafccd632009-01-20 02:21:27 +000073 import in absolute or relative terms
74 (e.g. either ``pkg.mod`` or ``..mod``). If the name is
Guido van Rossum09613542009-03-30 20:34:57 +000075 specified in relative terms, then the *package* argument must be set to
76 the name of the package which is to act as the anchor for resolving the
Brett Cannonafccd632009-01-20 02:21:27 +000077 package name (e.g. ``import_module('..mod', 'pkg.subpkg')`` will import
Brett Cannon2c318a12009-02-07 01:15:27 +000078 ``pkg.mod``).
Brett Cannon78246b62009-01-25 04:56:30 +000079
Brett Cannon2c318a12009-02-07 01:15:27 +000080 The :func:`import_module` function acts as a simplifying wrapper around
Brett Cannon9f4cb1c2009-04-01 23:26:47 +000081 :func:`importlib.__import__`. This means all semantics of the function are
82 derived from :func:`importlib.__import__`, including requiring the package
83 from which an import is occurring to have been previously imported
84 (i.e., *package* must already be imported). The most important difference
85 is that :func:`import_module` returns the most nested package or module
86 that was imported (e.g. ``pkg.mod``), while :func:`__import__` returns the
Guido van Rossum09613542009-03-30 20:34:57 +000087 top-level package or module (e.g. ``pkg``).
88
Brett Cannon78246b62009-01-25 04:56:30 +000089
Brett Cannon2a922ed2009-03-09 03:35:50 +000090:mod:`importlib.abc` -- Abstract base classes related to import
91---------------------------------------------------------------
92
93.. module:: importlib.abc
94 :synopsis: Abstract base classes related to import
95
96The :mod:`importlib.abc` module contains all of the core abstract base classes
97used by :keyword:`import`. Some subclasses of the core abstract base classes
98are also provided to help in implementing the core ABCs.
99
100
101.. class:: Finder
102
103 An abstract base class representing a :term:`finder`.
Guido van Rossum09613542009-03-30 20:34:57 +0000104 See :pep:`302` for the exact definition for a finder.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000105
Brett Cannon9c751b72009-03-09 16:28:16 +0000106 .. method:: find_module(fullname, path=None)
Brett Cannon2a922ed2009-03-09 03:35:50 +0000107
108 An abstract method for finding a :term:`loader` for the specified
109 module. If the :term:`finder` is found on :data:`sys.meta_path` and the
Guido van Rossum09613542009-03-30 20:34:57 +0000110 module to be searched for is a subpackage or module then *path* will
111 be the value of :attr:`__path__` from the parent package. If a loader
Georg Brandl375aec22011-01-15 17:03:02 +0000112 cannot be found, ``None`` is returned.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000113
Brett Cannon2a922ed2009-03-09 03:35:50 +0000114
115.. class:: Loader
116
117 An abstract base class for a :term:`loader`.
Guido van Rossum09613542009-03-30 20:34:57 +0000118 See :pep:`302` for the exact definition for a loader.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000119
Brett Cannon9c751b72009-03-09 16:28:16 +0000120 .. method:: load_module(fullname)
Brett Cannon2a922ed2009-03-09 03:35:50 +0000121
122 An abstract method for loading a module. If the module cannot be
123 loaded, :exc:`ImportError` is raised, otherwise the loaded module is
124 returned.
125
Guido van Rossum09613542009-03-30 20:34:57 +0000126 If the requested module already exists in :data:`sys.modules`, that
Brett Cannon2a922ed2009-03-09 03:35:50 +0000127 module should be used and reloaded.
Guido van Rossum09613542009-03-30 20:34:57 +0000128 Otherwise the loader should create a new module and insert it into
129 :data:`sys.modules` before any loading begins, to prevent recursion
130 from the import. If the loader inserted a module and the load fails, it
Brett Cannon2a922ed2009-03-09 03:35:50 +0000131 must be removed by the loader from :data:`sys.modules`; modules already
132 in :data:`sys.modules` before the loader began execution should be left
133 alone. The :func:`importlib.util.module_for_loader` decorator handles
134 all of these details.
135
Guido van Rossum09613542009-03-30 20:34:57 +0000136 The loader should set several attributes on the module.
137 (Note that some of these attributes can change when a module is
138 reloaded.)
Brett Cannon2a922ed2009-03-09 03:35:50 +0000139
140 - :attr:`__name__`
141 The name of the module.
142
143 - :attr:`__file__`
144 The path to where the module data is stored (not set for built-in
145 modules).
146
147 - :attr:`__path__`
Guido van Rossum09613542009-03-30 20:34:57 +0000148 A list of strings specifying the search path within a
Brett Cannon2a922ed2009-03-09 03:35:50 +0000149 package. This attribute is not set on modules.
150
151 - :attr:`__package__`
152 The parent package for the module/package. If the module is
153 top-level then it has a value of the empty string. The
154 :func:`importlib.util.set_package` decorator can handle the details
155 for :attr:`__package__`.
156
157 - :attr:`__loader__`
Guido van Rossum09613542009-03-30 20:34:57 +0000158 The loader used to load the module.
159 (This is not set by the built-in import machinery,
160 but it should be set whenever a :term:`loader` is used.)
Brett Cannon2a922ed2009-03-09 03:35:50 +0000161
162
163.. class:: ResourceLoader
164
165 An abstract base class for a :term:`loader` which implements the optional
166 :pep:`302` protocol for loading arbitrary resources from the storage
167 back-end.
168
Brett Cannon9c751b72009-03-09 16:28:16 +0000169 .. method:: get_data(path)
Brett Cannon2a922ed2009-03-09 03:35:50 +0000170
171 An abstract method to return the bytes for the data located at *path*.
Guido van Rossum09613542009-03-30 20:34:57 +0000172 Loaders that have a file-like storage back-end
Brett Cannon16248a42009-04-01 20:47:14 +0000173 that allows storing arbitrary data
Guido van Rossum09613542009-03-30 20:34:57 +0000174 can implement this abstract method to give direct access
Brett Cannon2a922ed2009-03-09 03:35:50 +0000175 to the data stored. :exc:`IOError` is to be raised if the *path* cannot
176 be found. The *path* is expected to be constructed using a module's
Brett Cannon16248a42009-04-01 20:47:14 +0000177 :attr:`__file__` attribute or an item from a package's :attr:`__path__`.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000178
179
180.. class:: InspectLoader
181
182 An abstract base class for a :term:`loader` which implements the optional
Guido van Rossum09613542009-03-30 20:34:57 +0000183 :pep:`302` protocol for loaders that inspect modules.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000184
Brett Cannona113ac52009-03-15 01:41:33 +0000185 .. method:: get_code(fullname)
Brett Cannon2a922ed2009-03-09 03:35:50 +0000186
Brett Cannona113ac52009-03-15 01:41:33 +0000187 An abstract method to return the :class:`code` object for a module.
Georg Brandl375aec22011-01-15 17:03:02 +0000188 ``None`` is returned if the module does not have a code object
Brett Cannona113ac52009-03-15 01:41:33 +0000189 (e.g. built-in module). :exc:`ImportError` is raised if loader cannot
190 find the requested module.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000191
Brett Cannon9c751b72009-03-09 16:28:16 +0000192 .. method:: get_source(fullname)
Brett Cannon2a922ed2009-03-09 03:35:50 +0000193
194 An abstract method to return the source of a module. It is returned as
Georg Brandl375aec22011-01-15 17:03:02 +0000195 a text string with universal newlines. Returns ``None`` if no
Brett Cannon2a922ed2009-03-09 03:35:50 +0000196 source is available (e.g. a built-in module). Raises :exc:`ImportError`
197 if the loader cannot find the module specified.
198
Brett Cannona113ac52009-03-15 01:41:33 +0000199 .. method:: is_package(fullname)
Brett Cannon2a922ed2009-03-09 03:35:50 +0000200
Brett Cannona113ac52009-03-15 01:41:33 +0000201 An abstract method to return a true value if the module is a package, a
202 false value otherwise. :exc:`ImportError` is raised if the
203 :term:`loader` cannot find the module.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000204
205
Brett Cannon69194272009-07-20 04:23:48 +0000206.. class:: ExecutionLoader
207
208 An abstract base class which inherits from :class:`InspectLoader` that,
Brett Cannon23460292009-07-20 22:59:00 +0000209 when implemented, helps a module to be executed as a script. The ABC
Brett Cannon69194272009-07-20 04:23:48 +0000210 represents an optional :pep:`302` protocol.
211
212 .. method:: get_filename(fullname)
213
Brett Cannonf23e3742010-06-27 23:57:46 +0000214 An abstract method that is to return the value of :attr:`__file__` for
Brett Cannon69194272009-07-20 04:23:48 +0000215 the specified module. If no path is available, :exc:`ImportError` is
216 raised.
217
Brett Cannonf23e3742010-06-27 23:57:46 +0000218 If source code is available, then the method should return the path to
219 the source file, regardless of whether a bytecode was used to load the
220 module.
221
222
223.. class:: SourceLoader
224
225 An abstract base class for implementing source (and optionally bytecode)
226 file loading. The class inherits from both :class:`ResourceLoader` and
227 :class:`ExecutionLoader`, requiring the implementation of:
228
229 * :meth:`ResourceLoader.get_data`
230 * :meth:`ExecutionLoader.get_filename`
Brett Cannon6dfbff32010-07-21 09:48:31 +0000231 Should only return the path to the source file; sourceless
Brett Cannonf23e3742010-06-27 23:57:46 +0000232 loading is not supported.
233
234 The abstract methods defined by this class are to add optional bytecode
235 file support. Not implementing these optional methods causes the loader to
236 only work with source code. Implementing the methods allows the loader to
237 work with source *and* bytecode files; it does not allow for *sourceless*
238 loading where only bytecode is provided. Bytecode files are an
239 optimization to speed up loading by removing the parsing step of Python's
240 compiler, and so no bytecode-specific API is exposed.
241
Antoine Pitrou5136ac02012-01-13 18:52:16 +0100242 .. method:: path_stats(self, path)
243
244 Optional abstract method which returns a :class:`dict` containing
245 metadata about the specifed path. Supported dictionary keys are:
246
247 - ``'mtime'`` (mandatory): an integer or floating-point number
248 representing the modification time of the source code;
249 - ``'size'`` (optional): the size in bytes of the source code.
250
251 Any other keys in the dictionary are ignored, to allow for future
252 extensions.
253
254 .. versionadded:: 3.3
255
Brett Cannonf23e3742010-06-27 23:57:46 +0000256 .. method:: path_mtime(self, path)
257
258 Optional abstract method which returns the modification time for the
259 specified path.
260
Antoine Pitrou5136ac02012-01-13 18:52:16 +0100261 .. deprecated:: 3.3
262 This method is deprecated in favour of :meth:`path_stats`. You don't
263 have to implement it, but it is still available for compatibility
264 purposes.
265
Brett Cannonf23e3742010-06-27 23:57:46 +0000266 .. method:: set_data(self, path, data)
267
268 Optional abstract method which writes the specified bytes to a file
Brett Cannon61b14252010-07-03 21:48:25 +0000269 path. Any intermediate directories which do not exist are to be created
270 automatically.
271
272 When writing to the path fails because the path is read-only
273 (:attr:`errno.EACCES`), do not propagate the exception.
Brett Cannonf23e3742010-06-27 23:57:46 +0000274
275 .. method:: get_code(self, fullname)
276
277 Concrete implementation of :meth:`InspectLoader.get_code`.
278
279 .. method:: load_module(self, fullname)
280
281 Concrete implementation of :meth:`Loader.load_module`.
282
283 .. method:: get_source(self, fullname)
284
285 Concrete implementation of :meth:`InspectLoader.get_source`.
286
287 .. method:: is_package(self, fullname)
288
289 Concrete implementation of :meth:`InspectLoader.is_package`. A module
290 is determined to be a package if its file path is a file named
291 ``__init__`` when the file extension is removed.
292
Brett Cannon69194272009-07-20 04:23:48 +0000293
Brett Cannon2a922ed2009-03-09 03:35:50 +0000294.. class:: PyLoader
295
Brett Cannon69194272009-07-20 04:23:48 +0000296 An abstract base class inheriting from
Brett Cannonf23e3742010-06-27 23:57:46 +0000297 :class:`ExecutionLoader` and
298 :class:`ResourceLoader` designed to ease the loading of
Brett Cannon2a922ed2009-03-09 03:35:50 +0000299 Python source modules (bytecode is not handled; see
Brett Cannonf23e3742010-06-27 23:57:46 +0000300 :class:`SourceLoader` for a source/bytecode ABC). A subclass
Brett Cannon2a922ed2009-03-09 03:35:50 +0000301 implementing this ABC will only need to worry about exposing how the source
302 code is stored; all other details for loading Python source code will be
303 handled by the concrete implementations of key methods.
304
Brett Cannonf23e3742010-06-27 23:57:46 +0000305 .. deprecated:: 3.2
306 This class has been deprecated in favor of :class:`SourceLoader` and is
307 slated for removal in Python 3.4. See below for how to create a
Georg Brandl6faee4e2010-09-21 14:48:28 +0000308 subclass that is compatible with Python 3.1 onwards.
Brett Cannonf23e3742010-06-27 23:57:46 +0000309
310 If compatibility with Python 3.1 is required, then use the following idiom
311 to implement a subclass that will work with Python 3.1 onwards (make sure
312 to implement :meth:`ExecutionLoader.get_filename`)::
313
314 try:
315 from importlib.abc import SourceLoader
316 except ImportError:
317 from importlib.abc import PyLoader as SourceLoader
318
319
320 class CustomLoader(SourceLoader):
321 def get_filename(self, fullname):
322 """Return the path to the source file."""
323 # Implement ...
324
325 def source_path(self, fullname):
326 """Implement source_path in terms of get_filename."""
327 try:
328 return self.get_filename(fullname)
329 except ImportError:
330 return None
331
332 def is_package(self, fullname):
333 """Implement is_package by looking for an __init__ file
334 name as returned by get_filename."""
335 filename = os.path.basename(self.get_filename(fullname))
336 return os.path.splitext(filename)[0] == '__init__'
337
338
Brett Cannon9c751b72009-03-09 16:28:16 +0000339 .. method:: source_path(fullname)
Brett Cannon2a922ed2009-03-09 03:35:50 +0000340
341 An abstract method that returns the path to the source code for a
Georg Brandl375aec22011-01-15 17:03:02 +0000342 module. Should return ``None`` if there is no source code.
Brett Cannon3e761a92009-12-10 00:24:21 +0000343 Raises :exc:`ImportError` if the loader knows it cannot handle the
344 module.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000345
Brett Cannon69194272009-07-20 04:23:48 +0000346 .. method:: get_filename(fullname)
347
348 A concrete implementation of
349 :meth:`importlib.abc.ExecutionLoader.get_filename` that
350 relies on :meth:`source_path`. If :meth:`source_path` returns
Georg Brandl375aec22011-01-15 17:03:02 +0000351 ``None``, then :exc:`ImportError` is raised.
Brett Cannon69194272009-07-20 04:23:48 +0000352
Brett Cannon9c751b72009-03-09 16:28:16 +0000353 .. method:: load_module(fullname)
Brett Cannon2a922ed2009-03-09 03:35:50 +0000354
355 A concrete implementation of :meth:`importlib.abc.Loader.load_module`
Brett Cannonad876c72009-03-09 07:53:09 +0000356 that loads Python source code. All needed information comes from the
357 abstract methods required by this ABC. The only pertinent assumption
358 made by this method is that when loading a package
359 :attr:`__path__` is set to ``[os.path.dirname(__file__)]``.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000360
Brett Cannon9c751b72009-03-09 16:28:16 +0000361 .. method:: get_code(fullname)
Brett Cannon2a922ed2009-03-09 03:35:50 +0000362
363 A concrete implementation of
364 :meth:`importlib.abc.InspectLoader.get_code` that creates code objects
Guido van Rossum09613542009-03-30 20:34:57 +0000365 from Python source code, by requesting the source code (using
Benjamin Peterson0089d752009-11-13 00:52:43 +0000366 :meth:`source_path` and :meth:`get_data`) and compiling it with the
367 built-in :func:`compile` function.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000368
Brett Cannond43b30b2009-03-10 03:29:23 +0000369 .. method:: get_source(fullname)
370
371 A concrete implementation of
372 :meth:`importlib.abc.InspectLoader.get_source`. Uses
Brett Cannon69194272009-07-20 04:23:48 +0000373 :meth:`importlib.abc.ResourceLoader.get_data` and :meth:`source_path`
374 to get the source code. It tries to guess the source encoding using
Guido van Rossum09613542009-03-30 20:34:57 +0000375 :func:`tokenize.detect_encoding`.
Brett Cannond43b30b2009-03-10 03:29:23 +0000376
Brett Cannon2a922ed2009-03-09 03:35:50 +0000377
378.. class:: PyPycLoader
379
Brett Cannonf23e3742010-06-27 23:57:46 +0000380 An abstract base class inheriting from :class:`PyLoader`.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000381 This ABC is meant to help in creating loaders that support both Python
382 source and bytecode.
383
Brett Cannonf23e3742010-06-27 23:57:46 +0000384 .. deprecated:: 3.2
385 This class has been deprecated in favor of :class:`SourceLoader` and to
386 properly support :pep:`3147`. If compatibility is required with
387 Python 3.1, implement both :class:`SourceLoader` and :class:`PyLoader`;
388 instructions on how to do so are included in the documentation for
389 :class:`PyLoader`. Do note that this solution will not support
390 sourceless/bytecode-only loading; only source *and* bytecode loading.
391
Brett Cannon9c751b72009-03-09 16:28:16 +0000392 .. method:: source_mtime(fullname)
Brett Cannon2a922ed2009-03-09 03:35:50 +0000393
394 An abstract method which returns the modification time for the source
395 code of the specified module. The modification time should be an
Georg Brandl375aec22011-01-15 17:03:02 +0000396 integer. If there is no source code, return ``None``. If the
Brett Cannon2a922ed2009-03-09 03:35:50 +0000397 module cannot be found then :exc:`ImportError` is raised.
398
Brett Cannon9c751b72009-03-09 16:28:16 +0000399 .. method:: bytecode_path(fullname)
Brett Cannon2a922ed2009-03-09 03:35:50 +0000400
401 An abstract method which returns the path to the bytecode for the
Georg Brandl375aec22011-01-15 17:03:02 +0000402 specified module, if it exists. It returns ``None``
Guido van Rossum09613542009-03-30 20:34:57 +0000403 if no bytecode exists (yet).
Brett Cannon3e761a92009-12-10 00:24:21 +0000404 Raises :exc:`ImportError` if the loader knows it cannot handle the
405 module.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000406
Brett Cannon69194272009-07-20 04:23:48 +0000407 .. method:: get_filename(fullname)
408
409 A concrete implementation of
Brett Cannonf23e3742010-06-27 23:57:46 +0000410 :meth:`ExecutionLoader.get_filename` that relies on
411 :meth:`PyLoader.source_path` and :meth:`bytecode_path`.
Brett Cannon69194272009-07-20 04:23:48 +0000412 If :meth:`source_path` returns a path, then that value is returned.
413 Else if :meth:`bytecode_path` returns a path, that path will be
414 returned. If a path is not available from both methods,
415 :exc:`ImportError` is raised.
416
Brett Cannon9c751b72009-03-09 16:28:16 +0000417 .. method:: write_bytecode(fullname, bytecode)
Brett Cannon2a922ed2009-03-09 03:35:50 +0000418
419 An abstract method which has the loader write *bytecode* for future
Georg Brandl375aec22011-01-15 17:03:02 +0000420 use. If the bytecode is written, return ``True``. Return
421 ``False`` if the bytecode could not be written. This method
Brett Cannon2a922ed2009-03-09 03:35:50 +0000422 should not be called if :data:`sys.dont_write_bytecode` is true.
Guido van Rossum09613542009-03-30 20:34:57 +0000423 The *bytecode* argument should be a bytes string or bytes array.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000424
425
Brett Cannon78246b62009-01-25 04:56:30 +0000426:mod:`importlib.machinery` -- Importers and path hooks
427------------------------------------------------------
428
429.. module:: importlib.machinery
430 :synopsis: Importers and path hooks
431
432This module contains the various objects that help :keyword:`import`
433find and load modules.
434
435.. class:: BuiltinImporter
436
Brett Cannon2a922ed2009-03-09 03:35:50 +0000437 An :term:`importer` for built-in modules. All known built-in modules are
438 listed in :data:`sys.builtin_module_names`. This class implements the
Brett Cannona113ac52009-03-15 01:41:33 +0000439 :class:`importlib.abc.Finder` and :class:`importlib.abc.InspectLoader`
440 ABCs.
Brett Cannon78246b62009-01-25 04:56:30 +0000441
442 Only class methods are defined by this class to alleviate the need for
443 instantiation.
444
Brett Cannon78246b62009-01-25 04:56:30 +0000445
446.. class:: FrozenImporter
447
Brett Cannon2a922ed2009-03-09 03:35:50 +0000448 An :term:`importer` for frozen modules. This class implements the
Brett Cannon8d110132009-03-15 02:20:16 +0000449 :class:`importlib.abc.Finder` and :class:`importlib.abc.InspectLoader`
450 ABCs.
Brett Cannon78246b62009-01-25 04:56:30 +0000451
452 Only class methods are defined by this class to alleviate the need for
453 instantiation.
454
Brett Cannondebb98d2009-02-16 04:18:01 +0000455
456.. class:: PathFinder
457
Brett Cannon2a922ed2009-03-09 03:35:50 +0000458 :term:`Finder` for :data:`sys.path`. This class implements the
459 :class:`importlib.abc.Finder` ABC.
Brett Cannondebb98d2009-02-16 04:18:01 +0000460
461 This class does not perfectly mirror the semantics of :keyword:`import` in
462 terms of :data:`sys.path`. No implicit path hooks are assumed for
463 simplification of the class and its semantics.
464
Brett Cannon1b184d52009-11-07 08:22:58 +0000465 Only class methods are defined by this class to alleviate the need for
Brett Cannondebb98d2009-02-16 04:18:01 +0000466 instantiation.
467
468 .. classmethod:: find_module(fullname, path=None)
469
470 Class method that attempts to find a :term:`loader` for the module
Brett Cannon2a922ed2009-03-09 03:35:50 +0000471 specified by *fullname* on :data:`sys.path` or, if defined, on
Brett Cannondebb98d2009-02-16 04:18:01 +0000472 *path*. For each path entry that is searched,
473 :data:`sys.path_importer_cache` is checked. If an non-false object is
Brett Cannon2a922ed2009-03-09 03:35:50 +0000474 found then it is used as the :term:`finder` to look for the module
475 being searched for. If no entry is found in
Brett Cannondebb98d2009-02-16 04:18:01 +0000476 :data:`sys.path_importer_cache`, then :data:`sys.path_hooks` is
477 searched for a finder for the path entry and, if found, is stored in
478 :data:`sys.path_importer_cache` along with being queried about the
Georg Brandl375aec22011-01-15 17:03:02 +0000479 module. If no finder is ever found then ``None`` is returned.
Brett Cannond2e7b332009-02-17 02:45:03 +0000480
481
482:mod:`importlib.util` -- Utility code for importers
483---------------------------------------------------
484
485.. module:: importlib.util
486 :synopsis: Importers and path hooks
487
488This module contains the various objects that help in the construction of
489an :term:`importer`.
490
Georg Brandl8a1caa22010-07-29 16:01:11 +0000491.. decorator:: module_for_loader
Brett Cannond2e7b332009-02-17 02:45:03 +0000492
Guido van Rossum09613542009-03-30 20:34:57 +0000493 A :term:`decorator` for a :term:`loader` method,
494 to handle selecting the proper
Brett Cannond2e7b332009-02-17 02:45:03 +0000495 module object to load with. The decorated method is expected to have a call
Brett Cannon2a922ed2009-03-09 03:35:50 +0000496 signature taking two positional arguments
497 (e.g. ``load_module(self, module)``) for which the second argument
Guido van Rossum09613542009-03-30 20:34:57 +0000498 will be the module **object** to be used by the loader.
499 Note that the decorator
Brett Cannon57b46f52009-03-02 14:38:26 +0000500 will not work on static methods because of the assumption of two
Brett Cannon2a922ed2009-03-09 03:35:50 +0000501 arguments.
Brett Cannond2e7b332009-02-17 02:45:03 +0000502
Guido van Rossum09613542009-03-30 20:34:57 +0000503 The decorated method will take in the **name** of the module to be loaded
504 as expected for a :term:`loader`. If the module is not found in
Brett Cannon57b46f52009-03-02 14:38:26 +0000505 :data:`sys.modules` then a new one is constructed with its
506 :attr:`__name__` attribute set. Otherwise the module found in
507 :data:`sys.modules` will be passed into the method. If an
Brett Cannond2e7b332009-02-17 02:45:03 +0000508 exception is raised by the decorated method and a module was added to
509 :data:`sys.modules` it will be removed to prevent a partially initialized
Brett Cannon57b46f52009-03-02 14:38:26 +0000510 module from being in left in :data:`sys.modules`. If the module was already
511 in :data:`sys.modules` then it is left alone.
Brett Cannond2e7b332009-02-17 02:45:03 +0000512
Guido van Rossum09613542009-03-30 20:34:57 +0000513 Use of this decorator handles all the details of which module object a
Brett Cannon57b46f52009-03-02 14:38:26 +0000514 loader should initialize as specified by :pep:`302`.
515
Georg Brandl8a1caa22010-07-29 16:01:11 +0000516.. decorator:: set_loader
Brett Cannon2cf03a82009-03-10 05:17:37 +0000517
Guido van Rossum09613542009-03-30 20:34:57 +0000518 A :term:`decorator` for a :term:`loader` method,
519 to set the :attr:`__loader__`
Brett Cannon2cf03a82009-03-10 05:17:37 +0000520 attribute on loaded modules. If the attribute is already set the decorator
521 does nothing. It is assumed that the first positional argument to the
522 wrapped method is what :attr:`__loader__` should be set to.
523
Georg Brandl8a1caa22010-07-29 16:01:11 +0000524.. decorator:: set_package
Brett Cannon57b46f52009-03-02 14:38:26 +0000525
526 A :term:`decorator` for a :term:`loader` to set the :attr:`__package__`
527 attribute on the module returned by the loader. If :attr:`__package__` is
Georg Brandl375aec22011-01-15 17:03:02 +0000528 set and has a value other than ``None`` it will not be changed.
Brett Cannon57b46f52009-03-02 14:38:26 +0000529 Note that the module returned by the loader is what has the attribute
530 set on and not the module found in :data:`sys.modules`.
Guido van Rossum09613542009-03-30 20:34:57 +0000531
Brett Cannon16248a42009-04-01 20:47:14 +0000532 Reliance on this decorator is discouraged when it is possible to set
533 :attr:`__package__` before the execution of the code is possible. By
534 setting it before the code for the module is executed it allows the
535 attribute to be used at the global level of the module during
536 initialization.
537