blob: e61ac351cddb929c9323eb893d0d2df075f9cb34 [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
Brett Cannon8917d5e2010-01-13 19:21:00 +000058 :pep:`3120`
Brett Cannonafccd632009-01-20 02:21:27 +000059 Using UTF-8 as the Default Source Encoding
60
Brett Cannon30b7a902010-06-27 21:49:22 +000061 :pep:`3147`
62 PYC Repository Directories
63
Brett Cannonafccd632009-01-20 02:21:27 +000064
65Functions
66---------
67
Brett Cannoncb4996a2012-08-06 16:34:44 -040068.. function:: __import__(name, globals=None, locals=None, fromlist=(), level=0)
Brett Cannonafccd632009-01-20 02:21:27 +000069
Brett Cannonf23e3742010-06-27 23:57:46 +000070 An implementation of the built-in :func:`__import__` function.
Brett Cannonafccd632009-01-20 02:21:27 +000071
Brett Cannon3fa84222015-02-20 10:34:20 -050072 .. note::
73 Programmatic importing of modules should use :func:`import_module`
74 instead of this function.
75
Brett Cannonafccd632009-01-20 02:21:27 +000076.. function:: import_module(name, package=None)
77
Brett Cannon33418c82009-01-22 18:37:20 +000078 Import a module. The *name* argument specifies what module to
Brett Cannonafccd632009-01-20 02:21:27 +000079 import in absolute or relative terms
80 (e.g. either ``pkg.mod`` or ``..mod``). If the name is
Guido van Rossum09613542009-03-30 20:34:57 +000081 specified in relative terms, then the *package* argument must be set to
82 the name of the package which is to act as the anchor for resolving the
Brett Cannonafccd632009-01-20 02:21:27 +000083 package name (e.g. ``import_module('..mod', 'pkg.subpkg')`` will import
Brett Cannon2c318a12009-02-07 01:15:27 +000084 ``pkg.mod``).
Brett Cannon78246b62009-01-25 04:56:30 +000085
Brett Cannon2c318a12009-02-07 01:15:27 +000086 The :func:`import_module` function acts as a simplifying wrapper around
Brett Cannon9f4cb1c2009-04-01 23:26:47 +000087 :func:`importlib.__import__`. This means all semantics of the function are
Brett Cannon3fa84222015-02-20 10:34:20 -050088 derived from :func:`importlib.__import__`. The most important difference
89 between these two functions is that :func:`import_module` returns the
90 specified package or module (e.g. ``pkg.mod``), while :func:`__import__`
91 returns the top-level package or module (e.g. ``pkg``).
92
93 If you are dynamically importing a module that was created since the
94 interpreter began execution (e.g., created a Python source file), you may
95 need to call :func:`invalidate_caches` in order for the new module to be
96 noticed by the import system.
Guido van Rossum09613542009-03-30 20:34:57 +000097
Brett Cannon98620d82013-12-13 13:57:41 -050098 .. versionchanged:: 3.3
99 Parent packages are automatically imported.
100
Brett Cannonee78a2b2012-05-12 17:43:17 -0400101.. function:: find_loader(name, path=None)
102
103 Find the loader for a module, optionally within the specified *path*. If the
104 module is in :attr:`sys.modules`, then ``sys.modules[name].__loader__`` is
Brett Cannon32799232013-03-13 11:09:08 -0700105 returned (unless the loader would be ``None`` or is not set, in which case
Brett Cannonee78a2b2012-05-12 17:43:17 -0400106 :exc:`ValueError` is raised). Otherwise a search using :attr:`sys.meta_path`
107 is done. ``None`` is returned if no loader is found.
108
Brett Cannon56b4ca72012-11-17 09:30:55 -0500109 A dotted name does not have its parent's implicitly imported as that requires
110 loading them and that may not be desired. To properly import a submodule you
111 will need to import all parent packages of the submodule and use the correct
112 argument to *path*.
Brett Cannonee78a2b2012-05-12 17:43:17 -0400113
Brett Cannon32799232013-03-13 11:09:08 -0700114 .. versionadded:: 3.3
115
116 .. versionchanged:: 3.4
117 If ``__loader__`` is not set, raise :exc:`ValueError`, just like when the
118 attribute is set to ``None``.
119
Eric Snowca2d8542013-12-16 23:06:52 -0700120 .. deprecated:: 3.4
Eric Snow6029e082014-01-25 15:32:46 -0700121 Use :func:`importlib.util.find_spec` instead.
Eric Snowca2d8542013-12-16 23:06:52 -0700122
Antoine Pitrouc541f8e2012-02-20 01:48:16 +0100123.. function:: invalidate_caches()
124
Brett Cannonf4dc9202012-08-10 12:21:12 -0400125 Invalidate the internal caches of finders stored at
126 :data:`sys.meta_path`. If a finder implements ``invalidate_caches()`` then it
Brett Cannon4067aa22013-04-27 23:20:32 -0400127 will be called to perform the invalidation. This function should be called
128 if any modules are created/installed while your program is running to
129 guarantee all finders will notice the new module's existence.
Antoine Pitrouc541f8e2012-02-20 01:48:16 +0100130
131 .. versionadded:: 3.3
132
Brett Cannon3fe35e62013-06-14 15:04:26 -0400133.. function:: reload(module)
134
135 Reload a previously imported *module*. The argument must be a module object,
136 so it must have been successfully imported before. This is useful if you
137 have edited the module source file using an external editor and want to try
138 out the new version without leaving the Python interpreter. The return value
Brett Cannon8ad37862013-10-25 13:52:46 -0400139 is the module object (which can be different if re-importing causes a
140 different object to be placed in :data:`sys.modules`).
Brett Cannon3fe35e62013-06-14 15:04:26 -0400141
Brett Cannon8ad37862013-10-25 13:52:46 -0400142 When :func:`reload` is executed:
Brett Cannon3fe35e62013-06-14 15:04:26 -0400143
Larry Hastings3732ed22014-03-15 21:13:56 -0700144 * Python module's code is recompiled and the module-level code re-executed,
Brett Cannon3fe35e62013-06-14 15:04:26 -0400145 defining a new set of objects which are bound to names in the module's
146 dictionary by reusing the :term:`loader` which originally loaded the
147 module. The ``init`` function of extension modules is not called a second
148 time.
149
150 * As with all other objects in Python the old objects are only reclaimed
151 after their reference counts drop to zero.
152
153 * The names in the module namespace are updated to point to any new or
154 changed objects.
155
156 * Other references to the old objects (such as names external to the module) are
157 not rebound to refer to the new objects and must be updated in each namespace
158 where they occur if that is desired.
159
160 There are a number of other caveats:
161
162 If a module is syntactically correct but its initialization fails, the first
163 :keyword:`import` statement for it does not bind its name locally, but does
164 store a (partially initialized) module object in ``sys.modules``. To reload
165 the module you must first :keyword:`import` it again (this will bind the name
166 to the partially initialized module object) before you can :func:`reload` it.
167
168 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
714.. attribute:: OPTIMIZED_BYTECODE_SUFFIXES
715
716 A list of strings representing the file suffixes for optimized bytecode
717 modules.
718
719 .. versionadded:: 3.3
720
721.. attribute:: BYTECODE_SUFFIXES
722
723 A list of strings representing the recognized file suffixes for bytecode
724 modules. Set to either :attr:`DEBUG_BYTECODE_SUFFIXES` or
725 :attr:`OPTIMIZED_BYTECODE_SUFFIXES` based on whether ``__debug__`` is true.
726
727 .. versionadded:: 3.3
728
729.. attribute:: EXTENSION_SUFFIXES
730
Nick Coghlan76e07702012-07-18 23:14:57 +1000731 A list of strings representing the recognized file suffixes for
Brett Cannoncb66eb02012-05-11 12:58:42 -0400732 extension modules.
733
734 .. versionadded:: 3.3
735
Nick Coghlanc5afd422012-07-18 23:59:08 +1000736.. function:: all_suffixes()
Nick Coghlan76e07702012-07-18 23:14:57 +1000737
738 Returns a combined list of strings representing all file suffixes for
Nick Coghlanc5afd422012-07-18 23:59:08 +1000739 modules recognized by the standard import machinery. This is a
Nick Coghlan76e07702012-07-18 23:14:57 +1000740 helper for code which simply needs to know if a filesystem path
Nick Coghlanc5afd422012-07-18 23:59:08 +1000741 potentially refers to a module without needing any details on the kind
742 of module (for example, :func:`inspect.getmodulename`)
Nick Coghlan76e07702012-07-18 23:14:57 +1000743
744 .. versionadded:: 3.3
745
746
Brett Cannon78246b62009-01-25 04:56:30 +0000747.. class:: BuiltinImporter
748
Brett Cannon2a922ed2009-03-09 03:35:50 +0000749 An :term:`importer` for built-in modules. All known built-in modules are
750 listed in :data:`sys.builtin_module_names`. This class implements the
Nick Coghlan8a9080f2012-08-02 21:26:03 +1000751 :class:`importlib.abc.MetaPathFinder` and
752 :class:`importlib.abc.InspectLoader` ABCs.
Brett Cannon78246b62009-01-25 04:56:30 +0000753
754 Only class methods are defined by this class to alleviate the need for
755 instantiation.
756
Eric Snowca2d8542013-12-16 23:06:52 -0700757 .. note::
758 Due to limitations in the extension module C-API, for now
759 BuiltinImporter does not implement :meth:`Loader.exec_module`.
760
Brett Cannon78246b62009-01-25 04:56:30 +0000761
762.. class:: FrozenImporter
763
Brett Cannon2a922ed2009-03-09 03:35:50 +0000764 An :term:`importer` for frozen modules. This class implements the
Nick Coghlan8a9080f2012-08-02 21:26:03 +1000765 :class:`importlib.abc.MetaPathFinder` and
766 :class:`importlib.abc.InspectLoader` ABCs.
Brett Cannon78246b62009-01-25 04:56:30 +0000767
768 Only class methods are defined by this class to alleviate the need for
769 instantiation.
770
Brett Cannondebb98d2009-02-16 04:18:01 +0000771
Nick Coghlanff794862012-08-02 21:45:24 +1000772.. class:: WindowsRegistryFinder
773
774 :term:`Finder` for modules declared in the Windows registry. This class
Nick Coghlan49417742012-08-02 23:03:58 +1000775 implements the :class:`importlib.abc.Finder` ABC.
Nick Coghlanff794862012-08-02 21:45:24 +1000776
777 Only class methods are defined by this class to alleviate the need for
778 instantiation.
779
780 .. versionadded:: 3.3
781
782
Brett Cannondebb98d2009-02-16 04:18:01 +0000783.. class:: PathFinder
784
Brett Cannon1b799182012-08-17 14:08:24 -0400785 A :term:`Finder` for :data:`sys.path` and package ``__path__`` attributes.
786 This class implements the :class:`importlib.abc.MetaPathFinder` ABC.
Brett Cannondebb98d2009-02-16 04:18:01 +0000787
Brett Cannon1b799182012-08-17 14:08:24 -0400788 Only class methods are defined by this class to alleviate the need for
789 instantiation.
Brett Cannondebb98d2009-02-16 04:18:01 +0000790
Eric Snowca2d8542013-12-16 23:06:52 -0700791 .. classmethod:: find_spec(fullname, path=None, target=None)
792
793 Class method that attempts to find a :term:`spec <module spec>`
794 for the module specified by *fullname* on :data:`sys.path` or, if
795 defined, on *path*. For each path entry that is searched,
796 :data:`sys.path_importer_cache` is checked. If a non-false object
797 is found then it is used as the :term:`path entry finder` to look
798 for the module being searched for. If no entry is found in
799 :data:`sys.path_importer_cache`, then :data:`sys.path_hooks` is
800 searched for a finder for the path entry and, if found, is stored
801 in :data:`sys.path_importer_cache` along with being queried about
802 the module. If no finder is ever found then ``None`` is both
803 stored in the cache and returned.
804
805 .. versionadded:: 3.4
806
Brett Cannonb6e25562014-11-21 12:19:28 -0500807 .. versionchanged:: 3.5
808 If the current working directory -- represented by an empty string --
809 is no longer valid then ``None`` is returned but no value is cached
810 in :data:`sys.path_importer_cache`.
811
Brett Cannon1b799182012-08-17 14:08:24 -0400812 .. classmethod:: find_module(fullname, path=None)
Brett Cannondebb98d2009-02-16 04:18:01 +0000813
Eric Snowca2d8542013-12-16 23:06:52 -0700814 A legacy wrapper around :meth:`find_spec`.
815
816 .. deprecated:: 3.4
817 Use :meth:`find_spec` instead.
Brett Cannond2e7b332009-02-17 02:45:03 +0000818
Brett Cannonf4dc9202012-08-10 12:21:12 -0400819 .. classmethod:: invalidate_caches()
820
Eric Snowca2d8542013-12-16 23:06:52 -0700821 Calls :meth:`importlib.abc.PathEntryFinder.invalidate_caches` on all
822 finders stored in :attr:`sys.path_importer_cache`.
Brett Cannonf4dc9202012-08-10 12:21:12 -0400823
Eric Snowca2d8542013-12-16 23:06:52 -0700824 .. versionchanged:: 3.4
825 Calls objects in :data:`sys.path_hooks` with the current working
826 directory for ``''`` (i.e. the empty string).
Brett Cannon27e27f72013-10-18 11:39:04 -0400827
Brett Cannond2e7b332009-02-17 02:45:03 +0000828
Brett Cannon938d44d2012-04-22 19:58:33 -0400829.. class:: FileFinder(path, \*loader_details)
830
Nick Coghlan8a9080f2012-08-02 21:26:03 +1000831 A concrete implementation of :class:`importlib.abc.PathEntryFinder` which
832 caches results from the file system.
Brett Cannon938d44d2012-04-22 19:58:33 -0400833
834 The *path* argument is the directory for which the finder is in charge of
835 searching.
836
Brett Cannonac9f2f32012-08-10 13:47:54 -0400837 The *loader_details* argument is a variable number of 2-item tuples each
838 containing a loader and a sequence of file suffixes the loader recognizes.
Brett Cannon29b2f172013-06-21 18:31:55 -0400839 The loaders are expected to be callables which accept two arguments of
840 the module's name and the path to the file found.
Brett Cannon938d44d2012-04-22 19:58:33 -0400841
842 The finder will cache the directory contents as necessary, making stat calls
843 for each module search to verify the cache is not outdated. Because cache
844 staleness relies upon the granularity of the operating system's state
845 information of the file system, there is a potential race condition of
846 searching for a module, creating a new file, and then searching for the
847 module the new file represents. If the operations happen fast enough to fit
848 within the granularity of stat calls, then the module search will fail. To
849 prevent this from happening, when you create a module dynamically, make sure
850 to call :func:`importlib.invalidate_caches`.
851
852 .. versionadded:: 3.3
853
854 .. attribute:: path
855
856 The path the finder will search in.
857
Eric Snowca2d8542013-12-16 23:06:52 -0700858 .. method:: find_spec(fullname, target=None)
859
860 Attempt to find the spec to handle *fullname* within :attr:`path`.
861
862 .. versionadded:: 3.4
863
Brett Cannon1d753822013-06-16 19:06:55 -0400864 .. method:: find_loader(fullname)
Brett Cannon938d44d2012-04-22 19:58:33 -0400865
866 Attempt to find the loader to handle *fullname* within :attr:`path`.
867
868 .. method:: invalidate_caches()
869
870 Clear out the internal cache.
871
872 .. classmethod:: path_hook(\*loader_details)
873
874 A class method which returns a closure for use on :attr:`sys.path_hooks`.
875 An instance of :class:`FileFinder` is returned by the closure using the
876 path argument given to the closure directly and *loader_details*
877 indirectly.
878
879 If the argument to the closure is not an existing directory,
880 :exc:`ImportError` is raised.
881
882
883.. class:: SourceFileLoader(fullname, path)
884
885 A concrete implementation of :class:`importlib.abc.SourceLoader` by
886 subclassing :class:`importlib.abc.FileLoader` and providing some concrete
887 implementations of other methods.
888
889 .. versionadded:: 3.3
890
891 .. attribute:: name
892
893 The name of the module that this loader will handle.
894
895 .. attribute:: path
896
897 The path to the source file.
898
899 .. method:: is_package(fullname)
900
901 Return true if :attr:`path` appears to be for a package.
902
903 .. method:: path_stats(path)
904
905 Concrete implementation of :meth:`importlib.abc.SourceLoader.path_stats`.
906
907 .. method:: set_data(path, data)
908
909 Concrete implementation of :meth:`importlib.abc.SourceLoader.set_data`.
910
Brett Cannon062fcac2014-05-09 11:55:49 -0400911 .. method:: load_module(name=None)
912
913 Concrete implementation of :meth:`importlib.abc.Loader.load_module` where
914 specifying the name of the module to load is optional.
915
Brett Cannon938d44d2012-04-22 19:58:33 -0400916
Marc-Andre Lemburg4fe29c92012-04-25 02:31:37 +0200917.. class:: SourcelessFileLoader(fullname, path)
Brett Cannon938d44d2012-04-22 19:58:33 -0400918
919 A concrete implementation of :class:`importlib.abc.FileLoader` which can
920 import bytecode files (i.e. no source code files exist).
921
Marc-Andre Lemburg4fe29c92012-04-25 02:31:37 +0200922 Please note that direct use of bytecode files (and thus not source code
923 files) inhibits your modules from being usable by all Python
924 implementations or new versions of Python which change the bytecode
925 format.
Brett Cannon938d44d2012-04-22 19:58:33 -0400926
927 .. versionadded:: 3.3
928
929 .. attribute:: name
930
931 The name of the module the loader will handle.
932
933 .. attribute:: path
934
935 The path to the bytecode file.
936
937 .. method:: is_package(fullname)
938
939 Determines if the module is a package based on :attr:`path`.
940
941 .. method:: get_code(fullname)
942
943 Returns the code object for :attr:`name` created from :attr:`path`.
944
945 .. method:: get_source(fullname)
946
947 Returns ``None`` as bytecode files have no source when this loader is
948 used.
949
Brett Cannon062fcac2014-05-09 11:55:49 -0400950 .. method:: load_module(name=None)
951
952 Concrete implementation of :meth:`importlib.abc.Loader.load_module` where
953 specifying the name of the module to load is optional.
954
Brett Cannon938d44d2012-04-22 19:58:33 -0400955
956.. class:: ExtensionFileLoader(fullname, path)
957
Eric Snow51794452013-10-03 12:08:55 -0600958 A concrete implementation of :class:`importlib.abc.ExecutionLoader` for
Brett Cannon938d44d2012-04-22 19:58:33 -0400959 extension modules.
960
961 The *fullname* argument specifies the name of the module the loader is to
962 support. The *path* argument is the path to the extension module's file.
963
964 .. versionadded:: 3.3
965
966 .. attribute:: name
967
968 Name of the module the loader supports.
969
970 .. attribute:: path
971
972 Path to the extension module.
973
Brett Cannon062fcac2014-05-09 11:55:49 -0400974 .. method:: load_module(name=None)
Brett Cannon938d44d2012-04-22 19:58:33 -0400975
Brett Cannonc0499522012-05-11 14:48:41 -0400976 Loads the extension module if and only if *fullname* is the same as
977 :attr:`name` or is ``None``.
Brett Cannon938d44d2012-04-22 19:58:33 -0400978
Eric Snowca2d8542013-12-16 23:06:52 -0700979 .. note::
980 Due to limitations in the extension module C-API, for now
981 ExtensionFileLoader does not implement :meth:`Loader.exec_module`.
982
Brett Cannon938d44d2012-04-22 19:58:33 -0400983 .. method:: is_package(fullname)
984
Brett Cannonac9f2f32012-08-10 13:47:54 -0400985 Returns ``True`` if the file path points to a package's ``__init__``
986 module based on :attr:`EXTENSION_SUFFIXES`.
Brett Cannon938d44d2012-04-22 19:58:33 -0400987
988 .. method:: get_code(fullname)
989
990 Returns ``None`` as extension modules lack a code object.
991
992 .. method:: get_source(fullname)
993
994 Returns ``None`` as extension modules do not have source code.
995
Eric Snow51794452013-10-03 12:08:55 -0600996 .. method:: get_filename(fullname)
997
998 Returns :attr:`path`.
999
Eric Snowdcd01b42013-10-04 20:35:34 -06001000 .. versionadded:: 3.4
1001
Brett Cannon938d44d2012-04-22 19:58:33 -04001002
Eric Snowb523f842013-11-22 09:05:39 -07001003.. class:: ModuleSpec(name, loader, *, origin=None, loader_state=None, is_package=None)
1004
1005 A specification for a module's import-system-related state.
1006
1007 .. versionadded:: 3.4
1008
1009 .. attribute:: name
1010
1011 (``__name__``)
1012
1013 A string for the fully-qualified name of the module.
1014
1015 .. attribute:: loader
1016
1017 (``__loader__``)
1018
1019 The loader to use for loading. For namespace packages this should be
1020 set to None.
1021
1022 .. attribute:: origin
1023
1024 (``__file__``)
1025
1026 Name of the place from which the module is loaded, e.g. "builtin" for
1027 built-in modules and the filename for modules loaded from source.
1028 Normally "origin" should be set, but it may be None (the default)
1029 which indicates it is unspecified.
1030
1031 .. attribute:: submodule_search_locations
1032
1033 (``__path__``)
1034
1035 List of strings for where to find submodules, if a package (None
1036 otherwise).
1037
1038 .. attribute:: loader_state
1039
1040 Container of extra module-specific data for use during loading (or
1041 None).
1042
1043 .. attribute:: cached
1044
1045 (``__cached__``)
1046
1047 String for where the compiled module should be stored (or None).
1048
1049 .. attribute:: parent
1050
1051 (``__package__``)
1052
1053 (Read-only) Fully-qualified name of the package to which the module
1054 belongs as a submodule (or None).
1055
1056 .. attribute:: has_location
1057
Eric Snowb282b3d2013-12-10 22:16:41 -07001058 Boolean indicating whether or not the module's "origin"
Eric Snowb523f842013-11-22 09:05:39 -07001059 attribute refers to a loadable location.
1060
Brett Cannond2e7b332009-02-17 02:45:03 +00001061:mod:`importlib.util` -- Utility code for importers
1062---------------------------------------------------
1063
1064.. module:: importlib.util
Brett Cannon75321e82012-03-02 11:58:25 -05001065 :synopsis: Utility code for importers
Brett Cannond2e7b332009-02-17 02:45:03 +00001066
1067This module contains the various objects that help in the construction of
1068an :term:`importer`.
1069
Brett Cannon05a647d2013-06-14 19:02:34 -04001070.. attribute:: MAGIC_NUMBER
1071
1072 The bytes which represent the bytecode version number. If you need help with
1073 loading/writing bytecode then consider :class:`importlib.abc.SourceLoader`.
1074
1075 .. versionadded:: 3.4
1076
Brett Cannona3c96152013-06-14 22:26:30 -04001077.. function:: cache_from_source(path, debug_override=None)
1078
1079 Return the :pep:`3147` path to the byte-compiled file associated with the
1080 source *path*. For example, if *path* is ``/foo/bar/baz.py`` the return
1081 value would be ``/foo/bar/__pycache__/baz.cpython-32.pyc`` for Python 3.2.
1082 The ``cpython-32`` string comes from the current magic tag (see
1083 :func:`get_tag`; if :attr:`sys.implementation.cache_tag` is not defined then
1084 :exc:`NotImplementedError` will be raised). The returned path will end in
Serhiy Storchaka0e90e992013-11-29 12:19:53 +02001085 ``.pyc`` when ``__debug__`` is ``True`` or ``.pyo`` for an optimized Python
1086 (i.e. ``__debug__`` is ``False``). By passing in ``True`` or ``False`` for
Brett Cannona3c96152013-06-14 22:26:30 -04001087 *debug_override* you can override the system's value for ``__debug__`` for
1088 extension selection.
1089
1090 *path* need not exist.
1091
1092 .. versionadded:: 3.4
1093
1094
1095.. function:: source_from_cache(path)
1096
1097 Given the *path* to a :pep:`3147` file name, return the associated source code
1098 file path. For example, if *path* is
1099 ``/foo/bar/__pycache__/baz.cpython-32.pyc`` the returned path would be
1100 ``/foo/bar/baz.py``. *path* need not exist, however if it does not conform
1101 to :pep:`3147` format, a ``ValueError`` is raised. If
1102 :attr:`sys.implementation.cache_tag` is not defined,
1103 :exc:`NotImplementedError` is raised.
1104
1105 .. versionadded:: 3.4
1106
Brett Cannonf24fecd2013-06-16 18:37:53 -04001107.. function:: decode_source(source_bytes)
1108
1109 Decode the given bytes representing source code and return it as a string
1110 with universal newlines (as required by
1111 :meth:`importlib.abc.InspectLoader.get_source`).
1112
1113 .. versionadded:: 3.4
1114
Brett Cannond200bf52012-05-13 13:45:09 -04001115.. function:: resolve_name(name, package)
1116
1117 Resolve a relative module name to an absolute one.
1118
1119 If **name** has no leading dots, then **name** is simply returned. This
1120 allows for usage such as
1121 ``importlib.util.resolve_name('sys', __package__)`` without doing a
1122 check to see if the **package** argument is needed.
1123
1124 :exc:`ValueError` is raised if **name** is a relative module name but
1125 package is a false value (e.g. ``None`` or the empty string).
1126 :exc:`ValueError` is also raised a relative name would escape its containing
1127 package (e.g. requesting ``..bacon`` from within the ``spam`` package).
1128
1129 .. versionadded:: 3.3
1130
Eric Snow6029e082014-01-25 15:32:46 -07001131.. function:: find_spec(name, package=None)
1132
1133 Find the :term:`spec <module spec>` for a module, optionally relative to
1134 the specified **package** name. If the module is in :attr:`sys.modules`,
1135 then ``sys.modules[name].__spec__`` is returned (unless the spec would be
1136 ``None`` or is not set, in which case :exc:`ValueError` is raised).
1137 Otherwise a search using :attr:`sys.meta_path` is done. ``None`` is
1138 returned if no spec is found.
1139
1140 If **name** is for a submodule (contains a dot), the parent module is
1141 automatically imported.
1142
1143 **name** and **package** work the same as for :func:`import_module`.
1144
1145 .. versionadded:: 3.4
1146
Brett Cannon2a17bde2014-05-30 14:55:29 -04001147.. function:: module_from_spec(spec)
1148
Brett Cannon02d84542015-01-09 11:39:21 -05001149 Create a new module based on **spec** and ``spec.loader.create_module()``.
Brett Cannon2a17bde2014-05-30 14:55:29 -04001150
Brett Cannon02d84542015-01-09 11:39:21 -05001151 If ``spec.loader.create_module()`` does not return ``None``, then any
Brett Cannon2a17bde2014-05-30 14:55:29 -04001152 pre-existing attributes will not be reset. Also, no :exc:`AttributeError`
1153 will be raised if triggered while accessing **spec** or setting an attribute
1154 on the module.
1155
1156 This function is preferred over using :class:`types.ModuleType` to create a
1157 new module as **spec** is used to set as many import-controlled attributes on
1158 the module as possible.
1159
1160 .. versionadded:: 3.5
1161
Georg Brandl8a1caa22010-07-29 16:01:11 +00001162.. decorator:: module_for_loader
Brett Cannond2e7b332009-02-17 02:45:03 +00001163
Brett Cannona22faca2013-05-28 17:50:14 -04001164 A :term:`decorator` for :meth:`importlib.abc.Loader.load_module`
Guido van Rossum09613542009-03-30 20:34:57 +00001165 to handle selecting the proper
Brett Cannond2e7b332009-02-17 02:45:03 +00001166 module object to load with. The decorated method is expected to have a call
Brett Cannon2a922ed2009-03-09 03:35:50 +00001167 signature taking two positional arguments
1168 (e.g. ``load_module(self, module)``) for which the second argument
Guido van Rossum09613542009-03-30 20:34:57 +00001169 will be the module **object** to be used by the loader.
Brett Cannonefad00d2012-04-27 17:27:14 -04001170 Note that the decorator will not work on static methods because of the
1171 assumption of two arguments.
Brett Cannond2e7b332009-02-17 02:45:03 +00001172
Guido van Rossum09613542009-03-30 20:34:57 +00001173 The decorated method will take in the **name** of the module to be loaded
1174 as expected for a :term:`loader`. If the module is not found in
Brett Cannon3dc48d62013-05-28 18:35:54 -04001175 :data:`sys.modules` then a new one is constructed. Regardless of where the
1176 module came from, :attr:`__loader__` set to **self** and :attr:`__package__`
1177 is set based on what :meth:`importlib.abc.InspectLoader.is_package` returns
1178 (if available). These attributes are set unconditionally to support
1179 reloading.
Brett Cannonefad00d2012-04-27 17:27:14 -04001180
1181 If an exception is raised by the decorated method and a module was added to
Brett Cannona87e31c2013-09-13 16:52:19 -04001182 :data:`sys.modules`, then the module will be removed to prevent a partially
1183 initialized module from being in left in :data:`sys.modules`. If the module
1184 was already in :data:`sys.modules` then it is left alone.
Brett Cannond2e7b332009-02-17 02:45:03 +00001185
Brett Cannonefad00d2012-04-27 17:27:14 -04001186 .. versionchanged:: 3.3
Georg Brandl61063cc2012-06-24 22:48:30 +02001187 :attr:`__loader__` and :attr:`__package__` are automatically set
1188 (when possible).
Brett Cannon57b46f52009-03-02 14:38:26 +00001189
Brett Cannon3dc48d62013-05-28 18:35:54 -04001190 .. versionchanged:: 3.4
Brett Cannon0dbb4c72013-05-31 18:56:47 -04001191 Set :attr:`__name__`, :attr:`__loader__` :attr:`__package__`
1192 unconditionally to support reloading.
1193
1194 .. deprecated:: 3.4
Eric Snowb523f842013-11-22 09:05:39 -07001195 The import machinery now directly performs all the functionality
1196 provided by this function.
Brett Cannon3dc48d62013-05-28 18:35:54 -04001197
Georg Brandl8a1caa22010-07-29 16:01:11 +00001198.. decorator:: set_loader
Brett Cannon2cf03a82009-03-10 05:17:37 +00001199
Brett Cannona22faca2013-05-28 17:50:14 -04001200 A :term:`decorator` for :meth:`importlib.abc.Loader.load_module`
1201 to set the :attr:`__loader__`
1202 attribute on the returned module. If the attribute is already set the
1203 decorator does nothing. It is assumed that the first positional argument to
1204 the wrapped method (i.e. ``self``) is what :attr:`__loader__` should be set
1205 to.
Brett Cannon2cf03a82009-03-10 05:17:37 +00001206
Brett Cannon4802bec2013-03-13 10:41:36 -07001207 .. versionchanged:: 3.4
Brett Cannon4c14b5d2013-05-04 13:56:58 -04001208 Set ``__loader__`` if set to ``None``, as if the attribute does not
Brett Cannon4802bec2013-03-13 10:41:36 -07001209 exist.
1210
Eric Snowca2d8542013-12-16 23:06:52 -07001211 .. deprecated:: 3.4
1212 The import machinery takes care of this automatically.
1213
Georg Brandl8a1caa22010-07-29 16:01:11 +00001214.. decorator:: set_package
Brett Cannon57b46f52009-03-02 14:38:26 +00001215
Brett Cannona22faca2013-05-28 17:50:14 -04001216 A :term:`decorator` for :meth:`importlib.abc.Loader.load_module` to set the :attr:`__package__` attribute on the returned module. If :attr:`__package__`
1217 is set and has a value other than ``None`` it will not be changed.
Brett Cannon16248a42009-04-01 20:47:14 +00001218
Eric Snowca2d8542013-12-16 23:06:52 -07001219 .. deprecated:: 3.4
1220 The import machinery takes care of this automatically.
1221
Eric Snowb523f842013-11-22 09:05:39 -07001222.. function:: spec_from_loader(name, loader, *, origin=None, is_package=None)
1223
1224 A factory function for creating a :class:`ModuleSpec` instance based
1225 on a loader. The parameters have the same meaning as they do for
1226 ModuleSpec. The function uses available :term:`loader` APIs, such as
1227 :meth:`InspectLoader.is_package`, to fill in any missing
1228 information on the spec.
1229
1230 .. versionadded:: 3.4
1231
1232.. function:: spec_from_file_location(name, location, *, loader=None, submodule_search_locations=None)
1233
1234 A factory function for creating a :class:`ModuleSpec` instance based
1235 on the path to a file. Missing information will be filled in on the
1236 spec by making use of loader APIs and by the implication that the
1237 module will be file-based.
1238
1239 .. versionadded:: 3.4
Brett Cannona04dbe42014-04-04 13:53:38 -04001240
1241.. class:: LazyLoader(loader)
1242
1243 A class which postpones the execution of the loader of a module until the
1244 module has an attribute accessed.
1245
1246 This class **only** works with loaders that define
Brett Cannon02d84542015-01-09 11:39:21 -05001247 :meth:`~importlib.abc.Loader.exec_module` as control over what module type
1248 is used for the module is required. For those same reasons, the loader's
1249 :meth:`~importlib.abc.Loader.create_module` method will be ignored (i.e., the
1250 loader's method should only return ``None``). Finally,
Brett Cannona04dbe42014-04-04 13:53:38 -04001251 modules which substitute the object placed into :attr:`sys.modules` will
1252 not work as there is no way to properly replace the module references
1253 throughout the interpreter safely; :exc:`ValueError` is raised if such a
1254 substitution is detected.
1255
1256 .. note::
1257 For projects where startup time is critical, this class allows for
1258 potentially minimizing the cost of loading a module if it is never used.
1259 For projects where startup time is not essential then use of this class is
1260 **heavily** discouraged due to error messages created during loading being
1261 postponed and thus occurring out of context.
1262
1263 .. versionadded:: 3.5
1264
1265 .. classmethod:: factory(loader)
1266
1267 A static method which returns a callable that creates a lazy loader. This
1268 is meant to be used in situations where the loader is passed by class
1269 instead of by instance.
1270 ::
1271
1272 suffixes = importlib.machinery.SOURCE_SUFFIXES
1273 loader = importlib.machinery.SourceFileLoader
1274 lazy_loader = importlib.util.LazyLoader.factory(loader)
1275 finder = importlib.machinery.FileFinder(path, [(lazy_loader, suffixes)])