blob: 771c4c530c47780864249dc94f79907d23b2bc71 [file] [log] [blame]
Brett Cannon07fbd782014-02-06 09:46:08 -05001:mod:`importlib` -- The implementation of :keyword:`import`
2===========================================================
Brett Cannonafccd632009-01-20 02:21:27 +00003
4.. module:: importlib
Brett Cannon07fbd782014-02-06 09:46:08 -05005 :synopsis: The implementation of the import machinery.
Brett Cannonafccd632009-01-20 02:21:27 +00006
7.. moduleauthor:: Brett Cannon <brett@python.org>
8.. sectionauthor:: Brett Cannon <brett@python.org>
9
10.. versionadded:: 3.1
11
12
13Introduction
14------------
15
Brett Cannon07fbd782014-02-06 09:46:08 -050016The purpose of the :mod:`importlib` package is two-fold. One is to provide the
Brett Cannonafccd632009-01-20 02:21:27 +000017implementation 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 Cannon07fbd782014-02-06 09:46:08 -050020interpreter. This also provides an 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 Cannonafccd632009-01-20 02:21:27 +000026
27.. seealso::
28
29 :ref:`import`
30 The language reference for the :keyword:`import` statement.
31
Georg Brandlb7354a62014-10-29 10:57:37 +010032 `Packages specification <http://legacy.python.org/doc/essays/packages.html>`__
Brett Cannonafccd632009-01-20 02:21:27 +000033 Original specification of packages. Some semantics have changed since
Georg Brandl375aec22011-01-15 17:03:02 +000034 the writing of this document (e.g. redirecting based on ``None``
Brett Cannonafccd632009-01-20 02:21:27 +000035 in :data:`sys.modules`).
36
37 The :func:`.__import__` function
Brett Cannon0e13c942010-06-29 18:26:11 +000038 The :keyword:`import` statement is syntactic sugar for this function.
Brett Cannonafccd632009-01-20 02:21:27 +000039
40 :pep:`235`
41 Import on Case-Insensitive Platforms
42
43 :pep:`263`
44 Defining Python Source Code Encodings
45
46 :pep:`302`
Brett Cannonf23e3742010-06-27 23:57:46 +000047 New Import Hooks
Brett Cannonafccd632009-01-20 02:21:27 +000048
49 :pep:`328`
50 Imports: Multi-Line and Absolute/Relative
51
52 :pep:`366`
53 Main module explicit relative imports
54
Brett Cannon07fbd782014-02-06 09:46:08 -050055 :pep:`451`
56 A ModuleSpec Type for the Import System
57
Nick Coghland5cacbb2015-05-23 22:24:10 +100058 :pep:`488`
59 Elimination of PYO files
60
61 :pep:`489`
62 Multi-phase extension module initialization
63
Brett Cannon8917d5e2010-01-13 19:21:00 +000064 :pep:`3120`
Brett Cannonafccd632009-01-20 02:21:27 +000065 Using UTF-8 as the Default Source Encoding
66
Brett Cannon30b7a902010-06-27 21:49:22 +000067 :pep:`3147`
68 PYC Repository Directories
69
Brett Cannonafccd632009-01-20 02:21:27 +000070
71Functions
72---------
73
Brett Cannoncb4996a2012-08-06 16:34:44 -040074.. function:: __import__(name, globals=None, locals=None, fromlist=(), level=0)
Brett Cannonafccd632009-01-20 02:21:27 +000075
Brett Cannonf23e3742010-06-27 23:57:46 +000076 An implementation of the built-in :func:`__import__` function.
Brett Cannonafccd632009-01-20 02:21:27 +000077
Brett Cannon3fa84222015-02-20 10:34:20 -050078 .. note::
79 Programmatic importing of modules should use :func:`import_module`
80 instead of this function.
81
Brett Cannonafccd632009-01-20 02:21:27 +000082.. function:: import_module(name, package=None)
83
Brett Cannon33418c82009-01-22 18:37:20 +000084 Import a module. The *name* argument specifies what module to
Brett Cannonafccd632009-01-20 02:21:27 +000085 import in absolute or relative terms
86 (e.g. either ``pkg.mod`` or ``..mod``). If the name is
Guido van Rossum09613542009-03-30 20:34:57 +000087 specified in relative terms, then the *package* argument must be set to
88 the name of the package which is to act as the anchor for resolving the
Brett Cannonafccd632009-01-20 02:21:27 +000089 package name (e.g. ``import_module('..mod', 'pkg.subpkg')`` will import
Brett Cannon2c318a12009-02-07 01:15:27 +000090 ``pkg.mod``).
Brett Cannon78246b62009-01-25 04:56:30 +000091
Brett Cannon2c318a12009-02-07 01:15:27 +000092 The :func:`import_module` function acts as a simplifying wrapper around
Brett Cannon9f4cb1c2009-04-01 23:26:47 +000093 :func:`importlib.__import__`. This means all semantics of the function are
Brett Cannon3fa84222015-02-20 10:34:20 -050094 derived from :func:`importlib.__import__`. The most important difference
95 between these two functions is that :func:`import_module` returns the
96 specified package or module (e.g. ``pkg.mod``), while :func:`__import__`
97 returns the top-level package or module (e.g. ``pkg``).
98
99 If you are dynamically importing a module that was created since the
100 interpreter began execution (e.g., created a Python source file), you may
101 need to call :func:`invalidate_caches` in order for the new module to be
102 noticed by the import system.
Guido van Rossum09613542009-03-30 20:34:57 +0000103
Brett Cannon98620d82013-12-13 13:57:41 -0500104 .. versionchanged:: 3.3
105 Parent packages are automatically imported.
106
Brett Cannonee78a2b2012-05-12 17:43:17 -0400107.. function:: find_loader(name, path=None)
108
109 Find the loader for a module, optionally within the specified *path*. If the
110 module is in :attr:`sys.modules`, then ``sys.modules[name].__loader__`` is
Brett Cannon32799232013-03-13 11:09:08 -0700111 returned (unless the loader would be ``None`` or is not set, in which case
Brett Cannonee78a2b2012-05-12 17:43:17 -0400112 :exc:`ValueError` is raised). Otherwise a search using :attr:`sys.meta_path`
113 is done. ``None`` is returned if no loader is found.
114
Brett Cannon56b4ca72012-11-17 09:30:55 -0500115 A dotted name does not have its parent's implicitly imported as that requires
116 loading them and that may not be desired. To properly import a submodule you
117 will need to import all parent packages of the submodule and use the correct
118 argument to *path*.
Brett Cannonee78a2b2012-05-12 17:43:17 -0400119
Brett Cannon32799232013-03-13 11:09:08 -0700120 .. versionadded:: 3.3
121
122 .. versionchanged:: 3.4
123 If ``__loader__`` is not set, raise :exc:`ValueError`, just like when the
124 attribute is set to ``None``.
125
Eric Snowca2d8542013-12-16 23:06:52 -0700126 .. deprecated:: 3.4
Eric Snow6029e082014-01-25 15:32:46 -0700127 Use :func:`importlib.util.find_spec` instead.
Eric Snowca2d8542013-12-16 23:06:52 -0700128
Antoine Pitrouc541f8e2012-02-20 01:48:16 +0100129.. function:: invalidate_caches()
130
Brett Cannonf4dc9202012-08-10 12:21:12 -0400131 Invalidate the internal caches of finders stored at
132 :data:`sys.meta_path`. If a finder implements ``invalidate_caches()`` then it
Brett Cannon4067aa22013-04-27 23:20:32 -0400133 will be called to perform the invalidation. This function should be called
134 if any modules are created/installed while your program is running to
135 guarantee all finders will notice the new module's existence.
Antoine Pitrouc541f8e2012-02-20 01:48:16 +0100136
137 .. versionadded:: 3.3
138
Brett Cannon3fe35e62013-06-14 15:04:26 -0400139.. function:: reload(module)
140
141 Reload a previously imported *module*. The argument must be a module object,
142 so it must have been successfully imported before. This is useful if you
143 have edited the module source file using an external editor and want to try
144 out the new version without leaving the Python interpreter. The return value
Brett Cannon8ad37862013-10-25 13:52:46 -0400145 is the module object (which can be different if re-importing causes a
146 different object to be placed in :data:`sys.modules`).
Brett Cannon3fe35e62013-06-14 15:04:26 -0400147
Brett Cannon8ad37862013-10-25 13:52:46 -0400148 When :func:`reload` is executed:
Brett Cannon3fe35e62013-06-14 15:04:26 -0400149
Larry Hastings3732ed22014-03-15 21:13:56 -0700150 * Python module's code is recompiled and the module-level code re-executed,
Brett Cannon3fe35e62013-06-14 15:04:26 -0400151 defining a new set of objects which are bound to names in the module's
152 dictionary by reusing the :term:`loader` which originally loaded the
153 module. The ``init`` function of extension modules is not called a second
154 time.
155
156 * As with all other objects in Python the old objects are only reclaimed
157 after their reference counts drop to zero.
158
159 * The names in the module namespace are updated to point to any new or
160 changed objects.
161
162 * Other references to the old objects (such as names external to the module) are
163 not rebound to refer to the new objects and must be updated in each namespace
164 where they occur if that is desired.
165
166 There are a number of other caveats:
167
Brett Cannon3fe35e62013-06-14 15:04:26 -0400168 When a module is reloaded, its dictionary (containing the module's global
169 variables) is retained. Redefinitions of names will override the old
170 definitions, so this is generally not a problem. If the new version of a
171 module does not define a name that was defined by the old version, the old
172 definition remains. This feature can be used to the module's advantage if it
173 maintains a global table or cache of objects --- with a :keyword:`try`
174 statement it can test for the table's presence and skip its initialization if
175 desired::
176
177 try:
178 cache
179 except NameError:
180 cache = {}
181
182 It is legal though generally not very useful to reload built-in or
183 dynamically loaded modules (this is not true for e.g. :mod:`sys`,
Serhiy Storchaka98b28fd2013-10-13 23:12:09 +0300184 :mod:`__main__`, :mod:`builtins` and other key modules where reloading is
Brett Cannon3fe35e62013-06-14 15:04:26 -0400185 frowned upon). In many cases, however, extension modules are not designed to
186 be initialized more than once, and may fail in arbitrary ways when reloaded.
187
188 If a module imports objects from another module using :keyword:`from` ...
189 :keyword:`import` ..., calling :func:`reload` for the other module does not
190 redefine the objects imported from it --- one way around this is to
191 re-execute the :keyword:`from` statement, another is to use :keyword:`import`
192 and qualified names (*module.name*) instead.
193
194 If a module instantiates instances of a class, reloading the module that
195 defines the class does not affect the method definitions of the instances ---
196 they continue to use the old class definition. The same is true for derived
197 classes.
198
199 .. versionadded:: 3.4
200
Brett Cannon78246b62009-01-25 04:56:30 +0000201
Brett Cannon2a922ed2009-03-09 03:35:50 +0000202:mod:`importlib.abc` -- Abstract base classes related to import
203---------------------------------------------------------------
204
205.. module:: importlib.abc
206 :synopsis: Abstract base classes related to import
207
208The :mod:`importlib.abc` module contains all of the core abstract base classes
209used by :keyword:`import`. Some subclasses of the core abstract base classes
210are also provided to help in implementing the core ABCs.
211
Andrew Svetlova8656542012-08-13 22:19:01 +0300212ABC hierarchy::
213
214 object
Brett Cannon1b799182012-08-17 14:08:24 -0400215 +-- Finder (deprecated)
Andrew Svetlova8656542012-08-13 22:19:01 +0300216 | +-- MetaPathFinder
217 | +-- PathEntryFinder
218 +-- Loader
219 +-- ResourceLoader --------+
220 +-- InspectLoader |
221 +-- ExecutionLoader --+
222 +-- FileLoader
223 +-- SourceLoader
Andrew Svetlova8656542012-08-13 22:19:01 +0300224
Brett Cannon2a922ed2009-03-09 03:35:50 +0000225
226.. class:: Finder
227
Brett Cannon1b799182012-08-17 14:08:24 -0400228 An abstract base class representing a :term:`finder`.
229
230 .. deprecated:: 3.3
231 Use :class:`MetaPathFinder` or :class:`PathEntryFinder` instead.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000232
Brett Cannonf4dc9202012-08-10 12:21:12 -0400233 .. method:: find_module(fullname, path=None)
Brett Cannonb46a1792012-02-27 18:15:42 -0500234
Brett Cannonf4dc9202012-08-10 12:21:12 -0400235 An abstact method for finding a :term:`loader` for the specified
236 module. Originally specified in :pep:`302`, this method was meant
237 for use in :data:`sys.meta_path` and in the path-based import subsystem.
Nick Coghlan8a9080f2012-08-02 21:26:03 +1000238
Brett Cannon100883f2013-04-09 16:59:39 -0400239 .. versionchanged:: 3.4
240 Returns ``None`` when called instead of raising
241 :exc:`NotImplementedError`.
242
Nick Coghlan8a9080f2012-08-02 21:26:03 +1000243
Brett Cannon077ef452012-08-02 17:50:06 -0400244.. class:: MetaPathFinder
Nick Coghlan8a9080f2012-08-02 21:26:03 +1000245
Brett Cannonf4dc9202012-08-10 12:21:12 -0400246 An abstract base class representing a :term:`meta path finder`. For
247 compatibility, this is a subclass of :class:`Finder`.
Nick Coghlan8a9080f2012-08-02 21:26:03 +1000248
249 .. versionadded:: 3.3
250
Eric Snowca2d8542013-12-16 23:06:52 -0700251 .. method:: find_spec(fullname, path, target=None)
252
253 An abstract method for finding a :term:`spec <module spec>` for
254 the specified module. If this is a top-level import, *path* will
255 be ``None``. Otherwise, this is a search for a subpackage or
256 module and *path* will be the value of :attr:`__path__` from the
257 parent package. If a spec cannot be found, ``None`` is returned.
258 When passed in, ``target`` is a module object that the finder may
259 use to make a more educated about what spec to return.
260
261 .. versionadded:: 3.4
262
Nick Coghlan8a9080f2012-08-02 21:26:03 +1000263 .. method:: find_module(fullname, path)
264
Eric Snowca2d8542013-12-16 23:06:52 -0700265 A legacy method for finding a :term:`loader` for the specified
Nick Coghlan8a9080f2012-08-02 21:26:03 +1000266 module. If this is a top-level import, *path* will be ``None``.
Ezio Melotti1f67e802012-10-21 07:24:13 +0300267 Otherwise, this is a search for a subpackage or module and *path*
Nick Coghlan8a9080f2012-08-02 21:26:03 +1000268 will be the value of :attr:`__path__` from the parent
269 package. If a loader cannot be found, ``None`` is returned.
270
Brett Cannon8d942292014-01-07 15:52:42 -0500271 If :meth:`find_spec` is defined, backwards-compatible functionality is
272 provided.
273
Brett Cannon100883f2013-04-09 16:59:39 -0400274 .. versionchanged:: 3.4
275 Returns ``None`` when called instead of raising
Brett Cannon8d942292014-01-07 15:52:42 -0500276 :exc:`NotImplementedError`. Can use :meth:`find_spec` to provide
277 functionality.
Brett Cannon100883f2013-04-09 16:59:39 -0400278
Eric Snowca2d8542013-12-16 23:06:52 -0700279 .. deprecated:: 3.4
280 Use :meth:`find_spec` instead.
281
Brett Cannonf4dc9202012-08-10 12:21:12 -0400282 .. method:: invalidate_caches()
283
284 An optional method which, when called, should invalidate any internal
Brett Cannona6e85812012-08-11 19:41:27 -0400285 cache used by the finder. Used by :func:`importlib.invalidate_caches`
286 when invalidating the caches of all finders on :data:`sys.meta_path`.
Brett Cannonf4dc9202012-08-10 12:21:12 -0400287
Brett Cannon100883f2013-04-09 16:59:39 -0400288 .. versionchanged:: 3.4
289 Returns ``None`` when called instead of ``NotImplemented``.
290
Nick Coghlan8a9080f2012-08-02 21:26:03 +1000291
Brett Cannon077ef452012-08-02 17:50:06 -0400292.. class:: PathEntryFinder
Nick Coghlan8a9080f2012-08-02 21:26:03 +1000293
Brett Cannonf4dc9202012-08-10 12:21:12 -0400294 An abstract base class representing a :term:`path entry finder`. Though
295 it bears some similarities to :class:`MetaPathFinder`, ``PathEntryFinder``
296 is meant for use only within the path-based import subsystem provided
297 by :class:`PathFinder`. This ABC is a subclass of :class:`Finder` for
Brett Cannon100883f2013-04-09 16:59:39 -0400298 compatibility reasons only.
Nick Coghlan8a9080f2012-08-02 21:26:03 +1000299
300 .. versionadded:: 3.3
301
Eric Snowca2d8542013-12-16 23:06:52 -0700302 .. method:: find_spec(fullname, target=None)
303
304 An abstract method for finding a :term:`spec <module spec>` for
305 the specified module. The finder will search for the module only
306 within the :term:`path entry` to which it is assigned. If a spec
307 cannot be found, ``None`` is returned. When passed in, ``target``
308 is a module object that the finder may use to make a more educated
309 about what spec to return.
310
311 .. versionadded:: 3.4
312
Brett Cannon4067aa22013-04-27 23:20:32 -0400313 .. method:: find_loader(fullname)
Nick Coghlan8a9080f2012-08-02 21:26:03 +1000314
Eric Snowca2d8542013-12-16 23:06:52 -0700315 A legacy method for finding a :term:`loader` for the specified
Brett Cannonf4dc9202012-08-10 12:21:12 -0400316 module. Returns a 2-tuple of ``(loader, portion)`` where ``portion``
317 is a sequence of file system locations contributing to part of a namespace
318 package. The loader may be ``None`` while specifying ``portion`` to
319 signify the contribution of the file system locations to a namespace
320 package. An empty list can be used for ``portion`` to signify the loader
Brett Cannon100883f2013-04-09 16:59:39 -0400321 is not part of a namespace package. If ``loader`` is ``None`` and
322 ``portion`` is the empty list then no loader or location for a namespace
323 package were found (i.e. failure to find anything for the module).
324
Brett Cannon8d942292014-01-07 15:52:42 -0500325 If :meth:`find_spec` is defined then backwards-compatible functionality is
326 provided.
327
Brett Cannon100883f2013-04-09 16:59:39 -0400328 .. versionchanged:: 3.4
329 Returns ``(None, [])`` instead of raising :exc:`NotImplementedError`.
Brett Cannon8d942292014-01-07 15:52:42 -0500330 Uses :meth:`find_spec` when available to provide functionality.
Brett Cannonf4dc9202012-08-10 12:21:12 -0400331
Eric Snowca2d8542013-12-16 23:06:52 -0700332 .. deprecated:: 3.4
333 Use :meth:`find_spec` instead.
334
Brett Cannon4067aa22013-04-27 23:20:32 -0400335 .. method:: find_module(fullname)
Brett Cannonf4dc9202012-08-10 12:21:12 -0400336
337 A concrete implementation of :meth:`Finder.find_module` which is
338 equivalent to ``self.find_loader(fullname)[0]``.
339
Eric Snowca2d8542013-12-16 23:06:52 -0700340 .. deprecated:: 3.4
341 Use :meth:`find_spec` instead.
342
Brett Cannonf4dc9202012-08-10 12:21:12 -0400343 .. method:: invalidate_caches()
344
345 An optional method which, when called, should invalidate any internal
Brett Cannona6e85812012-08-11 19:41:27 -0400346 cache used by the finder. Used by :meth:`PathFinder.invalidate_caches`
Brett Cannonf4dc9202012-08-10 12:21:12 -0400347 when invalidating the caches of all cached finders.
Brett Cannonb46a1792012-02-27 18:15:42 -0500348
Brett Cannon2a922ed2009-03-09 03:35:50 +0000349
350.. class:: Loader
351
352 An abstract base class for a :term:`loader`.
Guido van Rossum09613542009-03-30 20:34:57 +0000353 See :pep:`302` for the exact definition for a loader.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000354
Eric Snowca2d8542013-12-16 23:06:52 -0700355 .. method:: create_module(spec)
356
Brett Cannon02d84542015-01-09 11:39:21 -0500357 A method that returns the module object to use when
358 importing a module. This method may return ``None``,
359 indicating that default module creation semantics should take place.
Eric Snowca2d8542013-12-16 23:06:52 -0700360
361 .. versionadded:: 3.4
362
Brett Cannon02d84542015-01-09 11:39:21 -0500363 .. versionchanged:: 3.5
364 Starting in Python 3.6, this method will not be optional when
365 :meth:`exec_module` is defined.
366
Eric Snowca2d8542013-12-16 23:06:52 -0700367 .. method:: exec_module(module)
368
369 An abstract method that executes the module in its own namespace
370 when a module is imported or reloaded. The module should already
371 be initialized when exec_module() is called.
372
373 .. versionadded:: 3.4
374
Brett Cannon9c751b72009-03-09 16:28:16 +0000375 .. method:: load_module(fullname)
Brett Cannon2a922ed2009-03-09 03:35:50 +0000376
Eric Snowca2d8542013-12-16 23:06:52 -0700377 A legacy method for loading a module. If the module cannot be
Brett Cannon2a922ed2009-03-09 03:35:50 +0000378 loaded, :exc:`ImportError` is raised, otherwise the loaded module is
379 returned.
380
Guido van Rossum09613542009-03-30 20:34:57 +0000381 If the requested module already exists in :data:`sys.modules`, that
Brett Cannon2a922ed2009-03-09 03:35:50 +0000382 module should be used and reloaded.
Guido van Rossum09613542009-03-30 20:34:57 +0000383 Otherwise the loader should create a new module and insert it into
384 :data:`sys.modules` before any loading begins, to prevent recursion
385 from the import. If the loader inserted a module and the load fails, it
Brett Cannon2a922ed2009-03-09 03:35:50 +0000386 must be removed by the loader from :data:`sys.modules`; modules already
387 in :data:`sys.modules` before the loader began execution should be left
Eric Snowb523f842013-11-22 09:05:39 -0700388 alone (see :func:`importlib.util.module_for_loader`).
Brett Cannon2a922ed2009-03-09 03:35:50 +0000389
Guido van Rossum09613542009-03-30 20:34:57 +0000390 The loader should set several attributes on the module.
391 (Note that some of these attributes can change when a module is
Eric Snowb523f842013-11-22 09:05:39 -0700392 reloaded):
Brett Cannon2a922ed2009-03-09 03:35:50 +0000393
394 - :attr:`__name__`
395 The name of the module.
396
397 - :attr:`__file__`
398 The path to where the module data is stored (not set for built-in
399 modules).
400
Brett Cannon2cefb3c2013-05-25 11:26:11 -0400401 - :attr:`__cached__`
402 The path to where a compiled version of the module is/should be
403 stored (not set when the attribute would be inappropriate).
404
Brett Cannon2a922ed2009-03-09 03:35:50 +0000405 - :attr:`__path__`
Guido van Rossum09613542009-03-30 20:34:57 +0000406 A list of strings specifying the search path within a
Brett Cannon2a922ed2009-03-09 03:35:50 +0000407 package. This attribute is not set on modules.
408
409 - :attr:`__package__`
410 The parent package for the module/package. If the module is
411 top-level then it has a value of the empty string. The
Brett Cannon100883f2013-04-09 16:59:39 -0400412 :func:`importlib.util.module_for_loader` decorator can handle the
413 details for :attr:`__package__`.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000414
415 - :attr:`__loader__`
Brett Cannon100883f2013-04-09 16:59:39 -0400416 The loader used to load the module. The
417 :func:`importlib.util.module_for_loader` decorator can handle the
418 details for :attr:`__package__`.
419
Brett Cannon8d942292014-01-07 15:52:42 -0500420 When :meth:`exec_module` is available then backwards-compatible
421 functionality is provided.
422
Brett Cannon100883f2013-04-09 16:59:39 -0400423 .. versionchanged:: 3.4
424 Raise :exc:`ImportError` when called instead of
Brett Cannon8d942292014-01-07 15:52:42 -0500425 :exc:`NotImplementedError`. Functionality provided when
426 :meth:`exec_module` is available.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000427
Eric Snowca2d8542013-12-16 23:06:52 -0700428 .. deprecated:: 3.4
429 The recommended API for loading a module is :meth:`exec_module`
Brett Cannon02d84542015-01-09 11:39:21 -0500430 (and :meth:`create_module`). Loaders should implement
Eric Snowca2d8542013-12-16 23:06:52 -0700431 it instead of load_module(). The import machinery takes care of
432 all the other responsibilities of load_module() when exec_module()
433 is implemented.
434
Barry Warsawd7d21942012-07-29 16:36:17 -0400435 .. method:: module_repr(module)
436
Eric Snowca2d8542013-12-16 23:06:52 -0700437 A legacy method which when implemented calculates and returns the
Brett Cannon100883f2013-04-09 16:59:39 -0400438 given module's repr, as a string. The module type's default repr() will
439 use the result of this method as appropriate.
Barry Warsawd7d21942012-07-29 16:36:17 -0400440
Georg Brandl526575d2013-04-11 16:10:13 +0200441 .. versionadded:: 3.3
Barry Warsawd7d21942012-07-29 16:36:17 -0400442
Brett Cannon100883f2013-04-09 16:59:39 -0400443 .. versionchanged:: 3.4
Georg Brandl526575d2013-04-11 16:10:13 +0200444 Made optional instead of an abstractmethod.
Brett Cannon100883f2013-04-09 16:59:39 -0400445
Eric Snowca2d8542013-12-16 23:06:52 -0700446 .. deprecated:: 3.4
447 The import machinery now takes care of this automatically.
448
Brett Cannon2a922ed2009-03-09 03:35:50 +0000449
450.. class:: ResourceLoader
451
452 An abstract base class for a :term:`loader` which implements the optional
453 :pep:`302` protocol for loading arbitrary resources from the storage
454 back-end.
455
Brett Cannon9c751b72009-03-09 16:28:16 +0000456 .. method:: get_data(path)
Brett Cannon2a922ed2009-03-09 03:35:50 +0000457
458 An abstract method to return the bytes for the data located at *path*.
Guido van Rossum09613542009-03-30 20:34:57 +0000459 Loaders that have a file-like storage back-end
Brett Cannon16248a42009-04-01 20:47:14 +0000460 that allows storing arbitrary data
Guido van Rossum09613542009-03-30 20:34:57 +0000461 can implement this abstract method to give direct access
Andrew Svetlov08af0002014-04-01 01:13:30 +0300462 to the data stored. :exc:`OSError` is to be raised if the *path* cannot
Brett Cannon2a922ed2009-03-09 03:35:50 +0000463 be found. The *path* is expected to be constructed using a module's
Brett Cannon16248a42009-04-01 20:47:14 +0000464 :attr:`__file__` attribute or an item from a package's :attr:`__path__`.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000465
Brett Cannon100883f2013-04-09 16:59:39 -0400466 .. versionchanged:: 3.4
Andrew Svetlov08af0002014-04-01 01:13:30 +0300467 Raises :exc:`OSError` instead of :exc:`NotImplementedError`.
Brett Cannon100883f2013-04-09 16:59:39 -0400468
Brett Cannon2a922ed2009-03-09 03:35:50 +0000469
470.. class:: InspectLoader
471
472 An abstract base class for a :term:`loader` which implements the optional
Guido van Rossum09613542009-03-30 20:34:57 +0000473 :pep:`302` protocol for loaders that inspect modules.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000474
Brett Cannona113ac52009-03-15 01:41:33 +0000475 .. method:: get_code(fullname)
Brett Cannon2a922ed2009-03-09 03:35:50 +0000476
R David Murray0ae7ae12014-01-08 18:16:02 -0500477 Return the code object for a module, or ``None`` if the module does not
478 have a code object (as would be the case, for example, for a built-in
479 module). Raise an :exc:`ImportError` if loader cannot find the
480 requested module.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000481
Brett Cannon3b62ca82013-05-27 21:11:04 -0400482 .. note::
483 While the method has a default implementation, it is suggested that
484 it be overridden if possible for performance.
485
R David Murray1b00f252012-08-15 10:43:58 -0400486 .. index::
487 single: universal newlines; importlib.abc.InspectLoader.get_source method
488
Brett Cannon100883f2013-04-09 16:59:39 -0400489 .. versionchanged:: 3.4
Brett Cannon3b62ca82013-05-27 21:11:04 -0400490 No longer abstract and a concrete implementation is provided.
Brett Cannon100883f2013-04-09 16:59:39 -0400491
Brett Cannon9c751b72009-03-09 16:28:16 +0000492 .. method:: get_source(fullname)
Brett Cannon2a922ed2009-03-09 03:35:50 +0000493
494 An abstract method to return the source of a module. It is returned as
R David Murray1b00f252012-08-15 10:43:58 -0400495 a text string using :term:`universal newlines`, translating all
R David Murrayee0a9452012-08-15 11:05:36 -0400496 recognized line separators into ``'\n'`` characters. Returns ``None``
497 if no source is available (e.g. a built-in module). Raises
498 :exc:`ImportError` if the loader cannot find the module specified.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000499
Brett Cannon100883f2013-04-09 16:59:39 -0400500 .. versionchanged:: 3.4
501 Raises :exc:`ImportError` instead of :exc:`NotImplementedError`.
502
Brett Cannona113ac52009-03-15 01:41:33 +0000503 .. method:: is_package(fullname)
Brett Cannon2a922ed2009-03-09 03:35:50 +0000504
Brett Cannona113ac52009-03-15 01:41:33 +0000505 An abstract method to return a true value if the module is a package, a
506 false value otherwise. :exc:`ImportError` is raised if the
507 :term:`loader` cannot find the module.
Brett Cannon2a922ed2009-03-09 03:35:50 +0000508
Brett Cannon100883f2013-04-09 16:59:39 -0400509 .. versionchanged:: 3.4
510 Raises :exc:`ImportError` instead of :exc:`NotImplementedError`.
511
Brett Cannon6eaac132014-05-09 12:28:22 -0400512 .. staticmethod:: source_to_code(data, path='<string>')
Brett Cannon9ffe85e2013-05-26 16:45:10 -0400513
514 Create a code object from Python source.
515
516 The *data* argument can be whatever the :func:`compile` function
517 supports (i.e. string or bytes). The *path* argument should be
518 the "path" to where the source code originated from, which can be an
519 abstract concept (e.g. location in a zip file).
520
Brett Cannon6eaac132014-05-09 12:28:22 -0400521 With the subsequent code object one can execute it in a module by
522 running ``exec(code, module.__dict__)``.
523
Brett Cannon9ffe85e2013-05-26 16:45:10 -0400524 .. versionadded:: 3.4
525
Brett Cannon6eaac132014-05-09 12:28:22 -0400526 .. versionchanged:: 3.5
527 Made the method static.
528
Eric Snowca2d8542013-12-16 23:06:52 -0700529 .. method:: exec_module(module)
530
531 Implementation of :meth:`Loader.exec_module`.
532
533 .. versionadded:: 3.4
534
Brett Cannon0dbb4c72013-05-31 18:56:47 -0400535 .. method:: load_module(fullname)
536
Eric Snowca2d8542013-12-16 23:06:52 -0700537 Implementation of :meth:`Loader.load_module`.
538
539 .. deprecated:: 3.4
540 use :meth:`exec_module` instead.
Brett Cannon0dbb4c72013-05-31 18:56:47 -0400541
Brett Cannon2a922ed2009-03-09 03:35:50 +0000542
Brett Cannon69194272009-07-20 04:23:48 +0000543.. class:: ExecutionLoader
544
545 An abstract base class which inherits from :class:`InspectLoader` that,
Brett Cannon23460292009-07-20 22:59:00 +0000546 when implemented, helps a module to be executed as a script. The ABC
Brett Cannon69194272009-07-20 04:23:48 +0000547 represents an optional :pep:`302` protocol.
548
549 .. method:: get_filename(fullname)
550
Brett Cannonf23e3742010-06-27 23:57:46 +0000551 An abstract method that is to return the value of :attr:`__file__` for
Brett Cannon69194272009-07-20 04:23:48 +0000552 the specified module. If no path is available, :exc:`ImportError` is
553 raised.
554
Brett Cannonf23e3742010-06-27 23:57:46 +0000555 If source code is available, then the method should return the path to
556 the source file, regardless of whether a bytecode was used to load the
557 module.
558
Brett Cannon100883f2013-04-09 16:59:39 -0400559 .. versionchanged:: 3.4
560 Raises :exc:`ImportError` instead of :exc:`NotImplementedError`.
561
Brett Cannonf23e3742010-06-27 23:57:46 +0000562
Brett Cannon938d44d2012-04-22 19:58:33 -0400563.. class:: FileLoader(fullname, path)
564
565 An abstract base class which inherits from :class:`ResourceLoader` and
Andrew Svetlova60de4f2013-02-17 16:55:58 +0200566 :class:`ExecutionLoader`, providing concrete implementations of
Brett Cannon938d44d2012-04-22 19:58:33 -0400567 :meth:`ResourceLoader.get_data` and :meth:`ExecutionLoader.get_filename`.
568
569 The *fullname* argument is a fully resolved name of the module the loader is
570 to handle. The *path* argument is the path to the file for the module.
571
572 .. versionadded:: 3.3
573
574 .. attribute:: name
575
576 The name of the module the loader can handle.
577
578 .. attribute:: path
579
580 Path to the file of the module.
581
Barry Warsawd7d21942012-07-29 16:36:17 -0400582 .. method:: load_module(fullname)
Brett Cannonc0499522012-05-11 14:48:41 -0400583
Barry Warsawd7d21942012-07-29 16:36:17 -0400584 Calls super's ``load_module()``.
Brett Cannonc0499522012-05-11 14:48:41 -0400585
Eric Snowca2d8542013-12-16 23:06:52 -0700586 .. deprecated:: 3.4
587 Use :meth:`Loader.exec_module` instead.
588
Brett Cannon938d44d2012-04-22 19:58:33 -0400589 .. method:: get_filename(fullname)
590
Barry Warsawd7d21942012-07-29 16:36:17 -0400591 Returns :attr:`path`.
Brett Cannon938d44d2012-04-22 19:58:33 -0400592
593 .. method:: get_data(path)
594
Brett Cannon3b62ca82013-05-27 21:11:04 -0400595 Reads *path* as a binary file and returns the bytes from it.
Brett Cannon938d44d2012-04-22 19:58:33 -0400596
597
Brett Cannonf23e3742010-06-27 23:57:46 +0000598.. class:: SourceLoader
599
600 An abstract base class for implementing source (and optionally bytecode)
601 file loading. The class inherits from both :class:`ResourceLoader` and
602 :class:`ExecutionLoader`, requiring the implementation of:
603
604 * :meth:`ResourceLoader.get_data`
605 * :meth:`ExecutionLoader.get_filename`
Brett Cannon6dfbff32010-07-21 09:48:31 +0000606 Should only return the path to the source file; sourceless
Brett Cannona81d5272013-06-16 19:17:12 -0400607 loading is not supported.
Brett Cannonf23e3742010-06-27 23:57:46 +0000608
609 The abstract methods defined by this class are to add optional bytecode
Brett Cannon5650e4f2012-11-18 10:03:31 -0500610 file support. Not implementing these optional methods (or causing them to
611 raise :exc:`NotImplementedError`) causes the loader to
Brett Cannonf23e3742010-06-27 23:57:46 +0000612 only work with source code. Implementing the methods allows the loader to
613 work with source *and* bytecode files; it does not allow for *sourceless*
614 loading where only bytecode is provided. Bytecode files are an
615 optimization to speed up loading by removing the parsing step of Python's
616 compiler, and so no bytecode-specific API is exposed.
617
Brett Cannon773468f2012-08-02 17:35:34 -0400618 .. method:: path_stats(path)
Antoine Pitrou5136ac02012-01-13 18:52:16 +0100619
620 Optional abstract method which returns a :class:`dict` containing
621 metadata about the specifed path. Supported dictionary keys are:
622
623 - ``'mtime'`` (mandatory): an integer or floating-point number
624 representing the modification time of the source code;
625 - ``'size'`` (optional): the size in bytes of the source code.
626
627 Any other keys in the dictionary are ignored, to allow for future
Andrew Svetlov08af0002014-04-01 01:13:30 +0300628 extensions. If the path cannot be handled, :exc:`OSError` is raised.
Antoine Pitrou5136ac02012-01-13 18:52:16 +0100629
630 .. versionadded:: 3.3
631
Brett Cannon100883f2013-04-09 16:59:39 -0400632 .. versionchanged:: 3.4
Andrew Svetlov08af0002014-04-01 01:13:30 +0300633 Raise :exc:`OSError` instead of :exc:`NotImplementedError`.
Brett Cannon100883f2013-04-09 16:59:39 -0400634
Brett Cannon773468f2012-08-02 17:35:34 -0400635 .. method:: path_mtime(path)
Brett Cannonf23e3742010-06-27 23:57:46 +0000636
637 Optional abstract method which returns the modification time for the
638 specified path.
639
Antoine Pitrou5136ac02012-01-13 18:52:16 +0100640 .. deprecated:: 3.3
641 This method is deprecated in favour of :meth:`path_stats`. You don't
642 have to implement it, but it is still available for compatibility
Andrew Svetlov08af0002014-04-01 01:13:30 +0300643 purposes. Raise :exc:`OSError` if the path cannot be handled.
Brett Cannon100883f2013-04-09 16:59:39 -0400644
Georg Brandldf48b972014-03-24 09:06:18 +0100645 .. versionchanged:: 3.4
Andrew Svetlov08af0002014-04-01 01:13:30 +0300646 Raise :exc:`OSError` instead of :exc:`NotImplementedError`.
Antoine Pitrou5136ac02012-01-13 18:52:16 +0100647
Brett Cannon773468f2012-08-02 17:35:34 -0400648 .. method:: set_data(path, data)
Brett Cannonf23e3742010-06-27 23:57:46 +0000649
650 Optional abstract method which writes the specified bytes to a file
Brett Cannon61b14252010-07-03 21:48:25 +0000651 path. Any intermediate directories which do not exist are to be created
652 automatically.
653
654 When writing to the path fails because the path is read-only
Brett Cannon2cefb3c2013-05-25 11:26:11 -0400655 (:attr:`errno.EACCES`/:exc:`PermissionError`), do not propagate the
656 exception.
Brett Cannonf23e3742010-06-27 23:57:46 +0000657
Brett Cannon100883f2013-04-09 16:59:39 -0400658 .. versionchanged:: 3.4
659 No longer raises :exc:`NotImplementedError` when called.
660
Brett Cannon773468f2012-08-02 17:35:34 -0400661 .. method:: get_code(fullname)
Brett Cannonf23e3742010-06-27 23:57:46 +0000662
663 Concrete implementation of :meth:`InspectLoader.get_code`.
664
Eric Snowca2d8542013-12-16 23:06:52 -0700665 .. method:: exec_module(module)
666
667 Concrete implementation of :meth:`Loader.exec_module`.
668
669 .. versionadded:: 3.4
670
Brett Cannon773468f2012-08-02 17:35:34 -0400671 .. method:: load_module(fullname)
Brett Cannonf23e3742010-06-27 23:57:46 +0000672
Eric Snowca2d8542013-12-16 23:06:52 -0700673 Concrete implementation of :meth:`Loader.load_module`.
674
675 .. deprecated:: 3.4
676 Use :meth:`exec_module` instead.
Brett Cannonf23e3742010-06-27 23:57:46 +0000677
Brett Cannon773468f2012-08-02 17:35:34 -0400678 .. method:: get_source(fullname)
Brett Cannonf23e3742010-06-27 23:57:46 +0000679
680 Concrete implementation of :meth:`InspectLoader.get_source`.
681
Brett Cannon773468f2012-08-02 17:35:34 -0400682 .. method:: is_package(fullname)
Brett Cannonf23e3742010-06-27 23:57:46 +0000683
684 Concrete implementation of :meth:`InspectLoader.is_package`. A module
Brett Cannonea0b8232012-06-15 20:00:53 -0400685 is determined to be a package if its file path (as provided by
686 :meth:`ExecutionLoader.get_filename`) is a file named
687 ``__init__`` when the file extension is removed **and** the module name
688 itself does not end in ``__init__``.
Brett Cannonf23e3742010-06-27 23:57:46 +0000689
Brett Cannon69194272009-07-20 04:23:48 +0000690
Brett Cannon78246b62009-01-25 04:56:30 +0000691:mod:`importlib.machinery` -- Importers and path hooks
692------------------------------------------------------
693
694.. module:: importlib.machinery
695 :synopsis: Importers and path hooks
696
697This module contains the various objects that help :keyword:`import`
698find and load modules.
699
Brett Cannoncb66eb02012-05-11 12:58:42 -0400700.. attribute:: SOURCE_SUFFIXES
701
702 A list of strings representing the recognized file suffixes for source
703 modules.
704
705 .. versionadded:: 3.3
706
707.. attribute:: DEBUG_BYTECODE_SUFFIXES
708
709 A list of strings representing the file suffixes for non-optimized bytecode
710 modules.
711
712 .. versionadded:: 3.3
713
Brett Cannonf299abd2015-04-13 14:21:02 -0400714 .. deprecated:: 3.5
715 Use :attr:`BYTECODE_SUFFIXES` instead.
716
Brett Cannoncb66eb02012-05-11 12:58:42 -0400717.. attribute:: OPTIMIZED_BYTECODE_SUFFIXES
718
719 A list of strings representing the file suffixes for optimized bytecode
720 modules.
721
722 .. versionadded:: 3.3
723
Brett Cannonf299abd2015-04-13 14:21:02 -0400724 .. deprecated:: 3.5
725 Use :attr:`BYTECODE_SUFFIXES` instead.
726
Brett Cannoncb66eb02012-05-11 12:58:42 -0400727.. attribute:: BYTECODE_SUFFIXES
728
729 A list of strings representing the recognized file suffixes for bytecode
Brett Cannonf299abd2015-04-13 14:21:02 -0400730 modules (including the leading dot).
Brett Cannoncb66eb02012-05-11 12:58:42 -0400731
732 .. versionadded:: 3.3
733
Brett Cannonf299abd2015-04-13 14:21:02 -0400734 .. versionchanged:: 3.5
735 The value is no longer dependent on ``__debug__``.
736
Brett Cannoncb66eb02012-05-11 12:58:42 -0400737.. attribute:: EXTENSION_SUFFIXES
738
Nick Coghlan76e07702012-07-18 23:14:57 +1000739 A list of strings representing the recognized file suffixes for
Brett Cannoncb66eb02012-05-11 12:58:42 -0400740 extension modules.
741
742 .. versionadded:: 3.3
743
Nick Coghlanc5afd422012-07-18 23:59:08 +1000744.. function:: all_suffixes()
Nick Coghlan76e07702012-07-18 23:14:57 +1000745
746 Returns a combined list of strings representing all file suffixes for
Nick Coghlanc5afd422012-07-18 23:59:08 +1000747 modules recognized by the standard import machinery. This is a
Nick Coghlan76e07702012-07-18 23:14:57 +1000748 helper for code which simply needs to know if a filesystem path
Nick Coghlanc5afd422012-07-18 23:59:08 +1000749 potentially refers to a module without needing any details on the kind
750 of module (for example, :func:`inspect.getmodulename`)
Nick Coghlan76e07702012-07-18 23:14:57 +1000751
752 .. versionadded:: 3.3
753
754
Brett Cannon78246b62009-01-25 04:56:30 +0000755.. class:: BuiltinImporter
756
Brett Cannon2a922ed2009-03-09 03:35:50 +0000757 An :term:`importer` for built-in modules. All known built-in modules are
758 listed in :data:`sys.builtin_module_names`. This class implements the
Nick Coghlan8a9080f2012-08-02 21:26:03 +1000759 :class:`importlib.abc.MetaPathFinder` and
760 :class:`importlib.abc.InspectLoader` ABCs.
Brett Cannon78246b62009-01-25 04:56:30 +0000761
762 Only class methods are defined by this class to alleviate the need for
763 instantiation.
764
Nick Coghland5cacbb2015-05-23 22:24:10 +1000765 .. versionchanged:: 3.5
766 As part of :pep:`489`, the builtin importer now implements
767 :meth:`Loader.create_module` and :meth:`Loader.exec_module`
Eric Snowca2d8542013-12-16 23:06:52 -0700768
Brett Cannon78246b62009-01-25 04:56:30 +0000769
770.. class:: FrozenImporter
771
Brett Cannon2a922ed2009-03-09 03:35:50 +0000772 An :term:`importer` for frozen modules. This class implements the
Nick Coghlan8a9080f2012-08-02 21:26:03 +1000773 :class:`importlib.abc.MetaPathFinder` and
774 :class:`importlib.abc.InspectLoader` ABCs.
Brett Cannon78246b62009-01-25 04:56:30 +0000775
776 Only class methods are defined by this class to alleviate the need for
777 instantiation.
778
Brett Cannondebb98d2009-02-16 04:18:01 +0000779
Nick Coghlanff794862012-08-02 21:45:24 +1000780.. class:: WindowsRegistryFinder
781
782 :term:`Finder` for modules declared in the Windows registry. This class
Nick Coghlan49417742012-08-02 23:03:58 +1000783 implements the :class:`importlib.abc.Finder` ABC.
Nick Coghlanff794862012-08-02 21:45:24 +1000784
785 Only class methods are defined by this class to alleviate the need for
786 instantiation.
787
788 .. versionadded:: 3.3
789
790
Brett Cannondebb98d2009-02-16 04:18:01 +0000791.. class:: PathFinder
792
Brett Cannon1b799182012-08-17 14:08:24 -0400793 A :term:`Finder` for :data:`sys.path` and package ``__path__`` attributes.
794 This class implements the :class:`importlib.abc.MetaPathFinder` ABC.
Brett Cannondebb98d2009-02-16 04:18:01 +0000795
Brett Cannon1b799182012-08-17 14:08:24 -0400796 Only class methods are defined by this class to alleviate the need for
797 instantiation.
Brett Cannondebb98d2009-02-16 04:18:01 +0000798
Eric Snowca2d8542013-12-16 23:06:52 -0700799 .. classmethod:: find_spec(fullname, path=None, target=None)
800
801 Class method that attempts to find a :term:`spec <module spec>`
802 for the module specified by *fullname* on :data:`sys.path` or, if
803 defined, on *path*. For each path entry that is searched,
804 :data:`sys.path_importer_cache` is checked. If a non-false object
805 is found then it is used as the :term:`path entry finder` to look
806 for the module being searched for. If no entry is found in
807 :data:`sys.path_importer_cache`, then :data:`sys.path_hooks` is
808 searched for a finder for the path entry and, if found, is stored
809 in :data:`sys.path_importer_cache` along with being queried about
810 the module. If no finder is ever found then ``None`` is both
811 stored in the cache and returned.
812
813 .. versionadded:: 3.4
814
Brett Cannonb6e25562014-11-21 12:19:28 -0500815 .. versionchanged:: 3.5
816 If the current working directory -- represented by an empty string --
817 is no longer valid then ``None`` is returned but no value is cached
818 in :data:`sys.path_importer_cache`.
819
Brett Cannon1b799182012-08-17 14:08:24 -0400820 .. classmethod:: find_module(fullname, path=None)
Brett Cannondebb98d2009-02-16 04:18:01 +0000821
Eric Snowca2d8542013-12-16 23:06:52 -0700822 A legacy wrapper around :meth:`find_spec`.
823
824 .. deprecated:: 3.4
825 Use :meth:`find_spec` instead.
Brett Cannond2e7b332009-02-17 02:45:03 +0000826
Brett Cannonf4dc9202012-08-10 12:21:12 -0400827 .. classmethod:: invalidate_caches()
828
Eric Snowca2d8542013-12-16 23:06:52 -0700829 Calls :meth:`importlib.abc.PathEntryFinder.invalidate_caches` on all
830 finders stored in :attr:`sys.path_importer_cache`.
Brett Cannonf4dc9202012-08-10 12:21:12 -0400831
Eric Snowca2d8542013-12-16 23:06:52 -0700832 .. versionchanged:: 3.4
833 Calls objects in :data:`sys.path_hooks` with the current working
834 directory for ``''`` (i.e. the empty string).
Brett Cannon27e27f72013-10-18 11:39:04 -0400835
Brett Cannond2e7b332009-02-17 02:45:03 +0000836
Brett Cannon938d44d2012-04-22 19:58:33 -0400837.. class:: FileFinder(path, \*loader_details)
838
Nick Coghlan8a9080f2012-08-02 21:26:03 +1000839 A concrete implementation of :class:`importlib.abc.PathEntryFinder` which
840 caches results from the file system.
Brett Cannon938d44d2012-04-22 19:58:33 -0400841
842 The *path* argument is the directory for which the finder is in charge of
843 searching.
844
Brett Cannonac9f2f32012-08-10 13:47:54 -0400845 The *loader_details* argument is a variable number of 2-item tuples each
846 containing a loader and a sequence of file suffixes the loader recognizes.
Brett Cannon29b2f172013-06-21 18:31:55 -0400847 The loaders are expected to be callables which accept two arguments of
848 the module's name and the path to the file found.
Brett Cannon938d44d2012-04-22 19:58:33 -0400849
850 The finder will cache the directory contents as necessary, making stat calls
851 for each module search to verify the cache is not outdated. Because cache
852 staleness relies upon the granularity of the operating system's state
853 information of the file system, there is a potential race condition of
854 searching for a module, creating a new file, and then searching for the
855 module the new file represents. If the operations happen fast enough to fit
856 within the granularity of stat calls, then the module search will fail. To
857 prevent this from happening, when you create a module dynamically, make sure
858 to call :func:`importlib.invalidate_caches`.
859
860 .. versionadded:: 3.3
861
862 .. attribute:: path
863
864 The path the finder will search in.
865
Eric Snowca2d8542013-12-16 23:06:52 -0700866 .. method:: find_spec(fullname, target=None)
867
868 Attempt to find the spec to handle *fullname* within :attr:`path`.
869
870 .. versionadded:: 3.4
871
Brett Cannon1d753822013-06-16 19:06:55 -0400872 .. method:: find_loader(fullname)
Brett Cannon938d44d2012-04-22 19:58:33 -0400873
874 Attempt to find the loader to handle *fullname* within :attr:`path`.
875
876 .. method:: invalidate_caches()
877
878 Clear out the internal cache.
879
880 .. classmethod:: path_hook(\*loader_details)
881
882 A class method which returns a closure for use on :attr:`sys.path_hooks`.
883 An instance of :class:`FileFinder` is returned by the closure using the
884 path argument given to the closure directly and *loader_details*
885 indirectly.
886
887 If the argument to the closure is not an existing directory,
888 :exc:`ImportError` is raised.
889
890
891.. class:: SourceFileLoader(fullname, path)
892
893 A concrete implementation of :class:`importlib.abc.SourceLoader` by
894 subclassing :class:`importlib.abc.FileLoader` and providing some concrete
895 implementations of other methods.
896
897 .. versionadded:: 3.3
898
899 .. attribute:: name
900
901 The name of the module that this loader will handle.
902
903 .. attribute:: path
904
905 The path to the source file.
906
907 .. method:: is_package(fullname)
908
909 Return true if :attr:`path` appears to be for a package.
910
911 .. method:: path_stats(path)
912
913 Concrete implementation of :meth:`importlib.abc.SourceLoader.path_stats`.
914
915 .. method:: set_data(path, data)
916
917 Concrete implementation of :meth:`importlib.abc.SourceLoader.set_data`.
918
Brett Cannon062fcac2014-05-09 11:55:49 -0400919 .. method:: load_module(name=None)
920
921 Concrete implementation of :meth:`importlib.abc.Loader.load_module` where
922 specifying the name of the module to load is optional.
923
Brett Cannon938d44d2012-04-22 19:58:33 -0400924
Marc-Andre Lemburg4fe29c92012-04-25 02:31:37 +0200925.. class:: SourcelessFileLoader(fullname, path)
Brett Cannon938d44d2012-04-22 19:58:33 -0400926
927 A concrete implementation of :class:`importlib.abc.FileLoader` which can
928 import bytecode files (i.e. no source code files exist).
929
Marc-Andre Lemburg4fe29c92012-04-25 02:31:37 +0200930 Please note that direct use of bytecode files (and thus not source code
931 files) inhibits your modules from being usable by all Python
932 implementations or new versions of Python which change the bytecode
933 format.
Brett Cannon938d44d2012-04-22 19:58:33 -0400934
935 .. versionadded:: 3.3
936
937 .. attribute:: name
938
939 The name of the module the loader will handle.
940
941 .. attribute:: path
942
943 The path to the bytecode file.
944
945 .. method:: is_package(fullname)
946
947 Determines if the module is a package based on :attr:`path`.
948
949 .. method:: get_code(fullname)
950
951 Returns the code object for :attr:`name` created from :attr:`path`.
952
953 .. method:: get_source(fullname)
954
955 Returns ``None`` as bytecode files have no source when this loader is
956 used.
957
Brett Cannon062fcac2014-05-09 11:55:49 -0400958 .. method:: load_module(name=None)
959
960 Concrete implementation of :meth:`importlib.abc.Loader.load_module` where
961 specifying the name of the module to load is optional.
962
Brett Cannon938d44d2012-04-22 19:58:33 -0400963
964.. class:: ExtensionFileLoader(fullname, path)
965
Eric Snow51794452013-10-03 12:08:55 -0600966 A concrete implementation of :class:`importlib.abc.ExecutionLoader` for
Brett Cannon938d44d2012-04-22 19:58:33 -0400967 extension modules.
968
969 The *fullname* argument specifies the name of the module the loader is to
970 support. The *path* argument is the path to the extension module's file.
971
972 .. versionadded:: 3.3
973
974 .. attribute:: name
975
976 Name of the module the loader supports.
977
978 .. attribute:: path
979
980 Path to the extension module.
981
Nick Coghland5cacbb2015-05-23 22:24:10 +1000982 .. method:: create_module(spec)
Brett Cannon938d44d2012-04-22 19:58:33 -0400983
Nick Coghland5cacbb2015-05-23 22:24:10 +1000984 Creates the module object from the given specification in accordance
985 with :pep:`489`.
Brett Cannon938d44d2012-04-22 19:58:33 -0400986
Nick Coghland5cacbb2015-05-23 22:24:10 +1000987 .. versionadded:: 3.5
988
989 .. method:: exec_module(module)
990
991 Initializes the given module object in accordance with :pep:`489`.
992
993 .. versionadded:: 3.5
Eric Snowca2d8542013-12-16 23:06:52 -0700994
Brett Cannon938d44d2012-04-22 19:58:33 -0400995 .. method:: is_package(fullname)
996
Brett Cannonac9f2f32012-08-10 13:47:54 -0400997 Returns ``True`` if the file path points to a package's ``__init__``
998 module based on :attr:`EXTENSION_SUFFIXES`.
Brett Cannon938d44d2012-04-22 19:58:33 -0400999
1000 .. method:: get_code(fullname)
1001
1002 Returns ``None`` as extension modules lack a code object.
1003
1004 .. method:: get_source(fullname)
1005
1006 Returns ``None`` as extension modules do not have source code.
1007
Eric Snow51794452013-10-03 12:08:55 -06001008 .. method:: get_filename(fullname)
1009
1010 Returns :attr:`path`.
1011
Eric Snowdcd01b42013-10-04 20:35:34 -06001012 .. versionadded:: 3.4
1013
Brett Cannon938d44d2012-04-22 19:58:33 -04001014
Eric Snowb523f842013-11-22 09:05:39 -07001015.. class:: ModuleSpec(name, loader, *, origin=None, loader_state=None, is_package=None)
1016
1017 A specification for a module's import-system-related state.
1018
1019 .. versionadded:: 3.4
1020
1021 .. attribute:: name
1022
1023 (``__name__``)
1024
1025 A string for the fully-qualified name of the module.
1026
1027 .. attribute:: loader
1028
1029 (``__loader__``)
1030
1031 The loader to use for loading. For namespace packages this should be
1032 set to None.
1033
1034 .. attribute:: origin
1035
1036 (``__file__``)
1037
1038 Name of the place from which the module is loaded, e.g. "builtin" for
1039 built-in modules and the filename for modules loaded from source.
1040 Normally "origin" should be set, but it may be None (the default)
1041 which indicates it is unspecified.
1042
1043 .. attribute:: submodule_search_locations
1044
1045 (``__path__``)
1046
1047 List of strings for where to find submodules, if a package (None
1048 otherwise).
1049
1050 .. attribute:: loader_state
1051
1052 Container of extra module-specific data for use during loading (or
1053 None).
1054
1055 .. attribute:: cached
1056
1057 (``__cached__``)
1058
1059 String for where the compiled module should be stored (or None).
1060
1061 .. attribute:: parent
1062
1063 (``__package__``)
1064
1065 (Read-only) Fully-qualified name of the package to which the module
1066 belongs as a submodule (or None).
1067
1068 .. attribute:: has_location
1069
Eric Snowb282b3d2013-12-10 22:16:41 -07001070 Boolean indicating whether or not the module's "origin"
Eric Snowb523f842013-11-22 09:05:39 -07001071 attribute refers to a loadable location.
1072
Brett Cannond2e7b332009-02-17 02:45:03 +00001073:mod:`importlib.util` -- Utility code for importers
1074---------------------------------------------------
1075
1076.. module:: importlib.util
Brett Cannon75321e82012-03-02 11:58:25 -05001077 :synopsis: Utility code for importers
Brett Cannond2e7b332009-02-17 02:45:03 +00001078
1079This module contains the various objects that help in the construction of
1080an :term:`importer`.
1081
Brett Cannon05a647d2013-06-14 19:02:34 -04001082.. attribute:: MAGIC_NUMBER
1083
1084 The bytes which represent the bytecode version number. If you need help with
1085 loading/writing bytecode then consider :class:`importlib.abc.SourceLoader`.
1086
1087 .. versionadded:: 3.4
1088
Brett Cannonf299abd2015-04-13 14:21:02 -04001089.. function:: cache_from_source(path, debug_override=None, *, optimization=None)
Brett Cannona3c96152013-06-14 22:26:30 -04001090
Brett Cannonf299abd2015-04-13 14:21:02 -04001091 Return the :pep:`3147`/:pep:`488` path to the byte-compiled file associated
1092 with the source *path*. For example, if *path* is ``/foo/bar/baz.py`` the return
Brett Cannona3c96152013-06-14 22:26:30 -04001093 value would be ``/foo/bar/__pycache__/baz.cpython-32.pyc`` for Python 3.2.
1094 The ``cpython-32`` string comes from the current magic tag (see
1095 :func:`get_tag`; if :attr:`sys.implementation.cache_tag` is not defined then
Brett Cannonf299abd2015-04-13 14:21:02 -04001096 :exc:`NotImplementedError` will be raised).
Brett Cannona3c96152013-06-14 22:26:30 -04001097
Brett Cannonf299abd2015-04-13 14:21:02 -04001098 The *optimization* parameter is used to specify the optimization level of the
1099 bytecode file. An empty string represents no optimization, so
1100 ``/foo/bar/baz.py`` with an *optimization* of ``''`` will result in a
1101 bytecode path of ``/foo/bar/__pycache__/baz.cpython-32.pyc``. ``None`` causes
1102 the interpter's optimization level to be used. Any other value's string
1103 representation being used, so ``/foo/bar/baz.py`` with an *optimization* of
1104 ``2`` will lead to the bytecode path of
1105 ``/foo/bar/__pycache__/baz.cpython-32.opt-2.pyc``. The string representation
1106 of *optimization* can only be alphanumeric, else :exc:`ValueError` is raised.
1107
1108 The *debug_override* parameter is deprecated and can be used to override
1109 the system's value for ``__debug__``. A ``True`` value is the equivalent of
1110 setting *optimization* to the empty string. A ``False`` value is the same as
1111 setting *optimization* to ``1``. If both *debug_override* an *optimization*
1112 are not ``None`` then :exc:`TypeError` is raised.
Brett Cannona3c96152013-06-14 22:26:30 -04001113
1114 .. versionadded:: 3.4
1115
Brett Cannonf299abd2015-04-13 14:21:02 -04001116 .. versionchanged ::3.5
1117 The *optimization* parameter was added and the *debug_override* parameter
1118 was deprecated.
1119
Brett Cannona3c96152013-06-14 22:26:30 -04001120
1121.. function:: source_from_cache(path)
1122
1123 Given the *path* to a :pep:`3147` file name, return the associated source code
1124 file path. For example, if *path* is
1125 ``/foo/bar/__pycache__/baz.cpython-32.pyc`` the returned path would be
1126 ``/foo/bar/baz.py``. *path* need not exist, however if it does not conform
Larry Hastings770ce202015-04-19 13:50:12 -07001127 to :pep:`3147` or :pep:`488` format, a ``ValueError`` is raised. If
Brett Cannona3c96152013-06-14 22:26:30 -04001128 :attr:`sys.implementation.cache_tag` is not defined,
1129 :exc:`NotImplementedError` is raised.
1130
1131 .. versionadded:: 3.4
1132
Brett Cannonf24fecd2013-06-16 18:37:53 -04001133.. function:: decode_source(source_bytes)
1134
1135 Decode the given bytes representing source code and return it as a string
1136 with universal newlines (as required by
1137 :meth:`importlib.abc.InspectLoader.get_source`).
1138
1139 .. versionadded:: 3.4
1140
Brett Cannond200bf52012-05-13 13:45:09 -04001141.. function:: resolve_name(name, package)
1142
1143 Resolve a relative module name to an absolute one.
1144
1145 If **name** has no leading dots, then **name** is simply returned. This
1146 allows for usage such as
1147 ``importlib.util.resolve_name('sys', __package__)`` without doing a
1148 check to see if the **package** argument is needed.
1149
1150 :exc:`ValueError` is raised if **name** is a relative module name but
1151 package is a false value (e.g. ``None`` or the empty string).
1152 :exc:`ValueError` is also raised a relative name would escape its containing
1153 package (e.g. requesting ``..bacon`` from within the ``spam`` package).
1154
1155 .. versionadded:: 3.3
1156
Eric Snow6029e082014-01-25 15:32:46 -07001157.. function:: find_spec(name, package=None)
1158
1159 Find the :term:`spec <module spec>` for a module, optionally relative to
1160 the specified **package** name. If the module is in :attr:`sys.modules`,
1161 then ``sys.modules[name].__spec__`` is returned (unless the spec would be
1162 ``None`` or is not set, in which case :exc:`ValueError` is raised).
1163 Otherwise a search using :attr:`sys.meta_path` is done. ``None`` is
1164 returned if no spec is found.
1165
1166 If **name** is for a submodule (contains a dot), the parent module is
1167 automatically imported.
1168
1169 **name** and **package** work the same as for :func:`import_module`.
1170
1171 .. versionadded:: 3.4
1172
Brett Cannon2a17bde2014-05-30 14:55:29 -04001173.. function:: module_from_spec(spec)
1174
Brett Cannon02d84542015-01-09 11:39:21 -05001175 Create a new module based on **spec** and ``spec.loader.create_module()``.
Brett Cannon2a17bde2014-05-30 14:55:29 -04001176
Brett Cannon02d84542015-01-09 11:39:21 -05001177 If ``spec.loader.create_module()`` does not return ``None``, then any
Brett Cannon2a17bde2014-05-30 14:55:29 -04001178 pre-existing attributes will not be reset. Also, no :exc:`AttributeError`
1179 will be raised if triggered while accessing **spec** or setting an attribute
1180 on the module.
1181
1182 This function is preferred over using :class:`types.ModuleType` to create a
1183 new module as **spec** is used to set as many import-controlled attributes on
1184 the module as possible.
1185
1186 .. versionadded:: 3.5
1187
Georg Brandl8a1caa22010-07-29 16:01:11 +00001188.. decorator:: module_for_loader
Brett Cannond2e7b332009-02-17 02:45:03 +00001189
Brett Cannona22faca2013-05-28 17:50:14 -04001190 A :term:`decorator` for :meth:`importlib.abc.Loader.load_module`
Guido van Rossum09613542009-03-30 20:34:57 +00001191 to handle selecting the proper
Brett Cannond2e7b332009-02-17 02:45:03 +00001192 module object to load with. The decorated method is expected to have a call
Brett Cannon2a922ed2009-03-09 03:35:50 +00001193 signature taking two positional arguments
1194 (e.g. ``load_module(self, module)``) for which the second argument
Guido van Rossum09613542009-03-30 20:34:57 +00001195 will be the module **object** to be used by the loader.
Brett Cannonefad00d2012-04-27 17:27:14 -04001196 Note that the decorator will not work on static methods because of the
1197 assumption of two arguments.
Brett Cannond2e7b332009-02-17 02:45:03 +00001198
Guido van Rossum09613542009-03-30 20:34:57 +00001199 The decorated method will take in the **name** of the module to be loaded
1200 as expected for a :term:`loader`. If the module is not found in
Brett Cannon3dc48d62013-05-28 18:35:54 -04001201 :data:`sys.modules` then a new one is constructed. Regardless of where the
1202 module came from, :attr:`__loader__` set to **self** and :attr:`__package__`
1203 is set based on what :meth:`importlib.abc.InspectLoader.is_package` returns
1204 (if available). These attributes are set unconditionally to support
1205 reloading.
Brett Cannonefad00d2012-04-27 17:27:14 -04001206
1207 If an exception is raised by the decorated method and a module was added to
Brett Cannona87e31c2013-09-13 16:52:19 -04001208 :data:`sys.modules`, then the module will be removed to prevent a partially
1209 initialized module from being in left in :data:`sys.modules`. If the module
1210 was already in :data:`sys.modules` then it is left alone.
Brett Cannond2e7b332009-02-17 02:45:03 +00001211
Brett Cannonefad00d2012-04-27 17:27:14 -04001212 .. versionchanged:: 3.3
Georg Brandl61063cc2012-06-24 22:48:30 +02001213 :attr:`__loader__` and :attr:`__package__` are automatically set
1214 (when possible).
Brett Cannon57b46f52009-03-02 14:38:26 +00001215
Brett Cannon3dc48d62013-05-28 18:35:54 -04001216 .. versionchanged:: 3.4
Brett Cannon0dbb4c72013-05-31 18:56:47 -04001217 Set :attr:`__name__`, :attr:`__loader__` :attr:`__package__`
1218 unconditionally to support reloading.
1219
1220 .. deprecated:: 3.4
Eric Snowb523f842013-11-22 09:05:39 -07001221 The import machinery now directly performs all the functionality
1222 provided by this function.
Brett Cannon3dc48d62013-05-28 18:35:54 -04001223
Georg Brandl8a1caa22010-07-29 16:01:11 +00001224.. decorator:: set_loader
Brett Cannon2cf03a82009-03-10 05:17:37 +00001225
Brett Cannona22faca2013-05-28 17:50:14 -04001226 A :term:`decorator` for :meth:`importlib.abc.Loader.load_module`
1227 to set the :attr:`__loader__`
1228 attribute on the returned module. If the attribute is already set the
1229 decorator does nothing. It is assumed that the first positional argument to
1230 the wrapped method (i.e. ``self``) is what :attr:`__loader__` should be set
1231 to.
Brett Cannon2cf03a82009-03-10 05:17:37 +00001232
Brett Cannon4802bec2013-03-13 10:41:36 -07001233 .. versionchanged:: 3.4
Brett Cannon4c14b5d2013-05-04 13:56:58 -04001234 Set ``__loader__`` if set to ``None``, as if the attribute does not
Brett Cannon4802bec2013-03-13 10:41:36 -07001235 exist.
1236
Eric Snowca2d8542013-12-16 23:06:52 -07001237 .. deprecated:: 3.4
1238 The import machinery takes care of this automatically.
1239
Georg Brandl8a1caa22010-07-29 16:01:11 +00001240.. decorator:: set_package
Brett Cannon57b46f52009-03-02 14:38:26 +00001241
Brett Cannona22faca2013-05-28 17:50:14 -04001242 A :term:`decorator` for :meth:`importlib.abc.Loader.load_module` to set the :attr:`__package__` attribute on the returned module. If :attr:`__package__`
1243 is set and has a value other than ``None`` it will not be changed.
Brett Cannon16248a42009-04-01 20:47:14 +00001244
Eric Snowca2d8542013-12-16 23:06:52 -07001245 .. deprecated:: 3.4
1246 The import machinery takes care of this automatically.
1247
Eric Snowb523f842013-11-22 09:05:39 -07001248.. function:: spec_from_loader(name, loader, *, origin=None, is_package=None)
1249
1250 A factory function for creating a :class:`ModuleSpec` instance based
1251 on a loader. The parameters have the same meaning as they do for
1252 ModuleSpec. The function uses available :term:`loader` APIs, such as
1253 :meth:`InspectLoader.is_package`, to fill in any missing
1254 information on the spec.
1255
1256 .. versionadded:: 3.4
1257
1258.. function:: spec_from_file_location(name, location, *, loader=None, submodule_search_locations=None)
1259
1260 A factory function for creating a :class:`ModuleSpec` instance based
1261 on the path to a file. Missing information will be filled in on the
1262 spec by making use of loader APIs and by the implication that the
1263 module will be file-based.
1264
1265 .. versionadded:: 3.4
Brett Cannona04dbe42014-04-04 13:53:38 -04001266
1267.. class:: LazyLoader(loader)
1268
1269 A class which postpones the execution of the loader of a module until the
1270 module has an attribute accessed.
1271
1272 This class **only** works with loaders that define
Brett Cannon02d84542015-01-09 11:39:21 -05001273 :meth:`~importlib.abc.Loader.exec_module` as control over what module type
1274 is used for the module is required. For those same reasons, the loader's
1275 :meth:`~importlib.abc.Loader.create_module` method will be ignored (i.e., the
1276 loader's method should only return ``None``). Finally,
Brett Cannona04dbe42014-04-04 13:53:38 -04001277 modules which substitute the object placed into :attr:`sys.modules` will
1278 not work as there is no way to properly replace the module references
1279 throughout the interpreter safely; :exc:`ValueError` is raised if such a
1280 substitution is detected.
1281
1282 .. note::
1283 For projects where startup time is critical, this class allows for
1284 potentially minimizing the cost of loading a module if it is never used.
1285 For projects where startup time is not essential then use of this class is
1286 **heavily** discouraged due to error messages created during loading being
1287 postponed and thus occurring out of context.
1288
1289 .. versionadded:: 3.5
1290
1291 .. classmethod:: factory(loader)
1292
1293 A static method which returns a callable that creates a lazy loader. This
1294 is meant to be used in situations where the loader is passed by class
1295 instead of by instance.
1296 ::
1297
1298 suffixes = importlib.machinery.SOURCE_SUFFIXES
1299 loader = importlib.machinery.SourceFileLoader
1300 lazy_loader = importlib.util.LazyLoader.factory(loader)
1301 finder = importlib.machinery.FileFinder(path, [(lazy_loader, suffixes)])