Serhiy Storchaka | 29b0a26 | 2016-12-04 10:20:55 +0200 | [diff] [blame] | 1 | :mod:`importlib` --- The implementation of :keyword:`import` |
| 2 | ============================================================ |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 3 | |
| 4 | .. module:: importlib |
Brett Cannon | 07fbd78 | 2014-02-06 09:46:08 -0500 | [diff] [blame] | 5 | :synopsis: The implementation of the import machinery. |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 6 | |
| 7 | .. moduleauthor:: Brett Cannon <brett@python.org> |
| 8 | .. sectionauthor:: Brett Cannon <brett@python.org> |
| 9 | |
| 10 | .. versionadded:: 3.1 |
| 11 | |
Terry Jan Reedy | fa089b9 | 2016-06-11 15:02:54 -0400 | [diff] [blame] | 12 | **Source code:** :source:`Lib/importlib/__init__.py` |
| 13 | |
| 14 | -------------- |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 15 | |
| 16 | Introduction |
| 17 | ------------ |
| 18 | |
Brett Cannon | 07fbd78 | 2014-02-06 09:46:08 -0500 | [diff] [blame] | 19 | The purpose of the :mod:`importlib` package is two-fold. One is to provide the |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 20 | implementation of the :keyword:`import` statement (and thus, by extension, the |
| 21 | :func:`__import__` function) in Python source code. This provides an |
Tarek Ziadé | 434caaa | 2009-05-14 12:48:09 +0000 | [diff] [blame] | 22 | implementation of :keyword:`import` which is portable to any Python |
Brett Cannon | 07fbd78 | 2014-02-06 09:46:08 -0500 | [diff] [blame] | 23 | interpreter. This also provides an implementation which is easier to |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 24 | comprehend than one implemented in a programming language other than Python. |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 25 | |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 26 | Two, the components to implement :keyword:`import` are exposed in this |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 27 | package, making it easier for users to create their own custom objects (known |
Brett Cannon | debb98d | 2009-02-16 04:18:01 +0000 | [diff] [blame] | 28 | generically as an :term:`importer`) to participate in the import process. |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 29 | |
| 30 | .. seealso:: |
| 31 | |
| 32 | :ref:`import` |
| 33 | The language reference for the :keyword:`import` statement. |
| 34 | |
Benjamin Peterson | 60dbed1 | 2017-09-05 16:24:39 -0700 | [diff] [blame] | 35 | `Packages specification <https://www.python.org/doc/essays/packages/>`__ |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 36 | Original specification of packages. Some semantics have changed since |
Georg Brandl | 375aec2 | 2011-01-15 17:03:02 +0000 | [diff] [blame] | 37 | the writing of this document (e.g. redirecting based on ``None`` |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 38 | in :data:`sys.modules`). |
| 39 | |
| 40 | The :func:`.__import__` function |
Brett Cannon | 0e13c94 | 2010-06-29 18:26:11 +0000 | [diff] [blame] | 41 | The :keyword:`import` statement is syntactic sugar for this function. |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 42 | |
| 43 | :pep:`235` |
| 44 | Import on Case-Insensitive Platforms |
| 45 | |
| 46 | :pep:`263` |
| 47 | Defining Python Source Code Encodings |
| 48 | |
| 49 | :pep:`302` |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 50 | New Import Hooks |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 51 | |
| 52 | :pep:`328` |
| 53 | Imports: Multi-Line and Absolute/Relative |
| 54 | |
| 55 | :pep:`366` |
| 56 | Main module explicit relative imports |
| 57 | |
Eric Snow | 338502b | 2016-05-28 11:56:53 -0600 | [diff] [blame] | 58 | :pep:`420` |
| 59 | Implicit namespace packages |
| 60 | |
Brett Cannon | 07fbd78 | 2014-02-06 09:46:08 -0500 | [diff] [blame] | 61 | :pep:`451` |
| 62 | A ModuleSpec Type for the Import System |
| 63 | |
Nick Coghlan | d5cacbb | 2015-05-23 22:24:10 +1000 | [diff] [blame] | 64 | :pep:`488` |
| 65 | Elimination of PYO files |
| 66 | |
| 67 | :pep:`489` |
| 68 | Multi-phase extension module initialization |
| 69 | |
Benjamin Peterson | 42aa93b | 2017-12-09 10:26:52 -0800 | [diff] [blame] | 70 | :pep:`552` |
| 71 | Deterministic pycs |
| 72 | |
Brett Cannon | 8917d5e | 2010-01-13 19:21:00 +0000 | [diff] [blame] | 73 | :pep:`3120` |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 74 | Using UTF-8 as the Default Source Encoding |
| 75 | |
Brett Cannon | 30b7a90 | 2010-06-27 21:49:22 +0000 | [diff] [blame] | 76 | :pep:`3147` |
| 77 | PYC Repository Directories |
| 78 | |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 79 | |
| 80 | Functions |
| 81 | --------- |
| 82 | |
Brett Cannon | cb4996a | 2012-08-06 16:34:44 -0400 | [diff] [blame] | 83 | .. function:: __import__(name, globals=None, locals=None, fromlist=(), level=0) |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 84 | |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 85 | An implementation of the built-in :func:`__import__` function. |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 86 | |
Brett Cannon | 3fa8422 | 2015-02-20 10:34:20 -0500 | [diff] [blame] | 87 | .. note:: |
| 88 | Programmatic importing of modules should use :func:`import_module` |
| 89 | instead of this function. |
| 90 | |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 91 | .. function:: import_module(name, package=None) |
| 92 | |
Brett Cannon | 33418c8 | 2009-01-22 18:37:20 +0000 | [diff] [blame] | 93 | Import a module. The *name* argument specifies what module to |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 94 | import in absolute or relative terms |
| 95 | (e.g. either ``pkg.mod`` or ``..mod``). If the name is |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 96 | specified in relative terms, then the *package* argument must be set to |
| 97 | the name of the package which is to act as the anchor for resolving the |
Brett Cannon | afccd63 | 2009-01-20 02:21:27 +0000 | [diff] [blame] | 98 | package name (e.g. ``import_module('..mod', 'pkg.subpkg')`` will import |
Brett Cannon | 2c318a1 | 2009-02-07 01:15:27 +0000 | [diff] [blame] | 99 | ``pkg.mod``). |
Brett Cannon | 78246b6 | 2009-01-25 04:56:30 +0000 | [diff] [blame] | 100 | |
Brett Cannon | 2c318a1 | 2009-02-07 01:15:27 +0000 | [diff] [blame] | 101 | The :func:`import_module` function acts as a simplifying wrapper around |
Brett Cannon | 9f4cb1c | 2009-04-01 23:26:47 +0000 | [diff] [blame] | 102 | :func:`importlib.__import__`. This means all semantics of the function are |
Brett Cannon | 3fa8422 | 2015-02-20 10:34:20 -0500 | [diff] [blame] | 103 | derived from :func:`importlib.__import__`. The most important difference |
| 104 | between these two functions is that :func:`import_module` returns the |
| 105 | specified package or module (e.g. ``pkg.mod``), while :func:`__import__` |
| 106 | returns the top-level package or module (e.g. ``pkg``). |
| 107 | |
| 108 | If you are dynamically importing a module that was created since the |
| 109 | interpreter began execution (e.g., created a Python source file), you may |
| 110 | need to call :func:`invalidate_caches` in order for the new module to be |
| 111 | noticed by the import system. |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 112 | |
Brett Cannon | 98620d8 | 2013-12-13 13:57:41 -0500 | [diff] [blame] | 113 | .. versionchanged:: 3.3 |
| 114 | Parent packages are automatically imported. |
| 115 | |
Brett Cannon | ee78a2b | 2012-05-12 17:43:17 -0400 | [diff] [blame] | 116 | .. function:: find_loader(name, path=None) |
| 117 | |
| 118 | Find the loader for a module, optionally within the specified *path*. If the |
| 119 | module is in :attr:`sys.modules`, then ``sys.modules[name].__loader__`` is |
Brett Cannon | 3279923 | 2013-03-13 11:09:08 -0700 | [diff] [blame] | 120 | returned (unless the loader would be ``None`` or is not set, in which case |
Brett Cannon | ee78a2b | 2012-05-12 17:43:17 -0400 | [diff] [blame] | 121 | :exc:`ValueError` is raised). Otherwise a search using :attr:`sys.meta_path` |
| 122 | is done. ``None`` is returned if no loader is found. |
| 123 | |
Benjamin Peterson | f7e2ea2 | 2016-09-05 14:02:59 -0700 | [diff] [blame] | 124 | A dotted name does not have its parents implicitly imported as that requires |
Brett Cannon | 56b4ca7 | 2012-11-17 09:30:55 -0500 | [diff] [blame] | 125 | loading them and that may not be desired. To properly import a submodule you |
| 126 | will need to import all parent packages of the submodule and use the correct |
| 127 | argument to *path*. |
Brett Cannon | ee78a2b | 2012-05-12 17:43:17 -0400 | [diff] [blame] | 128 | |
Brett Cannon | 3279923 | 2013-03-13 11:09:08 -0700 | [diff] [blame] | 129 | .. versionadded:: 3.3 |
| 130 | |
| 131 | .. versionchanged:: 3.4 |
| 132 | If ``__loader__`` is not set, raise :exc:`ValueError`, just like when the |
| 133 | attribute is set to ``None``. |
| 134 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 135 | .. deprecated:: 3.4 |
Eric Snow | 6029e08 | 2014-01-25 15:32:46 -0700 | [diff] [blame] | 136 | Use :func:`importlib.util.find_spec` instead. |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 137 | |
Antoine Pitrou | c541f8e | 2012-02-20 01:48:16 +0100 | [diff] [blame] | 138 | .. function:: invalidate_caches() |
| 139 | |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 140 | Invalidate the internal caches of finders stored at |
| 141 | :data:`sys.meta_path`. If a finder implements ``invalidate_caches()`` then it |
Brett Cannon | 4067aa2 | 2013-04-27 23:20:32 -0400 | [diff] [blame] | 142 | will be called to perform the invalidation. This function should be called |
| 143 | if any modules are created/installed while your program is running to |
| 144 | guarantee all finders will notice the new module's existence. |
Antoine Pitrou | c541f8e | 2012-02-20 01:48:16 +0100 | [diff] [blame] | 145 | |
| 146 | .. versionadded:: 3.3 |
| 147 | |
Brett Cannon | 3fe35e6 | 2013-06-14 15:04:26 -0400 | [diff] [blame] | 148 | .. function:: reload(module) |
| 149 | |
| 150 | Reload a previously imported *module*. The argument must be a module object, |
| 151 | so it must have been successfully imported before. This is useful if you |
| 152 | have edited the module source file using an external editor and want to try |
| 153 | out the new version without leaving the Python interpreter. The return value |
Brett Cannon | 8ad3786 | 2013-10-25 13:52:46 -0400 | [diff] [blame] | 154 | is the module object (which can be different if re-importing causes a |
| 155 | different object to be placed in :data:`sys.modules`). |
Brett Cannon | 3fe35e6 | 2013-06-14 15:04:26 -0400 | [diff] [blame] | 156 | |
Brett Cannon | 8ad3786 | 2013-10-25 13:52:46 -0400 | [diff] [blame] | 157 | When :func:`reload` is executed: |
Brett Cannon | 3fe35e6 | 2013-06-14 15:04:26 -0400 | [diff] [blame] | 158 | |
Larry Hastings | 3732ed2 | 2014-03-15 21:13:56 -0700 | [diff] [blame] | 159 | * Python module's code is recompiled and the module-level code re-executed, |
Brett Cannon | 3fe35e6 | 2013-06-14 15:04:26 -0400 | [diff] [blame] | 160 | defining a new set of objects which are bound to names in the module's |
| 161 | dictionary by reusing the :term:`loader` which originally loaded the |
| 162 | module. The ``init`` function of extension modules is not called a second |
| 163 | time. |
| 164 | |
| 165 | * As with all other objects in Python the old objects are only reclaimed |
| 166 | after their reference counts drop to zero. |
| 167 | |
| 168 | * The names in the module namespace are updated to point to any new or |
| 169 | changed objects. |
| 170 | |
| 171 | * Other references to the old objects (such as names external to the module) are |
| 172 | not rebound to refer to the new objects and must be updated in each namespace |
| 173 | where they occur if that is desired. |
| 174 | |
| 175 | There are a number of other caveats: |
| 176 | |
Brett Cannon | 3fe35e6 | 2013-06-14 15:04:26 -0400 | [diff] [blame] | 177 | When a module is reloaded, its dictionary (containing the module's global |
| 178 | variables) is retained. Redefinitions of names will override the old |
| 179 | definitions, so this is generally not a problem. If the new version of a |
| 180 | module does not define a name that was defined by the old version, the old |
| 181 | definition remains. This feature can be used to the module's advantage if it |
| 182 | maintains a global table or cache of objects --- with a :keyword:`try` |
| 183 | statement it can test for the table's presence and skip its initialization if |
| 184 | desired:: |
| 185 | |
| 186 | try: |
| 187 | cache |
| 188 | except NameError: |
| 189 | cache = {} |
| 190 | |
Robert Collins | 1ae28d2 | 2015-08-05 08:20:53 +1200 | [diff] [blame] | 191 | It is generally not very useful to reload built-in or dynamically loaded |
| 192 | modules. Reloading :mod:`sys`, :mod:`__main__`, :mod:`builtins` and other |
| 193 | key modules is not recommended. In many cases extension modules are not |
| 194 | designed to be initialized more than once, and may fail in arbitrary ways |
| 195 | when reloaded. |
Brett Cannon | 3fe35e6 | 2013-06-14 15:04:26 -0400 | [diff] [blame] | 196 | |
| 197 | If a module imports objects from another module using :keyword:`from` ... |
| 198 | :keyword:`import` ..., calling :func:`reload` for the other module does not |
| 199 | redefine the objects imported from it --- one way around this is to |
| 200 | re-execute the :keyword:`from` statement, another is to use :keyword:`import` |
| 201 | and qualified names (*module.name*) instead. |
| 202 | |
| 203 | If a module instantiates instances of a class, reloading the module that |
| 204 | defines the class does not affect the method definitions of the instances --- |
| 205 | they continue to use the old class definition. The same is true for derived |
| 206 | classes. |
| 207 | |
| 208 | .. versionadded:: 3.4 |
Garvit Khatri | 9498782 | 2017-05-25 03:49:50 +0530 | [diff] [blame] | 209 | .. versionchanged:: 3.7 |
| 210 | :exc:`ModuleNotFoundError` is raised when the module being reloaded lacks |
| 211 | a :class:`ModuleSpec`. |
Brett Cannon | 3fe35e6 | 2013-06-14 15:04:26 -0400 | [diff] [blame] | 212 | |
Brett Cannon | 78246b6 | 2009-01-25 04:56:30 +0000 | [diff] [blame] | 213 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 214 | :mod:`importlib.abc` -- Abstract base classes related to import |
| 215 | --------------------------------------------------------------- |
| 216 | |
| 217 | .. module:: importlib.abc |
| 218 | :synopsis: Abstract base classes related to import |
| 219 | |
Terry Jan Reedy | dcb6c88 | 2016-06-22 22:46:34 -0400 | [diff] [blame] | 220 | **Source code:** :source:`Lib/importlib/abc.py` |
| 221 | |
| 222 | -------------- |
| 223 | |
| 224 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 225 | The :mod:`importlib.abc` module contains all of the core abstract base classes |
| 226 | used by :keyword:`import`. Some subclasses of the core abstract base classes |
| 227 | are also provided to help in implementing the core ABCs. |
| 228 | |
Andrew Svetlov | a865654 | 2012-08-13 22:19:01 +0300 | [diff] [blame] | 229 | ABC hierarchy:: |
| 230 | |
| 231 | object |
Brett Cannon | 1b79918 | 2012-08-17 14:08:24 -0400 | [diff] [blame] | 232 | +-- Finder (deprecated) |
Andrew Svetlov | a865654 | 2012-08-13 22:19:01 +0300 | [diff] [blame] | 233 | | +-- MetaPathFinder |
| 234 | | +-- PathEntryFinder |
| 235 | +-- Loader |
| 236 | +-- ResourceLoader --------+ |
| 237 | +-- InspectLoader | |
| 238 | +-- ExecutionLoader --+ |
| 239 | +-- FileLoader |
| 240 | +-- SourceLoader |
Andrew Svetlov | a865654 | 2012-08-13 22:19:01 +0300 | [diff] [blame] | 241 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 242 | |
| 243 | .. class:: Finder |
| 244 | |
Brett Cannon | 1b79918 | 2012-08-17 14:08:24 -0400 | [diff] [blame] | 245 | An abstract base class representing a :term:`finder`. |
| 246 | |
| 247 | .. deprecated:: 3.3 |
| 248 | Use :class:`MetaPathFinder` or :class:`PathEntryFinder` instead. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 249 | |
Berker Peksag | 6e9d2e6 | 2015-12-08 12:14:50 +0200 | [diff] [blame] | 250 | .. abstractmethod:: find_module(fullname, path=None) |
Brett Cannon | b46a179 | 2012-02-27 18:15:42 -0500 | [diff] [blame] | 251 | |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 252 | An abstact method for finding a :term:`loader` for the specified |
| 253 | module. Originally specified in :pep:`302`, this method was meant |
| 254 | for use in :data:`sys.meta_path` and in the path-based import subsystem. |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 255 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 256 | .. versionchanged:: 3.4 |
| 257 | Returns ``None`` when called instead of raising |
| 258 | :exc:`NotImplementedError`. |
| 259 | |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 260 | |
Brett Cannon | 077ef45 | 2012-08-02 17:50:06 -0400 | [diff] [blame] | 261 | .. class:: MetaPathFinder |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 262 | |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 263 | An abstract base class representing a :term:`meta path finder`. For |
| 264 | compatibility, this is a subclass of :class:`Finder`. |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 265 | |
| 266 | .. versionadded:: 3.3 |
| 267 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 268 | .. method:: find_spec(fullname, path, target=None) |
| 269 | |
| 270 | An abstract method for finding a :term:`spec <module spec>` for |
| 271 | the specified module. If this is a top-level import, *path* will |
| 272 | be ``None``. Otherwise, this is a search for a subpackage or |
| 273 | module and *path* will be the value of :attr:`__path__` from the |
| 274 | parent package. If a spec cannot be found, ``None`` is returned. |
| 275 | When passed in, ``target`` is a module object that the finder may |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 276 | use to make a more educated guess about what spec to return. |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 277 | |
| 278 | .. versionadded:: 3.4 |
| 279 | |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 280 | .. method:: find_module(fullname, path) |
| 281 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 282 | A legacy method for finding a :term:`loader` for the specified |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 283 | module. If this is a top-level import, *path* will be ``None``. |
Ezio Melotti | 1f67e80 | 2012-10-21 07:24:13 +0300 | [diff] [blame] | 284 | Otherwise, this is a search for a subpackage or module and *path* |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 285 | will be the value of :attr:`__path__` from the parent |
| 286 | package. If a loader cannot be found, ``None`` is returned. |
| 287 | |
Brett Cannon | 8d94229 | 2014-01-07 15:52:42 -0500 | [diff] [blame] | 288 | If :meth:`find_spec` is defined, backwards-compatible functionality is |
| 289 | provided. |
| 290 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 291 | .. versionchanged:: 3.4 |
| 292 | Returns ``None`` when called instead of raising |
Brett Cannon | 8d94229 | 2014-01-07 15:52:42 -0500 | [diff] [blame] | 293 | :exc:`NotImplementedError`. Can use :meth:`find_spec` to provide |
| 294 | functionality. |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 295 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 296 | .. deprecated:: 3.4 |
| 297 | Use :meth:`find_spec` instead. |
| 298 | |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 299 | .. method:: invalidate_caches() |
| 300 | |
| 301 | An optional method which, when called, should invalidate any internal |
Brett Cannon | a6e8581 | 2012-08-11 19:41:27 -0400 | [diff] [blame] | 302 | cache used by the finder. Used by :func:`importlib.invalidate_caches` |
| 303 | when invalidating the caches of all finders on :data:`sys.meta_path`. |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 304 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 305 | .. versionchanged:: 3.4 |
| 306 | Returns ``None`` when called instead of ``NotImplemented``. |
| 307 | |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 308 | |
Brett Cannon | 077ef45 | 2012-08-02 17:50:06 -0400 | [diff] [blame] | 309 | .. class:: PathEntryFinder |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 310 | |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 311 | An abstract base class representing a :term:`path entry finder`. Though |
| 312 | it bears some similarities to :class:`MetaPathFinder`, ``PathEntryFinder`` |
| 313 | is meant for use only within the path-based import subsystem provided |
| 314 | by :class:`PathFinder`. This ABC is a subclass of :class:`Finder` for |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 315 | compatibility reasons only. |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 316 | |
| 317 | .. versionadded:: 3.3 |
| 318 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 319 | .. method:: find_spec(fullname, target=None) |
| 320 | |
| 321 | An abstract method for finding a :term:`spec <module spec>` for |
| 322 | the specified module. The finder will search for the module only |
| 323 | within the :term:`path entry` to which it is assigned. If a spec |
| 324 | cannot be found, ``None`` is returned. When passed in, ``target`` |
| 325 | is a module object that the finder may use to make a more educated |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 326 | guess about what spec to return. |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 327 | |
| 328 | .. versionadded:: 3.4 |
| 329 | |
Brett Cannon | 4067aa2 | 2013-04-27 23:20:32 -0400 | [diff] [blame] | 330 | .. method:: find_loader(fullname) |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 331 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 332 | A legacy method for finding a :term:`loader` for the specified |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 333 | module. Returns a 2-tuple of ``(loader, portion)`` where ``portion`` |
| 334 | is a sequence of file system locations contributing to part of a namespace |
| 335 | package. The loader may be ``None`` while specifying ``portion`` to |
| 336 | signify the contribution of the file system locations to a namespace |
| 337 | package. An empty list can be used for ``portion`` to signify the loader |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 338 | is not part of a namespace package. If ``loader`` is ``None`` and |
| 339 | ``portion`` is the empty list then no loader or location for a namespace |
| 340 | package were found (i.e. failure to find anything for the module). |
| 341 | |
Brett Cannon | 8d94229 | 2014-01-07 15:52:42 -0500 | [diff] [blame] | 342 | If :meth:`find_spec` is defined then backwards-compatible functionality is |
| 343 | provided. |
| 344 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 345 | .. versionchanged:: 3.4 |
| 346 | Returns ``(None, [])`` instead of raising :exc:`NotImplementedError`. |
Brett Cannon | 8d94229 | 2014-01-07 15:52:42 -0500 | [diff] [blame] | 347 | Uses :meth:`find_spec` when available to provide functionality. |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 348 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 349 | .. deprecated:: 3.4 |
| 350 | Use :meth:`find_spec` instead. |
| 351 | |
Brett Cannon | 4067aa2 | 2013-04-27 23:20:32 -0400 | [diff] [blame] | 352 | .. method:: find_module(fullname) |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 353 | |
| 354 | A concrete implementation of :meth:`Finder.find_module` which is |
| 355 | equivalent to ``self.find_loader(fullname)[0]``. |
| 356 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 357 | .. deprecated:: 3.4 |
| 358 | Use :meth:`find_spec` instead. |
| 359 | |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 360 | .. method:: invalidate_caches() |
| 361 | |
| 362 | An optional method which, when called, should invalidate any internal |
Brett Cannon | a6e8581 | 2012-08-11 19:41:27 -0400 | [diff] [blame] | 363 | cache used by the finder. Used by :meth:`PathFinder.invalidate_caches` |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 364 | when invalidating the caches of all cached finders. |
Brett Cannon | b46a179 | 2012-02-27 18:15:42 -0500 | [diff] [blame] | 365 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 366 | |
| 367 | .. class:: Loader |
| 368 | |
| 369 | An abstract base class for a :term:`loader`. |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 370 | See :pep:`302` for the exact definition for a loader. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 371 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 372 | .. method:: create_module(spec) |
| 373 | |
Brett Cannon | 02d8454 | 2015-01-09 11:39:21 -0500 | [diff] [blame] | 374 | A method that returns the module object to use when |
| 375 | importing a module. This method may return ``None``, |
| 376 | indicating that default module creation semantics should take place. |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 377 | |
| 378 | .. versionadded:: 3.4 |
| 379 | |
Brett Cannon | 02d8454 | 2015-01-09 11:39:21 -0500 | [diff] [blame] | 380 | .. versionchanged:: 3.5 |
| 381 | Starting in Python 3.6, this method will not be optional when |
| 382 | :meth:`exec_module` is defined. |
| 383 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 384 | .. method:: exec_module(module) |
| 385 | |
| 386 | An abstract method that executes the module in its own namespace |
| 387 | when a module is imported or reloaded. The module should already |
Brett Cannon | 696c35e | 2016-06-25 10:58:17 -0700 | [diff] [blame] | 388 | be initialized when ``exec_module()`` is called. When this method exists, |
| 389 | :meth:`~importlib.abc.Loader.create_module` must be defined. |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 390 | |
| 391 | .. versionadded:: 3.4 |
| 392 | |
Brett Cannon | 696c35e | 2016-06-25 10:58:17 -0700 | [diff] [blame] | 393 | .. versionchanged:: 3.6 |
| 394 | :meth:`~importlib.abc.Loader.create_module` must also be defined. |
| 395 | |
Brett Cannon | 9c751b7 | 2009-03-09 16:28:16 +0000 | [diff] [blame] | 396 | .. method:: load_module(fullname) |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 397 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 398 | A legacy method for loading a module. If the module cannot be |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 399 | loaded, :exc:`ImportError` is raised, otherwise the loaded module is |
| 400 | returned. |
| 401 | |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 402 | If the requested module already exists in :data:`sys.modules`, that |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 403 | module should be used and reloaded. |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 404 | Otherwise the loader should create a new module and insert it into |
| 405 | :data:`sys.modules` before any loading begins, to prevent recursion |
| 406 | from the import. If the loader inserted a module and the load fails, it |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 407 | must be removed by the loader from :data:`sys.modules`; modules already |
| 408 | in :data:`sys.modules` before the loader began execution should be left |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 409 | alone (see :func:`importlib.util.module_for_loader`). |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 410 | |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 411 | The loader should set several attributes on the module. |
| 412 | (Note that some of these attributes can change when a module is |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 413 | reloaded): |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 414 | |
| 415 | - :attr:`__name__` |
| 416 | The name of the module. |
| 417 | |
| 418 | - :attr:`__file__` |
| 419 | The path to where the module data is stored (not set for built-in |
| 420 | modules). |
| 421 | |
Brett Cannon | 2cefb3c | 2013-05-25 11:26:11 -0400 | [diff] [blame] | 422 | - :attr:`__cached__` |
| 423 | The path to where a compiled version of the module is/should be |
| 424 | stored (not set when the attribute would be inappropriate). |
| 425 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 426 | - :attr:`__path__` |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 427 | A list of strings specifying the search path within a |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 428 | package. This attribute is not set on modules. |
| 429 | |
| 430 | - :attr:`__package__` |
| 431 | The parent package for the module/package. If the module is |
| 432 | top-level then it has a value of the empty string. The |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 433 | :func:`importlib.util.module_for_loader` decorator can handle the |
| 434 | details for :attr:`__package__`. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 435 | |
| 436 | - :attr:`__loader__` |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 437 | The loader used to load the module. The |
| 438 | :func:`importlib.util.module_for_loader` decorator can handle the |
| 439 | details for :attr:`__package__`. |
| 440 | |
Brett Cannon | 8d94229 | 2014-01-07 15:52:42 -0500 | [diff] [blame] | 441 | When :meth:`exec_module` is available then backwards-compatible |
| 442 | functionality is provided. |
| 443 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 444 | .. versionchanged:: 3.4 |
| 445 | Raise :exc:`ImportError` when called instead of |
Brett Cannon | 8d94229 | 2014-01-07 15:52:42 -0500 | [diff] [blame] | 446 | :exc:`NotImplementedError`. Functionality provided when |
| 447 | :meth:`exec_module` is available. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 448 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 449 | .. deprecated:: 3.4 |
| 450 | The recommended API for loading a module is :meth:`exec_module` |
Brett Cannon | 02d8454 | 2015-01-09 11:39:21 -0500 | [diff] [blame] | 451 | (and :meth:`create_module`). Loaders should implement |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 452 | it instead of load_module(). The import machinery takes care of |
| 453 | all the other responsibilities of load_module() when exec_module() |
| 454 | is implemented. |
| 455 | |
Barry Warsaw | d7d2194 | 2012-07-29 16:36:17 -0400 | [diff] [blame] | 456 | .. method:: module_repr(module) |
| 457 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 458 | A legacy method which when implemented calculates and returns the |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 459 | given module's repr, as a string. The module type's default repr() will |
| 460 | use the result of this method as appropriate. |
Barry Warsaw | d7d2194 | 2012-07-29 16:36:17 -0400 | [diff] [blame] | 461 | |
Georg Brandl | 526575d | 2013-04-11 16:10:13 +0200 | [diff] [blame] | 462 | .. versionadded:: 3.3 |
Barry Warsaw | d7d2194 | 2012-07-29 16:36:17 -0400 | [diff] [blame] | 463 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 464 | .. versionchanged:: 3.4 |
Georg Brandl | 526575d | 2013-04-11 16:10:13 +0200 | [diff] [blame] | 465 | Made optional instead of an abstractmethod. |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 466 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 467 | .. deprecated:: 3.4 |
| 468 | The import machinery now takes care of this automatically. |
| 469 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 470 | |
| 471 | .. class:: ResourceLoader |
| 472 | |
| 473 | An abstract base class for a :term:`loader` which implements the optional |
| 474 | :pep:`302` protocol for loading arbitrary resources from the storage |
| 475 | back-end. |
| 476 | |
Berker Peksag | 6e9d2e6 | 2015-12-08 12:14:50 +0200 | [diff] [blame] | 477 | .. abstractmethod:: get_data(path) |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 478 | |
| 479 | An abstract method to return the bytes for the data located at *path*. |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 480 | Loaders that have a file-like storage back-end |
Brett Cannon | 16248a4 | 2009-04-01 20:47:14 +0000 | [diff] [blame] | 481 | that allows storing arbitrary data |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 482 | can implement this abstract method to give direct access |
Andrew Svetlov | 08af000 | 2014-04-01 01:13:30 +0300 | [diff] [blame] | 483 | to the data stored. :exc:`OSError` is to be raised if the *path* cannot |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 484 | be found. The *path* is expected to be constructed using a module's |
Brett Cannon | 16248a4 | 2009-04-01 20:47:14 +0000 | [diff] [blame] | 485 | :attr:`__file__` attribute or an item from a package's :attr:`__path__`. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 486 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 487 | .. versionchanged:: 3.4 |
Andrew Svetlov | 08af000 | 2014-04-01 01:13:30 +0300 | [diff] [blame] | 488 | Raises :exc:`OSError` instead of :exc:`NotImplementedError`. |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 489 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 490 | |
| 491 | .. class:: InspectLoader |
| 492 | |
| 493 | An abstract base class for a :term:`loader` which implements the optional |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 494 | :pep:`302` protocol for loaders that inspect modules. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 495 | |
Brett Cannon | a113ac5 | 2009-03-15 01:41:33 +0000 | [diff] [blame] | 496 | .. method:: get_code(fullname) |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 497 | |
R David Murray | 0ae7ae1 | 2014-01-08 18:16:02 -0500 | [diff] [blame] | 498 | Return the code object for a module, or ``None`` if the module does not |
| 499 | have a code object (as would be the case, for example, for a built-in |
| 500 | module). Raise an :exc:`ImportError` if loader cannot find the |
| 501 | requested module. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 502 | |
Brett Cannon | 3b62ca8 | 2013-05-27 21:11:04 -0400 | [diff] [blame] | 503 | .. note:: |
| 504 | While the method has a default implementation, it is suggested that |
| 505 | it be overridden if possible for performance. |
| 506 | |
R David Murray | 1b00f25 | 2012-08-15 10:43:58 -0400 | [diff] [blame] | 507 | .. index:: |
| 508 | single: universal newlines; importlib.abc.InspectLoader.get_source method |
| 509 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 510 | .. versionchanged:: 3.4 |
Brett Cannon | 3b62ca8 | 2013-05-27 21:11:04 -0400 | [diff] [blame] | 511 | No longer abstract and a concrete implementation is provided. |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 512 | |
Berker Peksag | 6e9d2e6 | 2015-12-08 12:14:50 +0200 | [diff] [blame] | 513 | .. abstractmethod:: get_source(fullname) |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 514 | |
| 515 | An abstract method to return the source of a module. It is returned as |
R David Murray | 1b00f25 | 2012-08-15 10:43:58 -0400 | [diff] [blame] | 516 | a text string using :term:`universal newlines`, translating all |
R David Murray | ee0a945 | 2012-08-15 11:05:36 -0400 | [diff] [blame] | 517 | recognized line separators into ``'\n'`` characters. Returns ``None`` |
| 518 | if no source is available (e.g. a built-in module). Raises |
| 519 | :exc:`ImportError` if the loader cannot find the module specified. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 520 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 521 | .. versionchanged:: 3.4 |
| 522 | Raises :exc:`ImportError` instead of :exc:`NotImplementedError`. |
| 523 | |
Brett Cannon | a113ac5 | 2009-03-15 01:41:33 +0000 | [diff] [blame] | 524 | .. method:: is_package(fullname) |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 525 | |
Brett Cannon | a113ac5 | 2009-03-15 01:41:33 +0000 | [diff] [blame] | 526 | An abstract method to return a true value if the module is a package, a |
| 527 | false value otherwise. :exc:`ImportError` is raised if the |
| 528 | :term:`loader` cannot find the module. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 529 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 530 | .. versionchanged:: 3.4 |
| 531 | Raises :exc:`ImportError` instead of :exc:`NotImplementedError`. |
| 532 | |
Brett Cannon | 6eaac13 | 2014-05-09 12:28:22 -0400 | [diff] [blame] | 533 | .. staticmethod:: source_to_code(data, path='<string>') |
Brett Cannon | 9ffe85e | 2013-05-26 16:45:10 -0400 | [diff] [blame] | 534 | |
| 535 | Create a code object from Python source. |
| 536 | |
| 537 | The *data* argument can be whatever the :func:`compile` function |
| 538 | supports (i.e. string or bytes). The *path* argument should be |
| 539 | the "path" to where the source code originated from, which can be an |
| 540 | abstract concept (e.g. location in a zip file). |
| 541 | |
Brett Cannon | 6eaac13 | 2014-05-09 12:28:22 -0400 | [diff] [blame] | 542 | With the subsequent code object one can execute it in a module by |
| 543 | running ``exec(code, module.__dict__)``. |
| 544 | |
Brett Cannon | 9ffe85e | 2013-05-26 16:45:10 -0400 | [diff] [blame] | 545 | .. versionadded:: 3.4 |
| 546 | |
Brett Cannon | 6eaac13 | 2014-05-09 12:28:22 -0400 | [diff] [blame] | 547 | .. versionchanged:: 3.5 |
| 548 | Made the method static. |
| 549 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 550 | .. method:: exec_module(module) |
| 551 | |
| 552 | Implementation of :meth:`Loader.exec_module`. |
| 553 | |
| 554 | .. versionadded:: 3.4 |
| 555 | |
Brett Cannon | 0dbb4c7 | 2013-05-31 18:56:47 -0400 | [diff] [blame] | 556 | .. method:: load_module(fullname) |
| 557 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 558 | Implementation of :meth:`Loader.load_module`. |
| 559 | |
| 560 | .. deprecated:: 3.4 |
| 561 | use :meth:`exec_module` instead. |
Brett Cannon | 0dbb4c7 | 2013-05-31 18:56:47 -0400 | [diff] [blame] | 562 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 563 | |
Brett Cannon | 6919427 | 2009-07-20 04:23:48 +0000 | [diff] [blame] | 564 | .. class:: ExecutionLoader |
| 565 | |
| 566 | An abstract base class which inherits from :class:`InspectLoader` that, |
Brett Cannon | 2346029 | 2009-07-20 22:59:00 +0000 | [diff] [blame] | 567 | when implemented, helps a module to be executed as a script. The ABC |
Brett Cannon | 6919427 | 2009-07-20 04:23:48 +0000 | [diff] [blame] | 568 | represents an optional :pep:`302` protocol. |
| 569 | |
Berker Peksag | 6e9d2e6 | 2015-12-08 12:14:50 +0200 | [diff] [blame] | 570 | .. abstractmethod:: get_filename(fullname) |
Brett Cannon | 6919427 | 2009-07-20 04:23:48 +0000 | [diff] [blame] | 571 | |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 572 | An abstract method that is to return the value of :attr:`__file__` for |
Brett Cannon | 6919427 | 2009-07-20 04:23:48 +0000 | [diff] [blame] | 573 | the specified module. If no path is available, :exc:`ImportError` is |
| 574 | raised. |
| 575 | |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 576 | If source code is available, then the method should return the path to |
| 577 | the source file, regardless of whether a bytecode was used to load the |
| 578 | module. |
| 579 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 580 | .. versionchanged:: 3.4 |
| 581 | Raises :exc:`ImportError` instead of :exc:`NotImplementedError`. |
| 582 | |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 583 | |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 584 | .. class:: FileLoader(fullname, path) |
| 585 | |
| 586 | An abstract base class which inherits from :class:`ResourceLoader` and |
Andrew Svetlov | a60de4f | 2013-02-17 16:55:58 +0200 | [diff] [blame] | 587 | :class:`ExecutionLoader`, providing concrete implementations of |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 588 | :meth:`ResourceLoader.get_data` and :meth:`ExecutionLoader.get_filename`. |
| 589 | |
| 590 | The *fullname* argument is a fully resolved name of the module the loader is |
| 591 | to handle. The *path* argument is the path to the file for the module. |
| 592 | |
| 593 | .. versionadded:: 3.3 |
| 594 | |
| 595 | .. attribute:: name |
| 596 | |
| 597 | The name of the module the loader can handle. |
| 598 | |
| 599 | .. attribute:: path |
| 600 | |
| 601 | Path to the file of the module. |
| 602 | |
Barry Warsaw | d7d2194 | 2012-07-29 16:36:17 -0400 | [diff] [blame] | 603 | .. method:: load_module(fullname) |
Brett Cannon | c049952 | 2012-05-11 14:48:41 -0400 | [diff] [blame] | 604 | |
Barry Warsaw | d7d2194 | 2012-07-29 16:36:17 -0400 | [diff] [blame] | 605 | Calls super's ``load_module()``. |
Brett Cannon | c049952 | 2012-05-11 14:48:41 -0400 | [diff] [blame] | 606 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 607 | .. deprecated:: 3.4 |
| 608 | Use :meth:`Loader.exec_module` instead. |
| 609 | |
Berker Peksag | 6e9d2e6 | 2015-12-08 12:14:50 +0200 | [diff] [blame] | 610 | .. abstractmethod:: get_filename(fullname) |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 611 | |
Barry Warsaw | d7d2194 | 2012-07-29 16:36:17 -0400 | [diff] [blame] | 612 | Returns :attr:`path`. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 613 | |
Berker Peksag | 6e9d2e6 | 2015-12-08 12:14:50 +0200 | [diff] [blame] | 614 | .. abstractmethod:: get_data(path) |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 615 | |
Brett Cannon | 3b62ca8 | 2013-05-27 21:11:04 -0400 | [diff] [blame] | 616 | Reads *path* as a binary file and returns the bytes from it. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 617 | |
| 618 | |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 619 | .. class:: SourceLoader |
| 620 | |
| 621 | An abstract base class for implementing source (and optionally bytecode) |
| 622 | file loading. The class inherits from both :class:`ResourceLoader` and |
| 623 | :class:`ExecutionLoader`, requiring the implementation of: |
| 624 | |
| 625 | * :meth:`ResourceLoader.get_data` |
| 626 | * :meth:`ExecutionLoader.get_filename` |
Brett Cannon | 6dfbff3 | 2010-07-21 09:48:31 +0000 | [diff] [blame] | 627 | Should only return the path to the source file; sourceless |
Brett Cannon | a81d527 | 2013-06-16 19:17:12 -0400 | [diff] [blame] | 628 | loading is not supported. |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 629 | |
| 630 | The abstract methods defined by this class are to add optional bytecode |
Brett Cannon | 5650e4f | 2012-11-18 10:03:31 -0500 | [diff] [blame] | 631 | file support. Not implementing these optional methods (or causing them to |
| 632 | raise :exc:`NotImplementedError`) causes the loader to |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 633 | only work with source code. Implementing the methods allows the loader to |
| 634 | work with source *and* bytecode files; it does not allow for *sourceless* |
| 635 | loading where only bytecode is provided. Bytecode files are an |
| 636 | optimization to speed up loading by removing the parsing step of Python's |
| 637 | compiler, and so no bytecode-specific API is exposed. |
| 638 | |
Brett Cannon | 773468f | 2012-08-02 17:35:34 -0400 | [diff] [blame] | 639 | .. method:: path_stats(path) |
Antoine Pitrou | 5136ac0 | 2012-01-13 18:52:16 +0100 | [diff] [blame] | 640 | |
| 641 | Optional abstract method which returns a :class:`dict` containing |
Martin Panter | eb99570 | 2016-07-28 01:11:04 +0000 | [diff] [blame] | 642 | metadata about the specified path. Supported dictionary keys are: |
Antoine Pitrou | 5136ac0 | 2012-01-13 18:52:16 +0100 | [diff] [blame] | 643 | |
| 644 | - ``'mtime'`` (mandatory): an integer or floating-point number |
| 645 | representing the modification time of the source code; |
| 646 | - ``'size'`` (optional): the size in bytes of the source code. |
| 647 | |
| 648 | Any other keys in the dictionary are ignored, to allow for future |
Andrew Svetlov | 08af000 | 2014-04-01 01:13:30 +0300 | [diff] [blame] | 649 | extensions. If the path cannot be handled, :exc:`OSError` is raised. |
Antoine Pitrou | 5136ac0 | 2012-01-13 18:52:16 +0100 | [diff] [blame] | 650 | |
| 651 | .. versionadded:: 3.3 |
| 652 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 653 | .. versionchanged:: 3.4 |
Andrew Svetlov | 08af000 | 2014-04-01 01:13:30 +0300 | [diff] [blame] | 654 | Raise :exc:`OSError` instead of :exc:`NotImplementedError`. |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 655 | |
Brett Cannon | 773468f | 2012-08-02 17:35:34 -0400 | [diff] [blame] | 656 | .. method:: path_mtime(path) |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 657 | |
| 658 | Optional abstract method which returns the modification time for the |
| 659 | specified path. |
| 660 | |
Antoine Pitrou | 5136ac0 | 2012-01-13 18:52:16 +0100 | [diff] [blame] | 661 | .. deprecated:: 3.3 |
| 662 | This method is deprecated in favour of :meth:`path_stats`. You don't |
| 663 | have to implement it, but it is still available for compatibility |
Andrew Svetlov | 08af000 | 2014-04-01 01:13:30 +0300 | [diff] [blame] | 664 | purposes. Raise :exc:`OSError` if the path cannot be handled. |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 665 | |
Georg Brandl | df48b97 | 2014-03-24 09:06:18 +0100 | [diff] [blame] | 666 | .. versionchanged:: 3.4 |
Andrew Svetlov | 08af000 | 2014-04-01 01:13:30 +0300 | [diff] [blame] | 667 | Raise :exc:`OSError` instead of :exc:`NotImplementedError`. |
Antoine Pitrou | 5136ac0 | 2012-01-13 18:52:16 +0100 | [diff] [blame] | 668 | |
Brett Cannon | 773468f | 2012-08-02 17:35:34 -0400 | [diff] [blame] | 669 | .. method:: set_data(path, data) |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 670 | |
| 671 | Optional abstract method which writes the specified bytes to a file |
Brett Cannon | 61b1425 | 2010-07-03 21:48:25 +0000 | [diff] [blame] | 672 | path. Any intermediate directories which do not exist are to be created |
| 673 | automatically. |
| 674 | |
| 675 | When writing to the path fails because the path is read-only |
Brett Cannon | 2cefb3c | 2013-05-25 11:26:11 -0400 | [diff] [blame] | 676 | (:attr:`errno.EACCES`/:exc:`PermissionError`), do not propagate the |
| 677 | exception. |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 678 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 679 | .. versionchanged:: 3.4 |
| 680 | No longer raises :exc:`NotImplementedError` when called. |
| 681 | |
Brett Cannon | 773468f | 2012-08-02 17:35:34 -0400 | [diff] [blame] | 682 | .. method:: get_code(fullname) |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 683 | |
| 684 | Concrete implementation of :meth:`InspectLoader.get_code`. |
| 685 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 686 | .. method:: exec_module(module) |
| 687 | |
| 688 | Concrete implementation of :meth:`Loader.exec_module`. |
| 689 | |
| 690 | .. versionadded:: 3.4 |
| 691 | |
Brett Cannon | 773468f | 2012-08-02 17:35:34 -0400 | [diff] [blame] | 692 | .. method:: load_module(fullname) |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 693 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 694 | Concrete implementation of :meth:`Loader.load_module`. |
| 695 | |
| 696 | .. deprecated:: 3.4 |
| 697 | Use :meth:`exec_module` instead. |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 698 | |
Brett Cannon | 773468f | 2012-08-02 17:35:34 -0400 | [diff] [blame] | 699 | .. method:: get_source(fullname) |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 700 | |
| 701 | Concrete implementation of :meth:`InspectLoader.get_source`. |
| 702 | |
Brett Cannon | 773468f | 2012-08-02 17:35:34 -0400 | [diff] [blame] | 703 | .. method:: is_package(fullname) |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 704 | |
| 705 | Concrete implementation of :meth:`InspectLoader.is_package`. A module |
Brett Cannon | ea0b823 | 2012-06-15 20:00:53 -0400 | [diff] [blame] | 706 | is determined to be a package if its file path (as provided by |
| 707 | :meth:`ExecutionLoader.get_filename`) is a file named |
| 708 | ``__init__`` when the file extension is removed **and** the module name |
| 709 | itself does not end in ``__init__``. |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 710 | |
Brett Cannon | 6919427 | 2009-07-20 04:23:48 +0000 | [diff] [blame] | 711 | |
Brett Cannon | 78246b6 | 2009-01-25 04:56:30 +0000 | [diff] [blame] | 712 | :mod:`importlib.machinery` -- Importers and path hooks |
| 713 | ------------------------------------------------------ |
| 714 | |
| 715 | .. module:: importlib.machinery |
| 716 | :synopsis: Importers and path hooks |
| 717 | |
Terry Jan Reedy | dcb6c88 | 2016-06-22 22:46:34 -0400 | [diff] [blame] | 718 | **Source code:** :source:`Lib/importlib/machinery.py` |
| 719 | |
| 720 | -------------- |
| 721 | |
Brett Cannon | 78246b6 | 2009-01-25 04:56:30 +0000 | [diff] [blame] | 722 | This module contains the various objects that help :keyword:`import` |
| 723 | find and load modules. |
| 724 | |
Brett Cannon | cb66eb0 | 2012-05-11 12:58:42 -0400 | [diff] [blame] | 725 | .. attribute:: SOURCE_SUFFIXES |
| 726 | |
| 727 | A list of strings representing the recognized file suffixes for source |
| 728 | modules. |
| 729 | |
| 730 | .. versionadded:: 3.3 |
| 731 | |
| 732 | .. attribute:: DEBUG_BYTECODE_SUFFIXES |
| 733 | |
| 734 | A list of strings representing the file suffixes for non-optimized bytecode |
| 735 | modules. |
| 736 | |
| 737 | .. versionadded:: 3.3 |
| 738 | |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 739 | .. deprecated:: 3.5 |
| 740 | Use :attr:`BYTECODE_SUFFIXES` instead. |
| 741 | |
Brett Cannon | cb66eb0 | 2012-05-11 12:58:42 -0400 | [diff] [blame] | 742 | .. attribute:: OPTIMIZED_BYTECODE_SUFFIXES |
| 743 | |
| 744 | A list of strings representing the file suffixes for optimized bytecode |
| 745 | modules. |
| 746 | |
| 747 | .. versionadded:: 3.3 |
| 748 | |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 749 | .. deprecated:: 3.5 |
| 750 | Use :attr:`BYTECODE_SUFFIXES` instead. |
| 751 | |
Brett Cannon | cb66eb0 | 2012-05-11 12:58:42 -0400 | [diff] [blame] | 752 | .. attribute:: BYTECODE_SUFFIXES |
| 753 | |
| 754 | A list of strings representing the recognized file suffixes for bytecode |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 755 | modules (including the leading dot). |
Brett Cannon | cb66eb0 | 2012-05-11 12:58:42 -0400 | [diff] [blame] | 756 | |
| 757 | .. versionadded:: 3.3 |
| 758 | |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 759 | .. versionchanged:: 3.5 |
| 760 | The value is no longer dependent on ``__debug__``. |
| 761 | |
Brett Cannon | cb66eb0 | 2012-05-11 12:58:42 -0400 | [diff] [blame] | 762 | .. attribute:: EXTENSION_SUFFIXES |
| 763 | |
Nick Coghlan | 76e0770 | 2012-07-18 23:14:57 +1000 | [diff] [blame] | 764 | A list of strings representing the recognized file suffixes for |
Brett Cannon | cb66eb0 | 2012-05-11 12:58:42 -0400 | [diff] [blame] | 765 | extension modules. |
| 766 | |
| 767 | .. versionadded:: 3.3 |
| 768 | |
Nick Coghlan | c5afd42 | 2012-07-18 23:59:08 +1000 | [diff] [blame] | 769 | .. function:: all_suffixes() |
Nick Coghlan | 76e0770 | 2012-07-18 23:14:57 +1000 | [diff] [blame] | 770 | |
| 771 | Returns a combined list of strings representing all file suffixes for |
Nick Coghlan | c5afd42 | 2012-07-18 23:59:08 +1000 | [diff] [blame] | 772 | modules recognized by the standard import machinery. This is a |
Nick Coghlan | 76e0770 | 2012-07-18 23:14:57 +1000 | [diff] [blame] | 773 | helper for code which simply needs to know if a filesystem path |
Nick Coghlan | c5afd42 | 2012-07-18 23:59:08 +1000 | [diff] [blame] | 774 | potentially refers to a module without needing any details on the kind |
Martin Panter | d21e0b5 | 2015-10-10 10:36:22 +0000 | [diff] [blame] | 775 | of module (for example, :func:`inspect.getmodulename`). |
Nick Coghlan | 76e0770 | 2012-07-18 23:14:57 +1000 | [diff] [blame] | 776 | |
| 777 | .. versionadded:: 3.3 |
| 778 | |
| 779 | |
Brett Cannon | 78246b6 | 2009-01-25 04:56:30 +0000 | [diff] [blame] | 780 | .. class:: BuiltinImporter |
| 781 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 782 | An :term:`importer` for built-in modules. All known built-in modules are |
| 783 | listed in :data:`sys.builtin_module_names`. This class implements the |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 784 | :class:`importlib.abc.MetaPathFinder` and |
| 785 | :class:`importlib.abc.InspectLoader` ABCs. |
Brett Cannon | 78246b6 | 2009-01-25 04:56:30 +0000 | [diff] [blame] | 786 | |
| 787 | Only class methods are defined by this class to alleviate the need for |
| 788 | instantiation. |
| 789 | |
Nick Coghlan | d5cacbb | 2015-05-23 22:24:10 +1000 | [diff] [blame] | 790 | .. versionchanged:: 3.5 |
| 791 | As part of :pep:`489`, the builtin importer now implements |
| 792 | :meth:`Loader.create_module` and :meth:`Loader.exec_module` |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 793 | |
Brett Cannon | 78246b6 | 2009-01-25 04:56:30 +0000 | [diff] [blame] | 794 | |
| 795 | .. class:: FrozenImporter |
| 796 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 797 | An :term:`importer` for frozen modules. This class implements the |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 798 | :class:`importlib.abc.MetaPathFinder` and |
| 799 | :class:`importlib.abc.InspectLoader` ABCs. |
Brett Cannon | 78246b6 | 2009-01-25 04:56:30 +0000 | [diff] [blame] | 800 | |
| 801 | Only class methods are defined by this class to alleviate the need for |
| 802 | instantiation. |
| 803 | |
Brett Cannon | debb98d | 2009-02-16 04:18:01 +0000 | [diff] [blame] | 804 | |
Nick Coghlan | ff79486 | 2012-08-02 21:45:24 +1000 | [diff] [blame] | 805 | .. class:: WindowsRegistryFinder |
| 806 | |
| 807 | :term:`Finder` for modules declared in the Windows registry. This class |
Nick Coghlan | 4941774 | 2012-08-02 23:03:58 +1000 | [diff] [blame] | 808 | implements the :class:`importlib.abc.Finder` ABC. |
Nick Coghlan | ff79486 | 2012-08-02 21:45:24 +1000 | [diff] [blame] | 809 | |
| 810 | Only class methods are defined by this class to alleviate the need for |
| 811 | instantiation. |
| 812 | |
| 813 | .. versionadded:: 3.3 |
| 814 | |
Steve Dower | 2036742 | 2016-12-07 13:02:27 -0800 | [diff] [blame] | 815 | .. deprecated:: 3.6 |
| 816 | Use :mod:`site` configuration instead. Future versions of Python may |
| 817 | not enable this finder by default. |
| 818 | |
Nick Coghlan | ff79486 | 2012-08-02 21:45:24 +1000 | [diff] [blame] | 819 | |
Brett Cannon | debb98d | 2009-02-16 04:18:01 +0000 | [diff] [blame] | 820 | .. class:: PathFinder |
| 821 | |
Brett Cannon | 1b79918 | 2012-08-17 14:08:24 -0400 | [diff] [blame] | 822 | A :term:`Finder` for :data:`sys.path` and package ``__path__`` attributes. |
| 823 | This class implements the :class:`importlib.abc.MetaPathFinder` ABC. |
Brett Cannon | debb98d | 2009-02-16 04:18:01 +0000 | [diff] [blame] | 824 | |
Brett Cannon | 1b79918 | 2012-08-17 14:08:24 -0400 | [diff] [blame] | 825 | Only class methods are defined by this class to alleviate the need for |
| 826 | instantiation. |
Brett Cannon | debb98d | 2009-02-16 04:18:01 +0000 | [diff] [blame] | 827 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 828 | .. classmethod:: find_spec(fullname, path=None, target=None) |
| 829 | |
| 830 | Class method that attempts to find a :term:`spec <module spec>` |
| 831 | for the module specified by *fullname* on :data:`sys.path` or, if |
| 832 | defined, on *path*. For each path entry that is searched, |
| 833 | :data:`sys.path_importer_cache` is checked. If a non-false object |
| 834 | is found then it is used as the :term:`path entry finder` to look |
| 835 | for the module being searched for. If no entry is found in |
| 836 | :data:`sys.path_importer_cache`, then :data:`sys.path_hooks` is |
| 837 | searched for a finder for the path entry and, if found, is stored |
| 838 | in :data:`sys.path_importer_cache` along with being queried about |
| 839 | the module. If no finder is ever found then ``None`` is both |
| 840 | stored in the cache and returned. |
| 841 | |
| 842 | .. versionadded:: 3.4 |
| 843 | |
Brett Cannon | b6e2556 | 2014-11-21 12:19:28 -0500 | [diff] [blame] | 844 | .. versionchanged:: 3.5 |
| 845 | If the current working directory -- represented by an empty string -- |
| 846 | is no longer valid then ``None`` is returned but no value is cached |
| 847 | in :data:`sys.path_importer_cache`. |
| 848 | |
Brett Cannon | 1b79918 | 2012-08-17 14:08:24 -0400 | [diff] [blame] | 849 | .. classmethod:: find_module(fullname, path=None) |
Brett Cannon | debb98d | 2009-02-16 04:18:01 +0000 | [diff] [blame] | 850 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 851 | A legacy wrapper around :meth:`find_spec`. |
| 852 | |
| 853 | .. deprecated:: 3.4 |
| 854 | Use :meth:`find_spec` instead. |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 855 | |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 856 | .. classmethod:: invalidate_caches() |
| 857 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 858 | Calls :meth:`importlib.abc.PathEntryFinder.invalidate_caches` on all |
| 859 | finders stored in :attr:`sys.path_importer_cache`. |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 860 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 861 | .. versionchanged:: 3.4 |
| 862 | Calls objects in :data:`sys.path_hooks` with the current working |
| 863 | directory for ``''`` (i.e. the empty string). |
Brett Cannon | 27e27f7 | 2013-10-18 11:39:04 -0400 | [diff] [blame] | 864 | |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 865 | |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 866 | .. class:: FileFinder(path, \*loader_details) |
| 867 | |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 868 | A concrete implementation of :class:`importlib.abc.PathEntryFinder` which |
| 869 | caches results from the file system. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 870 | |
| 871 | The *path* argument is the directory for which the finder is in charge of |
| 872 | searching. |
| 873 | |
Brett Cannon | ac9f2f3 | 2012-08-10 13:47:54 -0400 | [diff] [blame] | 874 | The *loader_details* argument is a variable number of 2-item tuples each |
| 875 | containing a loader and a sequence of file suffixes the loader recognizes. |
Brett Cannon | 29b2f17 | 2013-06-21 18:31:55 -0400 | [diff] [blame] | 876 | The loaders are expected to be callables which accept two arguments of |
| 877 | the module's name and the path to the file found. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 878 | |
| 879 | The finder will cache the directory contents as necessary, making stat calls |
| 880 | for each module search to verify the cache is not outdated. Because cache |
| 881 | staleness relies upon the granularity of the operating system's state |
| 882 | information of the file system, there is a potential race condition of |
| 883 | searching for a module, creating a new file, and then searching for the |
| 884 | module the new file represents. If the operations happen fast enough to fit |
| 885 | within the granularity of stat calls, then the module search will fail. To |
| 886 | prevent this from happening, when you create a module dynamically, make sure |
| 887 | to call :func:`importlib.invalidate_caches`. |
| 888 | |
| 889 | .. versionadded:: 3.3 |
| 890 | |
| 891 | .. attribute:: path |
| 892 | |
| 893 | The path the finder will search in. |
| 894 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 895 | .. method:: find_spec(fullname, target=None) |
| 896 | |
| 897 | Attempt to find the spec to handle *fullname* within :attr:`path`. |
| 898 | |
| 899 | .. versionadded:: 3.4 |
| 900 | |
Brett Cannon | 1d75382 | 2013-06-16 19:06:55 -0400 | [diff] [blame] | 901 | .. method:: find_loader(fullname) |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 902 | |
| 903 | Attempt to find the loader to handle *fullname* within :attr:`path`. |
| 904 | |
| 905 | .. method:: invalidate_caches() |
| 906 | |
| 907 | Clear out the internal cache. |
| 908 | |
| 909 | .. classmethod:: path_hook(\*loader_details) |
| 910 | |
| 911 | A class method which returns a closure for use on :attr:`sys.path_hooks`. |
| 912 | An instance of :class:`FileFinder` is returned by the closure using the |
| 913 | path argument given to the closure directly and *loader_details* |
| 914 | indirectly. |
| 915 | |
| 916 | If the argument to the closure is not an existing directory, |
| 917 | :exc:`ImportError` is raised. |
| 918 | |
| 919 | |
| 920 | .. class:: SourceFileLoader(fullname, path) |
| 921 | |
| 922 | A concrete implementation of :class:`importlib.abc.SourceLoader` by |
| 923 | subclassing :class:`importlib.abc.FileLoader` and providing some concrete |
| 924 | implementations of other methods. |
| 925 | |
| 926 | .. versionadded:: 3.3 |
| 927 | |
| 928 | .. attribute:: name |
| 929 | |
| 930 | The name of the module that this loader will handle. |
| 931 | |
| 932 | .. attribute:: path |
| 933 | |
| 934 | The path to the source file. |
| 935 | |
| 936 | .. method:: is_package(fullname) |
| 937 | |
| 938 | Return true if :attr:`path` appears to be for a package. |
| 939 | |
| 940 | .. method:: path_stats(path) |
| 941 | |
| 942 | Concrete implementation of :meth:`importlib.abc.SourceLoader.path_stats`. |
| 943 | |
| 944 | .. method:: set_data(path, data) |
| 945 | |
| 946 | Concrete implementation of :meth:`importlib.abc.SourceLoader.set_data`. |
| 947 | |
Brett Cannon | 062fcac | 2014-05-09 11:55:49 -0400 | [diff] [blame] | 948 | .. method:: load_module(name=None) |
| 949 | |
| 950 | Concrete implementation of :meth:`importlib.abc.Loader.load_module` where |
| 951 | specifying the name of the module to load is optional. |
| 952 | |
Brett Cannon | eae3079 | 2015-12-28 17:55:27 -0800 | [diff] [blame] | 953 | .. deprecated:: 3.6 |
| 954 | |
| 955 | Use :meth:`importlib.abc.Loader.exec_module` instead. |
| 956 | |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 957 | |
Marc-Andre Lemburg | 4fe29c9 | 2012-04-25 02:31:37 +0200 | [diff] [blame] | 958 | .. class:: SourcelessFileLoader(fullname, path) |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 959 | |
| 960 | A concrete implementation of :class:`importlib.abc.FileLoader` which can |
| 961 | import bytecode files (i.e. no source code files exist). |
| 962 | |
Marc-Andre Lemburg | 4fe29c9 | 2012-04-25 02:31:37 +0200 | [diff] [blame] | 963 | Please note that direct use of bytecode files (and thus not source code |
| 964 | files) inhibits your modules from being usable by all Python |
| 965 | implementations or new versions of Python which change the bytecode |
| 966 | format. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 967 | |
| 968 | .. versionadded:: 3.3 |
| 969 | |
| 970 | .. attribute:: name |
| 971 | |
| 972 | The name of the module the loader will handle. |
| 973 | |
| 974 | .. attribute:: path |
| 975 | |
| 976 | The path to the bytecode file. |
| 977 | |
| 978 | .. method:: is_package(fullname) |
| 979 | |
| 980 | Determines if the module is a package based on :attr:`path`. |
| 981 | |
| 982 | .. method:: get_code(fullname) |
| 983 | |
| 984 | Returns the code object for :attr:`name` created from :attr:`path`. |
| 985 | |
| 986 | .. method:: get_source(fullname) |
| 987 | |
| 988 | Returns ``None`` as bytecode files have no source when this loader is |
| 989 | used. |
| 990 | |
Brett Cannon | 062fcac | 2014-05-09 11:55:49 -0400 | [diff] [blame] | 991 | .. method:: load_module(name=None) |
| 992 | |
| 993 | Concrete implementation of :meth:`importlib.abc.Loader.load_module` where |
| 994 | specifying the name of the module to load is optional. |
| 995 | |
Brett Cannon | eae3079 | 2015-12-28 17:55:27 -0800 | [diff] [blame] | 996 | .. deprecated:: 3.6 |
| 997 | |
| 998 | Use :meth:`importlib.abc.Loader.exec_module` instead. |
| 999 | |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1000 | |
| 1001 | .. class:: ExtensionFileLoader(fullname, path) |
| 1002 | |
Eric Snow | 5179445 | 2013-10-03 12:08:55 -0600 | [diff] [blame] | 1003 | A concrete implementation of :class:`importlib.abc.ExecutionLoader` for |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1004 | extension modules. |
| 1005 | |
| 1006 | The *fullname* argument specifies the name of the module the loader is to |
| 1007 | support. The *path* argument is the path to the extension module's file. |
| 1008 | |
| 1009 | .. versionadded:: 3.3 |
| 1010 | |
| 1011 | .. attribute:: name |
| 1012 | |
| 1013 | Name of the module the loader supports. |
| 1014 | |
| 1015 | .. attribute:: path |
| 1016 | |
| 1017 | Path to the extension module. |
| 1018 | |
Nick Coghlan | d5cacbb | 2015-05-23 22:24:10 +1000 | [diff] [blame] | 1019 | .. method:: create_module(spec) |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1020 | |
Nick Coghlan | d5cacbb | 2015-05-23 22:24:10 +1000 | [diff] [blame] | 1021 | Creates the module object from the given specification in accordance |
| 1022 | with :pep:`489`. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1023 | |
Nick Coghlan | d5cacbb | 2015-05-23 22:24:10 +1000 | [diff] [blame] | 1024 | .. versionadded:: 3.5 |
| 1025 | |
| 1026 | .. method:: exec_module(module) |
| 1027 | |
| 1028 | Initializes the given module object in accordance with :pep:`489`. |
| 1029 | |
| 1030 | .. versionadded:: 3.5 |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 1031 | |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1032 | .. method:: is_package(fullname) |
| 1033 | |
Brett Cannon | ac9f2f3 | 2012-08-10 13:47:54 -0400 | [diff] [blame] | 1034 | Returns ``True`` if the file path points to a package's ``__init__`` |
| 1035 | module based on :attr:`EXTENSION_SUFFIXES`. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1036 | |
| 1037 | .. method:: get_code(fullname) |
| 1038 | |
| 1039 | Returns ``None`` as extension modules lack a code object. |
| 1040 | |
| 1041 | .. method:: get_source(fullname) |
| 1042 | |
| 1043 | Returns ``None`` as extension modules do not have source code. |
| 1044 | |
Eric Snow | 5179445 | 2013-10-03 12:08:55 -0600 | [diff] [blame] | 1045 | .. method:: get_filename(fullname) |
| 1046 | |
| 1047 | Returns :attr:`path`. |
| 1048 | |
Eric Snow | dcd01b4 | 2013-10-04 20:35:34 -0600 | [diff] [blame] | 1049 | .. versionadded:: 3.4 |
| 1050 | |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1051 | |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1052 | .. class:: ModuleSpec(name, loader, *, origin=None, loader_state=None, is_package=None) |
| 1053 | |
Barry Warsaw | 191e313 | 2017-10-17 15:52:38 -0400 | [diff] [blame] | 1054 | A specification for a module's import-system-related state. This is |
| 1055 | typically exposed as the module's ``__spec__`` attribute. In the |
| 1056 | descriptions below, the names in parentheses give the corresponding |
| 1057 | attribute available directly on the module object. |
| 1058 | E.g. ``module.__spec__.origin == module.__file__``. Note however that |
| 1059 | while the *values* are usually equivalent, they can differ since there is |
| 1060 | no synchronization between the two objects. Thus it is possible to update |
| 1061 | the module's ``__path__`` at runtime, and this will not be automatically |
| 1062 | reflected in ``__spec__.submodule_search_locations``. |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1063 | |
| 1064 | .. versionadded:: 3.4 |
| 1065 | |
| 1066 | .. attribute:: name |
| 1067 | |
| 1068 | (``__name__``) |
| 1069 | |
| 1070 | A string for the fully-qualified name of the module. |
| 1071 | |
| 1072 | .. attribute:: loader |
| 1073 | |
| 1074 | (``__loader__``) |
| 1075 | |
| 1076 | The loader to use for loading. For namespace packages this should be |
Serhiy Storchaka | ecf41da | 2016-10-19 16:29:26 +0300 | [diff] [blame] | 1077 | set to ``None``. |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1078 | |
| 1079 | .. attribute:: origin |
| 1080 | |
| 1081 | (``__file__``) |
| 1082 | |
| 1083 | Name of the place from which the module is loaded, e.g. "builtin" for |
| 1084 | built-in modules and the filename for modules loaded from source. |
Serhiy Storchaka | ecf41da | 2016-10-19 16:29:26 +0300 | [diff] [blame] | 1085 | Normally "origin" should be set, but it may be ``None`` (the default) |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1086 | which indicates it is unspecified. |
| 1087 | |
| 1088 | .. attribute:: submodule_search_locations |
| 1089 | |
| 1090 | (``__path__``) |
| 1091 | |
Serhiy Storchaka | ecf41da | 2016-10-19 16:29:26 +0300 | [diff] [blame] | 1092 | List of strings for where to find submodules, if a package (``None`` |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1093 | otherwise). |
| 1094 | |
| 1095 | .. attribute:: loader_state |
| 1096 | |
| 1097 | Container of extra module-specific data for use during loading (or |
Serhiy Storchaka | ecf41da | 2016-10-19 16:29:26 +0300 | [diff] [blame] | 1098 | ``None``). |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1099 | |
| 1100 | .. attribute:: cached |
| 1101 | |
| 1102 | (``__cached__``) |
| 1103 | |
Serhiy Storchaka | ecf41da | 2016-10-19 16:29:26 +0300 | [diff] [blame] | 1104 | String for where the compiled module should be stored (or ``None``). |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1105 | |
| 1106 | .. attribute:: parent |
| 1107 | |
| 1108 | (``__package__``) |
| 1109 | |
| 1110 | (Read-only) Fully-qualified name of the package to which the module |
Serhiy Storchaka | ecf41da | 2016-10-19 16:29:26 +0300 | [diff] [blame] | 1111 | belongs as a submodule (or ``None``). |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1112 | |
| 1113 | .. attribute:: has_location |
| 1114 | |
Eric Snow | b282b3d | 2013-12-10 22:16:41 -0700 | [diff] [blame] | 1115 | Boolean indicating whether or not the module's "origin" |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1116 | attribute refers to a loadable location. |
| 1117 | |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 1118 | :mod:`importlib.util` -- Utility code for importers |
| 1119 | --------------------------------------------------- |
| 1120 | |
| 1121 | .. module:: importlib.util |
Brett Cannon | 75321e8 | 2012-03-02 11:58:25 -0500 | [diff] [blame] | 1122 | :synopsis: Utility code for importers |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 1123 | |
Terry Jan Reedy | dcb6c88 | 2016-06-22 22:46:34 -0400 | [diff] [blame] | 1124 | |
| 1125 | **Source code:** :source:`Lib/importlib/util.py` |
| 1126 | |
| 1127 | -------------- |
| 1128 | |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 1129 | This module contains the various objects that help in the construction of |
| 1130 | an :term:`importer`. |
| 1131 | |
Brett Cannon | 05a647d | 2013-06-14 19:02:34 -0400 | [diff] [blame] | 1132 | .. attribute:: MAGIC_NUMBER |
| 1133 | |
| 1134 | The bytes which represent the bytecode version number. If you need help with |
| 1135 | loading/writing bytecode then consider :class:`importlib.abc.SourceLoader`. |
| 1136 | |
| 1137 | .. versionadded:: 3.4 |
| 1138 | |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 1139 | .. function:: cache_from_source(path, debug_override=None, *, optimization=None) |
Brett Cannon | a3c9615 | 2013-06-14 22:26:30 -0400 | [diff] [blame] | 1140 | |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 1141 | Return the :pep:`3147`/:pep:`488` path to the byte-compiled file associated |
| 1142 | with the source *path*. For example, if *path* is ``/foo/bar/baz.py`` the return |
Brett Cannon | a3c9615 | 2013-06-14 22:26:30 -0400 | [diff] [blame] | 1143 | value would be ``/foo/bar/__pycache__/baz.cpython-32.pyc`` for Python 3.2. |
| 1144 | The ``cpython-32`` string comes from the current magic tag (see |
| 1145 | :func:`get_tag`; if :attr:`sys.implementation.cache_tag` is not defined then |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 1146 | :exc:`NotImplementedError` will be raised). |
Brett Cannon | a3c9615 | 2013-06-14 22:26:30 -0400 | [diff] [blame] | 1147 | |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 1148 | The *optimization* parameter is used to specify the optimization level of the |
| 1149 | bytecode file. An empty string represents no optimization, so |
| 1150 | ``/foo/bar/baz.py`` with an *optimization* of ``''`` will result in a |
| 1151 | bytecode path of ``/foo/bar/__pycache__/baz.cpython-32.pyc``. ``None`` causes |
| 1152 | the interpter's optimization level to be used. Any other value's string |
| 1153 | representation being used, so ``/foo/bar/baz.py`` with an *optimization* of |
| 1154 | ``2`` will lead to the bytecode path of |
| 1155 | ``/foo/bar/__pycache__/baz.cpython-32.opt-2.pyc``. The string representation |
| 1156 | of *optimization* can only be alphanumeric, else :exc:`ValueError` is raised. |
| 1157 | |
| 1158 | The *debug_override* parameter is deprecated and can be used to override |
| 1159 | the system's value for ``__debug__``. A ``True`` value is the equivalent of |
| 1160 | setting *optimization* to the empty string. A ``False`` value is the same as |
| 1161 | setting *optimization* to ``1``. If both *debug_override* an *optimization* |
| 1162 | are not ``None`` then :exc:`TypeError` is raised. |
Brett Cannon | a3c9615 | 2013-06-14 22:26:30 -0400 | [diff] [blame] | 1163 | |
| 1164 | .. versionadded:: 3.4 |
| 1165 | |
Berker Peksag | fe5f614 | 2016-01-30 19:30:06 +0200 | [diff] [blame] | 1166 | .. versionchanged:: 3.5 |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 1167 | The *optimization* parameter was added and the *debug_override* parameter |
| 1168 | was deprecated. |
| 1169 | |
Brett Cannon | 035a100 | 2016-09-07 18:39:18 -0700 | [diff] [blame] | 1170 | .. versionchanged:: 3.6 |
| 1171 | Accepts a :term:`path-like object`. |
| 1172 | |
Brett Cannon | a3c9615 | 2013-06-14 22:26:30 -0400 | [diff] [blame] | 1173 | |
| 1174 | .. function:: source_from_cache(path) |
| 1175 | |
| 1176 | Given the *path* to a :pep:`3147` file name, return the associated source code |
| 1177 | file path. For example, if *path* is |
| 1178 | ``/foo/bar/__pycache__/baz.cpython-32.pyc`` the returned path would be |
| 1179 | ``/foo/bar/baz.py``. *path* need not exist, however if it does not conform |
Larry Hastings | 770ce20 | 2015-04-19 13:50:12 -0700 | [diff] [blame] | 1180 | to :pep:`3147` or :pep:`488` format, a ``ValueError`` is raised. If |
Brett Cannon | a3c9615 | 2013-06-14 22:26:30 -0400 | [diff] [blame] | 1181 | :attr:`sys.implementation.cache_tag` is not defined, |
| 1182 | :exc:`NotImplementedError` is raised. |
| 1183 | |
| 1184 | .. versionadded:: 3.4 |
| 1185 | |
Brett Cannon | 035a100 | 2016-09-07 18:39:18 -0700 | [diff] [blame] | 1186 | .. versionchanged:: 3.6 |
| 1187 | Accepts a :term:`path-like object`. |
| 1188 | |
Brett Cannon | f24fecd | 2013-06-16 18:37:53 -0400 | [diff] [blame] | 1189 | .. function:: decode_source(source_bytes) |
| 1190 | |
| 1191 | Decode the given bytes representing source code and return it as a string |
| 1192 | with universal newlines (as required by |
| 1193 | :meth:`importlib.abc.InspectLoader.get_source`). |
| 1194 | |
| 1195 | .. versionadded:: 3.4 |
| 1196 | |
Brett Cannon | d200bf5 | 2012-05-13 13:45:09 -0400 | [diff] [blame] | 1197 | .. function:: resolve_name(name, package) |
| 1198 | |
| 1199 | Resolve a relative module name to an absolute one. |
| 1200 | |
| 1201 | If **name** has no leading dots, then **name** is simply returned. This |
| 1202 | allows for usage such as |
| 1203 | ``importlib.util.resolve_name('sys', __package__)`` without doing a |
| 1204 | check to see if the **package** argument is needed. |
| 1205 | |
| 1206 | :exc:`ValueError` is raised if **name** is a relative module name but |
| 1207 | package is a false value (e.g. ``None`` or the empty string). |
| 1208 | :exc:`ValueError` is also raised a relative name would escape its containing |
| 1209 | package (e.g. requesting ``..bacon`` from within the ``spam`` package). |
| 1210 | |
| 1211 | .. versionadded:: 3.3 |
| 1212 | |
Eric Snow | 6029e08 | 2014-01-25 15:32:46 -0700 | [diff] [blame] | 1213 | .. function:: find_spec(name, package=None) |
| 1214 | |
| 1215 | Find the :term:`spec <module spec>` for a module, optionally relative to |
| 1216 | the specified **package** name. If the module is in :attr:`sys.modules`, |
| 1217 | then ``sys.modules[name].__spec__`` is returned (unless the spec would be |
| 1218 | ``None`` or is not set, in which case :exc:`ValueError` is raised). |
| 1219 | Otherwise a search using :attr:`sys.meta_path` is done. ``None`` is |
| 1220 | returned if no spec is found. |
| 1221 | |
| 1222 | If **name** is for a submodule (contains a dot), the parent module is |
| 1223 | automatically imported. |
| 1224 | |
| 1225 | **name** and **package** work the same as for :func:`import_module`. |
| 1226 | |
| 1227 | .. versionadded:: 3.4 |
| 1228 | |
Milan Oberkirch | 8c3f05e | 2017-06-15 07:34:50 +1000 | [diff] [blame] | 1229 | .. versionchanged:: 3.7 |
| 1230 | Raises :exc:`ModuleNotFoundError` instead of :exc:`AttributeError` if |
| 1231 | **package** is in fact not a package (i.e. lacks a :attr:`__path__` |
| 1232 | attribute). |
| 1233 | |
Brett Cannon | 2a17bde | 2014-05-30 14:55:29 -0400 | [diff] [blame] | 1234 | .. function:: module_from_spec(spec) |
| 1235 | |
Brett Cannon | 696c35e | 2016-06-25 10:58:17 -0700 | [diff] [blame] | 1236 | Create a new module based on **spec** and |
| 1237 | :meth:`spec.loader.create_module <importlib.abc.Loader.create_module>`. |
Brett Cannon | 2a17bde | 2014-05-30 14:55:29 -0400 | [diff] [blame] | 1238 | |
Brett Cannon | 696c35e | 2016-06-25 10:58:17 -0700 | [diff] [blame] | 1239 | If :meth:`spec.loader.create_module <importlib.abc.Loader.create_module>` |
| 1240 | does not return ``None``, then any pre-existing attributes will not be reset. |
| 1241 | Also, no :exc:`AttributeError` will be raised if triggered while accessing |
| 1242 | **spec** or setting an attribute on the module. |
Brett Cannon | 2a17bde | 2014-05-30 14:55:29 -0400 | [diff] [blame] | 1243 | |
| 1244 | This function is preferred over using :class:`types.ModuleType` to create a |
| 1245 | new module as **spec** is used to set as many import-controlled attributes on |
| 1246 | the module as possible. |
| 1247 | |
| 1248 | .. versionadded:: 3.5 |
| 1249 | |
Georg Brandl | 8a1caa2 | 2010-07-29 16:01:11 +0000 | [diff] [blame] | 1250 | .. decorator:: module_for_loader |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 1251 | |
Brett Cannon | a22faca | 2013-05-28 17:50:14 -0400 | [diff] [blame] | 1252 | A :term:`decorator` for :meth:`importlib.abc.Loader.load_module` |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 1253 | to handle selecting the proper |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 1254 | module object to load with. The decorated method is expected to have a call |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 1255 | signature taking two positional arguments |
| 1256 | (e.g. ``load_module(self, module)``) for which the second argument |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 1257 | will be the module **object** to be used by the loader. |
Brett Cannon | efad00d | 2012-04-27 17:27:14 -0400 | [diff] [blame] | 1258 | Note that the decorator will not work on static methods because of the |
| 1259 | assumption of two arguments. |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 1260 | |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 1261 | The decorated method will take in the **name** of the module to be loaded |
| 1262 | as expected for a :term:`loader`. If the module is not found in |
Brett Cannon | 3dc48d6 | 2013-05-28 18:35:54 -0400 | [diff] [blame] | 1263 | :data:`sys.modules` then a new one is constructed. Regardless of where the |
| 1264 | module came from, :attr:`__loader__` set to **self** and :attr:`__package__` |
| 1265 | is set based on what :meth:`importlib.abc.InspectLoader.is_package` returns |
| 1266 | (if available). These attributes are set unconditionally to support |
| 1267 | reloading. |
Brett Cannon | efad00d | 2012-04-27 17:27:14 -0400 | [diff] [blame] | 1268 | |
| 1269 | If an exception is raised by the decorated method and a module was added to |
Brett Cannon | a87e31c | 2013-09-13 16:52:19 -0400 | [diff] [blame] | 1270 | :data:`sys.modules`, then the module will be removed to prevent a partially |
| 1271 | initialized module from being in left in :data:`sys.modules`. If the module |
| 1272 | was already in :data:`sys.modules` then it is left alone. |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 1273 | |
Brett Cannon | efad00d | 2012-04-27 17:27:14 -0400 | [diff] [blame] | 1274 | .. versionchanged:: 3.3 |
Georg Brandl | 61063cc | 2012-06-24 22:48:30 +0200 | [diff] [blame] | 1275 | :attr:`__loader__` and :attr:`__package__` are automatically set |
| 1276 | (when possible). |
Brett Cannon | 57b46f5 | 2009-03-02 14:38:26 +0000 | [diff] [blame] | 1277 | |
Brett Cannon | 3dc48d6 | 2013-05-28 18:35:54 -0400 | [diff] [blame] | 1278 | .. versionchanged:: 3.4 |
Brett Cannon | 0dbb4c7 | 2013-05-31 18:56:47 -0400 | [diff] [blame] | 1279 | Set :attr:`__name__`, :attr:`__loader__` :attr:`__package__` |
| 1280 | unconditionally to support reloading. |
| 1281 | |
| 1282 | .. deprecated:: 3.4 |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1283 | The import machinery now directly performs all the functionality |
| 1284 | provided by this function. |
Brett Cannon | 3dc48d6 | 2013-05-28 18:35:54 -0400 | [diff] [blame] | 1285 | |
Georg Brandl | 8a1caa2 | 2010-07-29 16:01:11 +0000 | [diff] [blame] | 1286 | .. decorator:: set_loader |
Brett Cannon | 2cf03a8 | 2009-03-10 05:17:37 +0000 | [diff] [blame] | 1287 | |
Brett Cannon | a22faca | 2013-05-28 17:50:14 -0400 | [diff] [blame] | 1288 | A :term:`decorator` for :meth:`importlib.abc.Loader.load_module` |
| 1289 | to set the :attr:`__loader__` |
| 1290 | attribute on the returned module. If the attribute is already set the |
| 1291 | decorator does nothing. It is assumed that the first positional argument to |
| 1292 | the wrapped method (i.e. ``self``) is what :attr:`__loader__` should be set |
| 1293 | to. |
Brett Cannon | 2cf03a8 | 2009-03-10 05:17:37 +0000 | [diff] [blame] | 1294 | |
Brett Cannon | 4802bec | 2013-03-13 10:41:36 -0700 | [diff] [blame] | 1295 | .. versionchanged:: 3.4 |
Brett Cannon | 4c14b5d | 2013-05-04 13:56:58 -0400 | [diff] [blame] | 1296 | Set ``__loader__`` if set to ``None``, as if the attribute does not |
Brett Cannon | 4802bec | 2013-03-13 10:41:36 -0700 | [diff] [blame] | 1297 | exist. |
| 1298 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 1299 | .. deprecated:: 3.4 |
| 1300 | The import machinery takes care of this automatically. |
| 1301 | |
Georg Brandl | 8a1caa2 | 2010-07-29 16:01:11 +0000 | [diff] [blame] | 1302 | .. decorator:: set_package |
Brett Cannon | 57b46f5 | 2009-03-02 14:38:26 +0000 | [diff] [blame] | 1303 | |
Brett Cannon | 696c35e | 2016-06-25 10:58:17 -0700 | [diff] [blame] | 1304 | A :term:`decorator` for :meth:`importlib.abc.Loader.load_module` to set the |
| 1305 | :attr:`__package__` attribute on the returned module. If :attr:`__package__` |
Brett Cannon | a22faca | 2013-05-28 17:50:14 -0400 | [diff] [blame] | 1306 | is set and has a value other than ``None`` it will not be changed. |
Brett Cannon | 16248a4 | 2009-04-01 20:47:14 +0000 | [diff] [blame] | 1307 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 1308 | .. deprecated:: 3.4 |
| 1309 | The import machinery takes care of this automatically. |
| 1310 | |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1311 | .. function:: spec_from_loader(name, loader, *, origin=None, is_package=None) |
| 1312 | |
| 1313 | A factory function for creating a :class:`ModuleSpec` instance based |
| 1314 | on a loader. The parameters have the same meaning as they do for |
| 1315 | ModuleSpec. The function uses available :term:`loader` APIs, such as |
| 1316 | :meth:`InspectLoader.is_package`, to fill in any missing |
| 1317 | information on the spec. |
| 1318 | |
| 1319 | .. versionadded:: 3.4 |
| 1320 | |
| 1321 | .. function:: spec_from_file_location(name, location, *, loader=None, submodule_search_locations=None) |
| 1322 | |
| 1323 | A factory function for creating a :class:`ModuleSpec` instance based |
| 1324 | on the path to a file. Missing information will be filled in on the |
| 1325 | spec by making use of loader APIs and by the implication that the |
| 1326 | module will be file-based. |
| 1327 | |
| 1328 | .. versionadded:: 3.4 |
Brett Cannon | a04dbe4 | 2014-04-04 13:53:38 -0400 | [diff] [blame] | 1329 | |
Brett Cannon | 035a100 | 2016-09-07 18:39:18 -0700 | [diff] [blame] | 1330 | .. versionchanged:: 3.6 |
| 1331 | Accepts a :term:`path-like object`. |
| 1332 | |
Benjamin Peterson | 42aa93b | 2017-12-09 10:26:52 -0800 | [diff] [blame] | 1333 | .. function:: source_hash(source_bytes) |
| 1334 | |
| 1335 | Return the hash of *source_bytes* as bytes. A hash-based ``.pyc`` file embeds |
| 1336 | the :func:`source_hash` of the corresponding source file's contents in its |
| 1337 | header. |
| 1338 | |
| 1339 | .. versionadded:: 3.7 |
| 1340 | |
Brett Cannon | a04dbe4 | 2014-04-04 13:53:38 -0400 | [diff] [blame] | 1341 | .. class:: LazyLoader(loader) |
| 1342 | |
| 1343 | A class which postpones the execution of the loader of a module until the |
| 1344 | module has an attribute accessed. |
| 1345 | |
| 1346 | This class **only** works with loaders that define |
Brett Cannon | 02d8454 | 2015-01-09 11:39:21 -0500 | [diff] [blame] | 1347 | :meth:`~importlib.abc.Loader.exec_module` as control over what module type |
| 1348 | is used for the module is required. For those same reasons, the loader's |
Brett Cannon | 696c35e | 2016-06-25 10:58:17 -0700 | [diff] [blame] | 1349 | :meth:`~importlib.abc.Loader.create_module` method must return ``None`` or a |
| 1350 | type for which its ``__class__`` attribute can be mutated along with not |
| 1351 | using :term:`slots <__slots__>`. Finally, modules which substitute the object |
| 1352 | placed into :attr:`sys.modules` will not work as there is no way to properly |
| 1353 | replace the module references throughout the interpreter safely; |
| 1354 | :exc:`ValueError` is raised if such a substitution is detected. |
Brett Cannon | a04dbe4 | 2014-04-04 13:53:38 -0400 | [diff] [blame] | 1355 | |
| 1356 | .. note:: |
| 1357 | For projects where startup time is critical, this class allows for |
| 1358 | potentially minimizing the cost of loading a module if it is never used. |
| 1359 | For projects where startup time is not essential then use of this class is |
| 1360 | **heavily** discouraged due to error messages created during loading being |
| 1361 | postponed and thus occurring out of context. |
| 1362 | |
| 1363 | .. versionadded:: 3.5 |
| 1364 | |
Brett Cannon | 696c35e | 2016-06-25 10:58:17 -0700 | [diff] [blame] | 1365 | .. versionchanged:: 3.6 |
| 1366 | Began calling :meth:`~importlib.abc.Loader.create_module`, removing the |
| 1367 | compatibility warning for :class:`importlib.machinery.BuiltinImporter` and |
| 1368 | :class:`importlib.machinery.ExtensionFileLoader`. |
| 1369 | |
Brett Cannon | a04dbe4 | 2014-04-04 13:53:38 -0400 | [diff] [blame] | 1370 | .. classmethod:: factory(loader) |
| 1371 | |
| 1372 | A static method which returns a callable that creates a lazy loader. This |
| 1373 | is meant to be used in situations where the loader is passed by class |
| 1374 | instead of by instance. |
| 1375 | :: |
| 1376 | |
| 1377 | suffixes = importlib.machinery.SOURCE_SUFFIXES |
| 1378 | loader = importlib.machinery.SourceFileLoader |
| 1379 | lazy_loader = importlib.util.LazyLoader.factory(loader) |
Brett Cannon | 3bf1d87 | 2016-01-22 14:03:27 -0800 | [diff] [blame] | 1380 | finder = importlib.machinery.FileFinder(path, (lazy_loader, suffixes)) |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1381 | |
| 1382 | .. _importlib-examples: |
| 1383 | |
| 1384 | Examples |
| 1385 | -------- |
| 1386 | |
Brett Cannon | 2376316 | 2016-09-08 10:12:47 -0700 | [diff] [blame] | 1387 | Importing programmatically |
| 1388 | '''''''''''''''''''''''''' |
| 1389 | |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1390 | To programmatically import a module, use :func:`importlib.import_module`. |
| 1391 | :: |
| 1392 | |
| 1393 | import importlib |
| 1394 | |
| 1395 | itertools = importlib.import_module('itertools') |
| 1396 | |
Brett Cannon | 2376316 | 2016-09-08 10:12:47 -0700 | [diff] [blame] | 1397 | |
| 1398 | Checking if a module can be imported |
| 1399 | '''''''''''''''''''''''''''''''''''' |
| 1400 | |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1401 | If you need to find out if a module can be imported without actually doing the |
| 1402 | import, then you should use :func:`importlib.util.find_spec`. |
| 1403 | :: |
| 1404 | |
| 1405 | import importlib.util |
| 1406 | import sys |
| 1407 | |
| 1408 | # For illustrative purposes. |
| 1409 | name = 'itertools' |
| 1410 | |
| 1411 | spec = importlib.util.find_spec(name) |
| 1412 | if spec is None: |
| 1413 | print("can't find the itertools module") |
| 1414 | else: |
Brett Cannon | 5936313 | 2016-03-18 11:54:22 -0700 | [diff] [blame] | 1415 | # If you chose to perform the actual import ... |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1416 | module = importlib.util.module_from_spec(spec) |
| 1417 | spec.loader.exec_module(module) |
| 1418 | # Adding the module to sys.modules is optional. |
| 1419 | sys.modules[name] = module |
| 1420 | |
Brett Cannon | 2376316 | 2016-09-08 10:12:47 -0700 | [diff] [blame] | 1421 | |
| 1422 | Importing a source file directly |
| 1423 | '''''''''''''''''''''''''''''''' |
| 1424 | |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1425 | To import a Python source file directly, use the following recipe |
| 1426 | (Python 3.4 and newer only):: |
| 1427 | |
| 1428 | import importlib.util |
| 1429 | import sys |
| 1430 | |
| 1431 | # For illustrative purposes. |
| 1432 | import tokenize |
| 1433 | file_path = tokenize.__file__ |
| 1434 | module_name = tokenize.__name__ |
| 1435 | |
| 1436 | spec = importlib.util.spec_from_file_location(module_name, file_path) |
| 1437 | module = importlib.util.module_from_spec(spec) |
| 1438 | spec.loader.exec_module(module) |
| 1439 | # Optional; only necessary if you want to be able to import the module |
| 1440 | # by name later. |
| 1441 | sys.modules[module_name] = module |
| 1442 | |
Brett Cannon | 2376316 | 2016-09-08 10:12:47 -0700 | [diff] [blame] | 1443 | |
| 1444 | Setting up an importer |
| 1445 | '''''''''''''''''''''' |
| 1446 | |
Brett Cannon | 5936313 | 2016-03-18 11:54:22 -0700 | [diff] [blame] | 1447 | For deep customizations of import, you typically want to implement an |
| 1448 | :term:`importer`. This means managing both the :term:`finder` and :term:`loader` |
| 1449 | side of things. For finders there are two flavours to choose from depending on |
| 1450 | your needs: a :term:`meta path finder` or a :term:`path entry finder`. The |
| 1451 | former is what you would put on :attr:`sys.meta_path` while the latter is what |
| 1452 | you create using a :term:`path entry hook` on :attr:`sys.path_hooks` which works |
| 1453 | with :attr:`sys.path` entries to potentially create a finder. This example will |
| 1454 | show you how to register your own importers so that import will use them (for |
| 1455 | creating an importer for yourself, read the documentation for the appropriate |
| 1456 | classes defined within this package):: |
| 1457 | |
| 1458 | import importlib.machinery |
| 1459 | import sys |
| 1460 | |
| 1461 | # For illustrative purposes only. |
| 1462 | SpamMetaPathFinder = importlib.machinery.PathFinder |
| 1463 | SpamPathEntryFinder = importlib.machinery.FileFinder |
| 1464 | loader_details = (importlib.machinery.SourceFileLoader, |
| 1465 | importlib.machinery.SOURCE_SUFFIXES) |
| 1466 | |
| 1467 | # Setting up a meta path finder. |
| 1468 | # Make sure to put the finder in the proper location in the list in terms of |
| 1469 | # priority. |
| 1470 | sys.meta_path.append(SpamMetaPathFinder) |
| 1471 | |
| 1472 | # Setting up a path entry finder. |
| 1473 | # Make sure to put the path hook in the proper location in the list in terms |
| 1474 | # of priority. |
| 1475 | sys.path_hooks.append(SpamPathEntryFinder.path_hook(loader_details)) |
| 1476 | |
Brett Cannon | 2376316 | 2016-09-08 10:12:47 -0700 | [diff] [blame] | 1477 | |
| 1478 | Approximating :func:`importlib.import_module` |
| 1479 | ''''''''''''''''''''''''''''''''''''''''''''' |
| 1480 | |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1481 | Import itself is implemented in Python code, making it possible to |
| 1482 | expose most of the import machinery through importlib. The following |
| 1483 | helps illustrate the various APIs that importlib exposes by providing an |
| 1484 | approximate implementation of |
Brett Cannon | 5936313 | 2016-03-18 11:54:22 -0700 | [diff] [blame] | 1485 | :func:`importlib.import_module` (Python 3.4 and newer for the importlib usage, |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1486 | Python 3.6 and newer for other parts of the code). |
| 1487 | :: |
| 1488 | |
| 1489 | import importlib.util |
| 1490 | import sys |
| 1491 | |
| 1492 | def import_module(name, package=None): |
| 1493 | """An approximate implementation of import.""" |
| 1494 | absolute_name = importlib.util.resolve_name(name, package) |
| 1495 | try: |
| 1496 | return sys.modules[absolute_name] |
| 1497 | except KeyError: |
| 1498 | pass |
| 1499 | |
| 1500 | path = None |
| 1501 | if '.' in absolute_name: |
| 1502 | parent_name, _, child_name = absolute_name.rpartition('.') |
| 1503 | parent_module = import_module(parent_name) |
| 1504 | path = parent_module.spec.submodule_search_locations |
| 1505 | for finder in sys.meta_path: |
| 1506 | spec = finder.find_spec(absolute_name, path) |
| 1507 | if spec is not None: |
| 1508 | break |
| 1509 | else: |
| 1510 | raise ImportError(f'No module named {absolute_name!r}') |
Brett Cannon | 86a8be0 | 2016-02-20 18:47:09 -0800 | [diff] [blame] | 1511 | module = importlib.util.module_from_spec(spec) |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1512 | spec.loader.exec_module(module) |
| 1513 | sys.modules[absolute_name] = module |
| 1514 | if path is not None: |
| 1515 | setattr(parent_module, child_name, module) |
| 1516 | return module |