Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +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 |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [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 |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 200 | re-execute the :keyword:`!from` statement, another is to use :keyword:`!import` |
Brett Cannon | 3fe35e6 | 2013-06-14 15:04:26 -0400 | [diff] [blame] | 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 | |
Xtreak | c151f78 | 2018-06-16 10:38:31 +0530 | [diff] [blame] | 252 | An abstract method for finding a :term:`loader` for the specified |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 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. |
jdkandersson | 9cbb97b | 2019-09-11 02:06:22 +1000 | [diff] [blame] | 277 | :func:`importlib.util.spec_from_loader` may be useful for implementing |
| 278 | concrete ``MetaPathFinders``. |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 279 | |
| 280 | .. versionadded:: 3.4 |
| 281 | |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 282 | .. method:: find_module(fullname, path) |
| 283 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 284 | A legacy method for finding a :term:`loader` for the specified |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 285 | module. If this is a top-level import, *path* will be ``None``. |
Ezio Melotti | 1f67e80 | 2012-10-21 07:24:13 +0300 | [diff] [blame] | 286 | Otherwise, this is a search for a subpackage or module and *path* |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 287 | will be the value of :attr:`__path__` from the parent |
| 288 | package. If a loader cannot be found, ``None`` is returned. |
| 289 | |
Brett Cannon | 8d94229 | 2014-01-07 15:52:42 -0500 | [diff] [blame] | 290 | If :meth:`find_spec` is defined, backwards-compatible functionality is |
| 291 | provided. |
| 292 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 293 | .. versionchanged:: 3.4 |
| 294 | Returns ``None`` when called instead of raising |
Brett Cannon | 8d94229 | 2014-01-07 15:52:42 -0500 | [diff] [blame] | 295 | :exc:`NotImplementedError`. Can use :meth:`find_spec` to provide |
| 296 | functionality. |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 297 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 298 | .. deprecated:: 3.4 |
| 299 | Use :meth:`find_spec` instead. |
| 300 | |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 301 | .. method:: invalidate_caches() |
| 302 | |
| 303 | An optional method which, when called, should invalidate any internal |
Brett Cannon | a6e8581 | 2012-08-11 19:41:27 -0400 | [diff] [blame] | 304 | cache used by the finder. Used by :func:`importlib.invalidate_caches` |
| 305 | when invalidating the caches of all finders on :data:`sys.meta_path`. |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 306 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 307 | .. versionchanged:: 3.4 |
| 308 | Returns ``None`` when called instead of ``NotImplemented``. |
| 309 | |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 310 | |
Brett Cannon | 077ef45 | 2012-08-02 17:50:06 -0400 | [diff] [blame] | 311 | .. class:: PathEntryFinder |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 312 | |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 313 | An abstract base class representing a :term:`path entry finder`. Though |
| 314 | it bears some similarities to :class:`MetaPathFinder`, ``PathEntryFinder`` |
| 315 | is meant for use only within the path-based import subsystem provided |
| 316 | by :class:`PathFinder`. This ABC is a subclass of :class:`Finder` for |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 317 | compatibility reasons only. |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 318 | |
| 319 | .. versionadded:: 3.3 |
| 320 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 321 | .. method:: find_spec(fullname, target=None) |
| 322 | |
| 323 | An abstract method for finding a :term:`spec <module spec>` for |
| 324 | the specified module. The finder will search for the module only |
| 325 | within the :term:`path entry` to which it is assigned. If a spec |
| 326 | cannot be found, ``None`` is returned. When passed in, ``target`` |
| 327 | is a module object that the finder may use to make a more educated |
jdkandersson | 9cbb97b | 2019-09-11 02:06:22 +1000 | [diff] [blame] | 328 | guess about what spec to return. :func:`importlib.util.spec_from_loader` |
| 329 | may be useful for implementing concrete ``PathEntryFinders``. |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 330 | |
| 331 | .. versionadded:: 3.4 |
| 332 | |
Brett Cannon | 4067aa2 | 2013-04-27 23:20:32 -0400 | [diff] [blame] | 333 | .. method:: find_loader(fullname) |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 334 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 335 | A legacy method for finding a :term:`loader` for the specified |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 336 | module. Returns a 2-tuple of ``(loader, portion)`` where ``portion`` |
| 337 | is a sequence of file system locations contributing to part of a namespace |
| 338 | package. The loader may be ``None`` while specifying ``portion`` to |
| 339 | signify the contribution of the file system locations to a namespace |
| 340 | 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] | 341 | is not part of a namespace package. If ``loader`` is ``None`` and |
| 342 | ``portion`` is the empty list then no loader or location for a namespace |
| 343 | package were found (i.e. failure to find anything for the module). |
| 344 | |
Brett Cannon | 8d94229 | 2014-01-07 15:52:42 -0500 | [diff] [blame] | 345 | If :meth:`find_spec` is defined then backwards-compatible functionality is |
| 346 | provided. |
| 347 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 348 | .. versionchanged:: 3.4 |
| 349 | Returns ``(None, [])`` instead of raising :exc:`NotImplementedError`. |
Brett Cannon | 8d94229 | 2014-01-07 15:52:42 -0500 | [diff] [blame] | 350 | Uses :meth:`find_spec` when available to provide functionality. |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 351 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 352 | .. deprecated:: 3.4 |
| 353 | Use :meth:`find_spec` instead. |
| 354 | |
Brett Cannon | 4067aa2 | 2013-04-27 23:20:32 -0400 | [diff] [blame] | 355 | .. method:: find_module(fullname) |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 356 | |
| 357 | A concrete implementation of :meth:`Finder.find_module` which is |
| 358 | equivalent to ``self.find_loader(fullname)[0]``. |
| 359 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 360 | .. deprecated:: 3.4 |
| 361 | Use :meth:`find_spec` instead. |
| 362 | |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 363 | .. method:: invalidate_caches() |
| 364 | |
| 365 | An optional method which, when called, should invalidate any internal |
Brett Cannon | a6e8581 | 2012-08-11 19:41:27 -0400 | [diff] [blame] | 366 | cache used by the finder. Used by :meth:`PathFinder.invalidate_caches` |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 367 | when invalidating the caches of all cached finders. |
Brett Cannon | b46a179 | 2012-02-27 18:15:42 -0500 | [diff] [blame] | 368 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 369 | |
| 370 | .. class:: Loader |
| 371 | |
| 372 | An abstract base class for a :term:`loader`. |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 373 | See :pep:`302` for the exact definition for a loader. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 374 | |
Barry Warsaw | 997b8c1 | 2018-02-16 10:45:39 -0500 | [diff] [blame] | 375 | Loaders that wish to support resource reading should implement a |
| 376 | ``get_resource_reader(fullname)`` method as specified by |
| 377 | :class:`importlib.abc.ResourceReader`. |
Brett Cannon | bca4218 | 2018-01-12 15:08:59 -0800 | [diff] [blame] | 378 | |
| 379 | .. versionchanged:: 3.7 |
| 380 | Introduced the optional ``get_resource_reader()`` method. |
| 381 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 382 | .. method:: create_module(spec) |
| 383 | |
Brett Cannon | 02d8454 | 2015-01-09 11:39:21 -0500 | [diff] [blame] | 384 | A method that returns the module object to use when |
| 385 | importing a module. This method may return ``None``, |
| 386 | indicating that default module creation semantics should take place. |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 387 | |
| 388 | .. versionadded:: 3.4 |
| 389 | |
Brett Cannon | 02d8454 | 2015-01-09 11:39:21 -0500 | [diff] [blame] | 390 | .. versionchanged:: 3.5 |
| 391 | Starting in Python 3.6, this method will not be optional when |
| 392 | :meth:`exec_module` is defined. |
| 393 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 394 | .. method:: exec_module(module) |
| 395 | |
| 396 | An abstract method that executes the module in its own namespace |
| 397 | when a module is imported or reloaded. The module should already |
Brett Cannon | 696c35e | 2016-06-25 10:58:17 -0700 | [diff] [blame] | 398 | be initialized when ``exec_module()`` is called. When this method exists, |
| 399 | :meth:`~importlib.abc.Loader.create_module` must be defined. |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 400 | |
| 401 | .. versionadded:: 3.4 |
| 402 | |
Brett Cannon | 696c35e | 2016-06-25 10:58:17 -0700 | [diff] [blame] | 403 | .. versionchanged:: 3.6 |
| 404 | :meth:`~importlib.abc.Loader.create_module` must also be defined. |
| 405 | |
Brett Cannon | 9c751b7 | 2009-03-09 16:28:16 +0000 | [diff] [blame] | 406 | .. method:: load_module(fullname) |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 407 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 408 | A legacy method for loading a module. If the module cannot be |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 409 | loaded, :exc:`ImportError` is raised, otherwise the loaded module is |
| 410 | returned. |
| 411 | |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 412 | If the requested module already exists in :data:`sys.modules`, that |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 413 | module should be used and reloaded. |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 414 | Otherwise the loader should create a new module and insert it into |
| 415 | :data:`sys.modules` before any loading begins, to prevent recursion |
| 416 | 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] | 417 | must be removed by the loader from :data:`sys.modules`; modules already |
| 418 | in :data:`sys.modules` before the loader began execution should be left |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 419 | alone (see :func:`importlib.util.module_for_loader`). |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 420 | |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 421 | The loader should set several attributes on the module. |
| 422 | (Note that some of these attributes can change when a module is |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 423 | reloaded): |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 424 | |
| 425 | - :attr:`__name__` |
| 426 | The name of the module. |
| 427 | |
| 428 | - :attr:`__file__` |
| 429 | The path to where the module data is stored (not set for built-in |
| 430 | modules). |
| 431 | |
Brett Cannon | 2cefb3c | 2013-05-25 11:26:11 -0400 | [diff] [blame] | 432 | - :attr:`__cached__` |
| 433 | The path to where a compiled version of the module is/should be |
| 434 | stored (not set when the attribute would be inappropriate). |
| 435 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 436 | - :attr:`__path__` |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 437 | A list of strings specifying the search path within a |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 438 | package. This attribute is not set on modules. |
| 439 | |
| 440 | - :attr:`__package__` |
| 441 | The parent package for the module/package. If the module is |
| 442 | top-level then it has a value of the empty string. The |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 443 | :func:`importlib.util.module_for_loader` decorator can handle the |
| 444 | details for :attr:`__package__`. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 445 | |
| 446 | - :attr:`__loader__` |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 447 | The loader used to load the module. The |
| 448 | :func:`importlib.util.module_for_loader` decorator can handle the |
| 449 | details for :attr:`__package__`. |
| 450 | |
Brett Cannon | 8d94229 | 2014-01-07 15:52:42 -0500 | [diff] [blame] | 451 | When :meth:`exec_module` is available then backwards-compatible |
| 452 | functionality is provided. |
| 453 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 454 | .. versionchanged:: 3.4 |
| 455 | Raise :exc:`ImportError` when called instead of |
Brett Cannon | 8d94229 | 2014-01-07 15:52:42 -0500 | [diff] [blame] | 456 | :exc:`NotImplementedError`. Functionality provided when |
| 457 | :meth:`exec_module` is available. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 458 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 459 | .. deprecated:: 3.4 |
| 460 | The recommended API for loading a module is :meth:`exec_module` |
Brett Cannon | 02d8454 | 2015-01-09 11:39:21 -0500 | [diff] [blame] | 461 | (and :meth:`create_module`). Loaders should implement |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 462 | it instead of load_module(). The import machinery takes care of |
| 463 | all the other responsibilities of load_module() when exec_module() |
| 464 | is implemented. |
| 465 | |
Barry Warsaw | d7d2194 | 2012-07-29 16:36:17 -0400 | [diff] [blame] | 466 | .. method:: module_repr(module) |
| 467 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 468 | A legacy method which when implemented calculates and returns the |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 469 | given module's repr, as a string. The module type's default repr() will |
| 470 | use the result of this method as appropriate. |
Barry Warsaw | d7d2194 | 2012-07-29 16:36:17 -0400 | [diff] [blame] | 471 | |
Georg Brandl | 526575d | 2013-04-11 16:10:13 +0200 | [diff] [blame] | 472 | .. versionadded:: 3.3 |
Barry Warsaw | d7d2194 | 2012-07-29 16:36:17 -0400 | [diff] [blame] | 473 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 474 | .. versionchanged:: 3.4 |
Georg Brandl | 526575d | 2013-04-11 16:10:13 +0200 | [diff] [blame] | 475 | Made optional instead of an abstractmethod. |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 476 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 477 | .. deprecated:: 3.4 |
| 478 | The import machinery now takes care of this automatically. |
| 479 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 480 | |
Brett Cannon | 4ac5150 | 2017-12-15 16:29:35 -0800 | [diff] [blame] | 481 | .. class:: ResourceReader |
| 482 | |
Brett Cannon | bca4218 | 2018-01-12 15:08:59 -0800 | [diff] [blame] | 483 | An :term:`abstract base class` to provide the ability to read |
Brett Cannon | 4ac5150 | 2017-12-15 16:29:35 -0800 | [diff] [blame] | 484 | *resources*. |
| 485 | |
| 486 | From the perspective of this ABC, a *resource* is a binary |
| 487 | artifact that is shipped within a package. Typically this is |
| 488 | something like a data file that lives next to the ``__init__.py`` |
| 489 | file of the package. The purpose of this class is to help abstract |
| 490 | out the accessing of such data files so that it does not matter if |
| 491 | the package and its data file(s) are stored in a e.g. zip file |
| 492 | versus on the file system. |
| 493 | |
| 494 | For any of methods of this class, a *resource* argument is |
Barry Warsaw | deae6b4 | 2017-12-30 15:18:06 -0500 | [diff] [blame] | 495 | expected to be a :term:`path-like object` which represents |
Brett Cannon | 4ac5150 | 2017-12-15 16:29:35 -0800 | [diff] [blame] | 496 | conceptually just a file name. This means that no subdirectory |
| 497 | paths should be included in the *resource* argument. This is |
Brett Cannon | bca4218 | 2018-01-12 15:08:59 -0800 | [diff] [blame] | 498 | because the location of the package the reader is for, acts as the |
| 499 | "directory". Hence the metaphor for directories and file |
Brett Cannon | 4ac5150 | 2017-12-15 16:29:35 -0800 | [diff] [blame] | 500 | names is packages and resources, respectively. This is also why |
| 501 | instances of this class are expected to directly correlate to |
| 502 | a specific package (instead of potentially representing multiple |
| 503 | packages or a module). |
| 504 | |
Brett Cannon | bca4218 | 2018-01-12 15:08:59 -0800 | [diff] [blame] | 505 | Loaders that wish to support resource reading are expected to |
aldwinaldwin | b607d99 | 2019-07-04 08:58:45 +0800 | [diff] [blame] | 506 | provide a method called ``get_resource_reader(fullname)`` which |
Brett Cannon | bca4218 | 2018-01-12 15:08:59 -0800 | [diff] [blame] | 507 | returns an object implementing this ABC's interface. If the module |
| 508 | specified by fullname is not a package, this method should return |
| 509 | :const:`None`. An object compatible with this ABC should only be |
| 510 | returned when the specified module is a package. |
| 511 | |
Brett Cannon | 4ac5150 | 2017-12-15 16:29:35 -0800 | [diff] [blame] | 512 | .. versionadded:: 3.7 |
| 513 | |
| 514 | .. abstractmethod:: open_resource(resource) |
| 515 | |
| 516 | Returns an opened, :term:`file-like object` for binary reading |
| 517 | of the *resource*. |
| 518 | |
| 519 | If the resource cannot be found, :exc:`FileNotFoundError` is |
| 520 | raised. |
| 521 | |
| 522 | .. abstractmethod:: resource_path(resource) |
| 523 | |
| 524 | Returns the file system path to the *resource*. |
| 525 | |
| 526 | If the resource does not concretely exist on the file system, |
| 527 | raise :exc:`FileNotFoundError`. |
| 528 | |
| 529 | .. abstractmethod:: is_resource(name) |
| 530 | |
| 531 | Returns ``True`` if the named *name* is considered a resource. |
| 532 | :exc:`FileNotFoundError` is raised if *name* does not exist. |
| 533 | |
| 534 | .. abstractmethod:: contents() |
| 535 | |
Brett Cannon | 3ab9365 | 2018-04-30 11:31:45 -0700 | [diff] [blame] | 536 | Returns an :term:`iterable` of strings over the contents of |
Brett Cannon | 4ac5150 | 2017-12-15 16:29:35 -0800 | [diff] [blame] | 537 | the package. Do note that it is not required that all names |
| 538 | returned by the iterator be actual resources, e.g. it is |
| 539 | acceptable to return names for which :meth:`is_resource` would |
| 540 | be false. |
| 541 | |
| 542 | Allowing non-resource names to be returned is to allow for |
| 543 | situations where how a package and its resources are stored |
| 544 | are known a priori and the non-resource names would be useful. |
| 545 | For instance, returning subdirectory names is allowed so that |
| 546 | when it is known that the package and resources are stored on |
Brett Cannon | bca4218 | 2018-01-12 15:08:59 -0800 | [diff] [blame] | 547 | the file system then those subdirectory names can be used |
| 548 | directly. |
Brett Cannon | 4ac5150 | 2017-12-15 16:29:35 -0800 | [diff] [blame] | 549 | |
Brett Cannon | 3ab9365 | 2018-04-30 11:31:45 -0700 | [diff] [blame] | 550 | The abstract method returns an iterable of no items. |
Brett Cannon | 4ac5150 | 2017-12-15 16:29:35 -0800 | [diff] [blame] | 551 | |
| 552 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 553 | .. class:: ResourceLoader |
| 554 | |
| 555 | An abstract base class for a :term:`loader` which implements the optional |
| 556 | :pep:`302` protocol for loading arbitrary resources from the storage |
| 557 | back-end. |
| 558 | |
Brett Cannon | bca4218 | 2018-01-12 15:08:59 -0800 | [diff] [blame] | 559 | .. deprecated:: 3.7 |
| 560 | This ABC is deprecated in favour of supporting resource loading |
| 561 | through :class:`importlib.abc.ResourceReader`. |
| 562 | |
Berker Peksag | 6e9d2e6 | 2015-12-08 12:14:50 +0200 | [diff] [blame] | 563 | .. abstractmethod:: get_data(path) |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 564 | |
| 565 | 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] | 566 | Loaders that have a file-like storage back-end |
Brett Cannon | 16248a4 | 2009-04-01 20:47:14 +0000 | [diff] [blame] | 567 | that allows storing arbitrary data |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 568 | can implement this abstract method to give direct access |
Andrew Svetlov | 08af000 | 2014-04-01 01:13:30 +0300 | [diff] [blame] | 569 | 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] | 570 | 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] | 571 | :attr:`__file__` attribute or an item from a package's :attr:`__path__`. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 572 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 573 | .. versionchanged:: 3.4 |
Andrew Svetlov | 08af000 | 2014-04-01 01:13:30 +0300 | [diff] [blame] | 574 | Raises :exc:`OSError` instead of :exc:`NotImplementedError`. |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 575 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 576 | |
| 577 | .. class:: InspectLoader |
| 578 | |
| 579 | 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] | 580 | :pep:`302` protocol for loaders that inspect modules. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 581 | |
Brett Cannon | a113ac5 | 2009-03-15 01:41:33 +0000 | [diff] [blame] | 582 | .. method:: get_code(fullname) |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 583 | |
R David Murray | 0ae7ae1 | 2014-01-08 18:16:02 -0500 | [diff] [blame] | 584 | Return the code object for a module, or ``None`` if the module does not |
| 585 | have a code object (as would be the case, for example, for a built-in |
| 586 | module). Raise an :exc:`ImportError` if loader cannot find the |
| 587 | requested module. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 588 | |
Brett Cannon | 3b62ca8 | 2013-05-27 21:11:04 -0400 | [diff] [blame] | 589 | .. note:: |
| 590 | While the method has a default implementation, it is suggested that |
| 591 | it be overridden if possible for performance. |
| 592 | |
R David Murray | 1b00f25 | 2012-08-15 10:43:58 -0400 | [diff] [blame] | 593 | .. index:: |
| 594 | single: universal newlines; importlib.abc.InspectLoader.get_source method |
| 595 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 596 | .. versionchanged:: 3.4 |
Brett Cannon | 3b62ca8 | 2013-05-27 21:11:04 -0400 | [diff] [blame] | 597 | No longer abstract and a concrete implementation is provided. |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 598 | |
Berker Peksag | 6e9d2e6 | 2015-12-08 12:14:50 +0200 | [diff] [blame] | 599 | .. abstractmethod:: get_source(fullname) |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 600 | |
| 601 | 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] | 602 | a text string using :term:`universal newlines`, translating all |
R David Murray | ee0a945 | 2012-08-15 11:05:36 -0400 | [diff] [blame] | 603 | recognized line separators into ``'\n'`` characters. Returns ``None`` |
| 604 | if no source is available (e.g. a built-in module). Raises |
| 605 | :exc:`ImportError` if the loader cannot find the module specified. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 606 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 607 | .. versionchanged:: 3.4 |
| 608 | Raises :exc:`ImportError` instead of :exc:`NotImplementedError`. |
| 609 | |
Brett Cannon | a113ac5 | 2009-03-15 01:41:33 +0000 | [diff] [blame] | 610 | .. method:: is_package(fullname) |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 611 | |
Brett Cannon | a113ac5 | 2009-03-15 01:41:33 +0000 | [diff] [blame] | 612 | An abstract method to return a true value if the module is a package, a |
| 613 | false value otherwise. :exc:`ImportError` is raised if the |
| 614 | :term:`loader` cannot find the module. |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 615 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 616 | .. versionchanged:: 3.4 |
| 617 | Raises :exc:`ImportError` instead of :exc:`NotImplementedError`. |
| 618 | |
Brett Cannon | 6eaac13 | 2014-05-09 12:28:22 -0400 | [diff] [blame] | 619 | .. staticmethod:: source_to_code(data, path='<string>') |
Brett Cannon | 9ffe85e | 2013-05-26 16:45:10 -0400 | [diff] [blame] | 620 | |
| 621 | Create a code object from Python source. |
| 622 | |
| 623 | The *data* argument can be whatever the :func:`compile` function |
| 624 | supports (i.e. string or bytes). The *path* argument should be |
| 625 | the "path" to where the source code originated from, which can be an |
| 626 | abstract concept (e.g. location in a zip file). |
| 627 | |
Brett Cannon | 6eaac13 | 2014-05-09 12:28:22 -0400 | [diff] [blame] | 628 | With the subsequent code object one can execute it in a module by |
| 629 | running ``exec(code, module.__dict__)``. |
| 630 | |
Brett Cannon | 9ffe85e | 2013-05-26 16:45:10 -0400 | [diff] [blame] | 631 | .. versionadded:: 3.4 |
| 632 | |
Brett Cannon | 6eaac13 | 2014-05-09 12:28:22 -0400 | [diff] [blame] | 633 | .. versionchanged:: 3.5 |
| 634 | Made the method static. |
| 635 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 636 | .. method:: exec_module(module) |
| 637 | |
| 638 | Implementation of :meth:`Loader.exec_module`. |
| 639 | |
| 640 | .. versionadded:: 3.4 |
| 641 | |
Brett Cannon | 0dbb4c7 | 2013-05-31 18:56:47 -0400 | [diff] [blame] | 642 | .. method:: load_module(fullname) |
| 643 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 644 | Implementation of :meth:`Loader.load_module`. |
| 645 | |
| 646 | .. deprecated:: 3.4 |
| 647 | use :meth:`exec_module` instead. |
Brett Cannon | 0dbb4c7 | 2013-05-31 18:56:47 -0400 | [diff] [blame] | 648 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 649 | |
Brett Cannon | 6919427 | 2009-07-20 04:23:48 +0000 | [diff] [blame] | 650 | .. class:: ExecutionLoader |
| 651 | |
| 652 | An abstract base class which inherits from :class:`InspectLoader` that, |
Brett Cannon | 2346029 | 2009-07-20 22:59:00 +0000 | [diff] [blame] | 653 | 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] | 654 | represents an optional :pep:`302` protocol. |
| 655 | |
Berker Peksag | 6e9d2e6 | 2015-12-08 12:14:50 +0200 | [diff] [blame] | 656 | .. abstractmethod:: get_filename(fullname) |
Brett Cannon | 6919427 | 2009-07-20 04:23:48 +0000 | [diff] [blame] | 657 | |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 658 | 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] | 659 | the specified module. If no path is available, :exc:`ImportError` is |
| 660 | raised. |
| 661 | |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 662 | If source code is available, then the method should return the path to |
| 663 | the source file, regardless of whether a bytecode was used to load the |
| 664 | module. |
| 665 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 666 | .. versionchanged:: 3.4 |
| 667 | Raises :exc:`ImportError` instead of :exc:`NotImplementedError`. |
| 668 | |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 669 | |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 670 | .. class:: FileLoader(fullname, path) |
| 671 | |
| 672 | An abstract base class which inherits from :class:`ResourceLoader` and |
Andrew Svetlov | a60de4f | 2013-02-17 16:55:58 +0200 | [diff] [blame] | 673 | :class:`ExecutionLoader`, providing concrete implementations of |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 674 | :meth:`ResourceLoader.get_data` and :meth:`ExecutionLoader.get_filename`. |
| 675 | |
| 676 | The *fullname* argument is a fully resolved name of the module the loader is |
| 677 | to handle. The *path* argument is the path to the file for the module. |
| 678 | |
| 679 | .. versionadded:: 3.3 |
| 680 | |
| 681 | .. attribute:: name |
| 682 | |
| 683 | The name of the module the loader can handle. |
| 684 | |
| 685 | .. attribute:: path |
| 686 | |
| 687 | Path to the file of the module. |
| 688 | |
Barry Warsaw | d7d2194 | 2012-07-29 16:36:17 -0400 | [diff] [blame] | 689 | .. method:: load_module(fullname) |
Brett Cannon | c049952 | 2012-05-11 14:48:41 -0400 | [diff] [blame] | 690 | |
Barry Warsaw | d7d2194 | 2012-07-29 16:36:17 -0400 | [diff] [blame] | 691 | Calls super's ``load_module()``. |
Brett Cannon | c049952 | 2012-05-11 14:48:41 -0400 | [diff] [blame] | 692 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 693 | .. deprecated:: 3.4 |
| 694 | Use :meth:`Loader.exec_module` instead. |
| 695 | |
Berker Peksag | 6e9d2e6 | 2015-12-08 12:14:50 +0200 | [diff] [blame] | 696 | .. abstractmethod:: get_filename(fullname) |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 697 | |
Barry Warsaw | d7d2194 | 2012-07-29 16:36:17 -0400 | [diff] [blame] | 698 | Returns :attr:`path`. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 699 | |
Berker Peksag | 6e9d2e6 | 2015-12-08 12:14:50 +0200 | [diff] [blame] | 700 | .. abstractmethod:: get_data(path) |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 701 | |
Brett Cannon | 3b62ca8 | 2013-05-27 21:11:04 -0400 | [diff] [blame] | 702 | Reads *path* as a binary file and returns the bytes from it. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 703 | |
| 704 | |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 705 | .. class:: SourceLoader |
| 706 | |
| 707 | An abstract base class for implementing source (and optionally bytecode) |
| 708 | file loading. The class inherits from both :class:`ResourceLoader` and |
| 709 | :class:`ExecutionLoader`, requiring the implementation of: |
| 710 | |
| 711 | * :meth:`ResourceLoader.get_data` |
| 712 | * :meth:`ExecutionLoader.get_filename` |
Brett Cannon | 6dfbff3 | 2010-07-21 09:48:31 +0000 | [diff] [blame] | 713 | Should only return the path to the source file; sourceless |
Brett Cannon | a81d527 | 2013-06-16 19:17:12 -0400 | [diff] [blame] | 714 | loading is not supported. |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 715 | |
| 716 | The abstract methods defined by this class are to add optional bytecode |
Brett Cannon | 5650e4f | 2012-11-18 10:03:31 -0500 | [diff] [blame] | 717 | file support. Not implementing these optional methods (or causing them to |
| 718 | raise :exc:`NotImplementedError`) causes the loader to |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 719 | only work with source code. Implementing the methods allows the loader to |
| 720 | work with source *and* bytecode files; it does not allow for *sourceless* |
| 721 | loading where only bytecode is provided. Bytecode files are an |
| 722 | optimization to speed up loading by removing the parsing step of Python's |
| 723 | compiler, and so no bytecode-specific API is exposed. |
| 724 | |
Brett Cannon | 773468f | 2012-08-02 17:35:34 -0400 | [diff] [blame] | 725 | .. method:: path_stats(path) |
Antoine Pitrou | 5136ac0 | 2012-01-13 18:52:16 +0100 | [diff] [blame] | 726 | |
| 727 | Optional abstract method which returns a :class:`dict` containing |
Martin Panter | eb99570 | 2016-07-28 01:11:04 +0000 | [diff] [blame] | 728 | metadata about the specified path. Supported dictionary keys are: |
Antoine Pitrou | 5136ac0 | 2012-01-13 18:52:16 +0100 | [diff] [blame] | 729 | |
| 730 | - ``'mtime'`` (mandatory): an integer or floating-point number |
| 731 | representing the modification time of the source code; |
| 732 | - ``'size'`` (optional): the size in bytes of the source code. |
| 733 | |
| 734 | Any other keys in the dictionary are ignored, to allow for future |
Andrew Svetlov | 08af000 | 2014-04-01 01:13:30 +0300 | [diff] [blame] | 735 | extensions. If the path cannot be handled, :exc:`OSError` is raised. |
Antoine Pitrou | 5136ac0 | 2012-01-13 18:52:16 +0100 | [diff] [blame] | 736 | |
| 737 | .. versionadded:: 3.3 |
| 738 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 739 | .. versionchanged:: 3.4 |
Andrew Svetlov | 08af000 | 2014-04-01 01:13:30 +0300 | [diff] [blame] | 740 | Raise :exc:`OSError` instead of :exc:`NotImplementedError`. |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 741 | |
Brett Cannon | 773468f | 2012-08-02 17:35:34 -0400 | [diff] [blame] | 742 | .. method:: path_mtime(path) |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 743 | |
| 744 | Optional abstract method which returns the modification time for the |
| 745 | specified path. |
| 746 | |
Antoine Pitrou | 5136ac0 | 2012-01-13 18:52:16 +0100 | [diff] [blame] | 747 | .. deprecated:: 3.3 |
| 748 | This method is deprecated in favour of :meth:`path_stats`. You don't |
| 749 | have to implement it, but it is still available for compatibility |
Andrew Svetlov | 08af000 | 2014-04-01 01:13:30 +0300 | [diff] [blame] | 750 | purposes. Raise :exc:`OSError` if the path cannot be handled. |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 751 | |
Georg Brandl | df48b97 | 2014-03-24 09:06:18 +0100 | [diff] [blame] | 752 | .. versionchanged:: 3.4 |
Andrew Svetlov | 08af000 | 2014-04-01 01:13:30 +0300 | [diff] [blame] | 753 | Raise :exc:`OSError` instead of :exc:`NotImplementedError`. |
Antoine Pitrou | 5136ac0 | 2012-01-13 18:52:16 +0100 | [diff] [blame] | 754 | |
Brett Cannon | 773468f | 2012-08-02 17:35:34 -0400 | [diff] [blame] | 755 | .. method:: set_data(path, data) |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 756 | |
| 757 | Optional abstract method which writes the specified bytes to a file |
Brett Cannon | 61b1425 | 2010-07-03 21:48:25 +0000 | [diff] [blame] | 758 | path. Any intermediate directories which do not exist are to be created |
| 759 | automatically. |
| 760 | |
| 761 | When writing to the path fails because the path is read-only |
Brett Cannon | 2cefb3c | 2013-05-25 11:26:11 -0400 | [diff] [blame] | 762 | (:attr:`errno.EACCES`/:exc:`PermissionError`), do not propagate the |
| 763 | exception. |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 764 | |
Brett Cannon | 100883f | 2013-04-09 16:59:39 -0400 | [diff] [blame] | 765 | .. versionchanged:: 3.4 |
| 766 | No longer raises :exc:`NotImplementedError` when called. |
| 767 | |
Brett Cannon | 773468f | 2012-08-02 17:35:34 -0400 | [diff] [blame] | 768 | .. method:: get_code(fullname) |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 769 | |
| 770 | Concrete implementation of :meth:`InspectLoader.get_code`. |
| 771 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 772 | .. method:: exec_module(module) |
| 773 | |
| 774 | Concrete implementation of :meth:`Loader.exec_module`. |
| 775 | |
Andrés Delfino | 65b5ef0 | 2018-08-12 03:50:46 -0300 | [diff] [blame] | 776 | .. versionadded:: 3.4 |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 777 | |
Brett Cannon | 773468f | 2012-08-02 17:35:34 -0400 | [diff] [blame] | 778 | .. method:: load_module(fullname) |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 779 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 780 | Concrete implementation of :meth:`Loader.load_module`. |
| 781 | |
| 782 | .. deprecated:: 3.4 |
| 783 | Use :meth:`exec_module` instead. |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 784 | |
Brett Cannon | 773468f | 2012-08-02 17:35:34 -0400 | [diff] [blame] | 785 | .. method:: get_source(fullname) |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 786 | |
| 787 | Concrete implementation of :meth:`InspectLoader.get_source`. |
| 788 | |
Brett Cannon | 773468f | 2012-08-02 17:35:34 -0400 | [diff] [blame] | 789 | .. method:: is_package(fullname) |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 790 | |
| 791 | Concrete implementation of :meth:`InspectLoader.is_package`. A module |
Brett Cannon | ea0b823 | 2012-06-15 20:00:53 -0400 | [diff] [blame] | 792 | is determined to be a package if its file path (as provided by |
| 793 | :meth:`ExecutionLoader.get_filename`) is a file named |
| 794 | ``__init__`` when the file extension is removed **and** the module name |
| 795 | itself does not end in ``__init__``. |
Brett Cannon | f23e374 | 2010-06-27 23:57:46 +0000 | [diff] [blame] | 796 | |
Brett Cannon | 6919427 | 2009-07-20 04:23:48 +0000 | [diff] [blame] | 797 | |
Barry Warsaw | deae6b4 | 2017-12-30 15:18:06 -0500 | [diff] [blame] | 798 | :mod:`importlib.resources` -- Resources |
| 799 | --------------------------------------- |
| 800 | |
| 801 | .. module:: importlib.resources |
| 802 | :synopsis: Package resource reading, opening, and access |
| 803 | |
| 804 | **Source code:** :source:`Lib/importlib/resources.py` |
| 805 | |
| 806 | -------------- |
| 807 | |
| 808 | .. versionadded:: 3.7 |
| 809 | |
| 810 | This module leverages Python's import system to provide access to *resources* |
| 811 | within *packages*. If you can import a package, you can access resources |
| 812 | within that package. Resources can be opened or read, in either binary or |
| 813 | text mode. |
| 814 | |
| 815 | Resources are roughly akin to files inside directories, though it's important |
| 816 | to keep in mind that this is just a metaphor. Resources and packages **do |
| 817 | not** have to exist as physical files and directories on the file system. |
| 818 | |
Barry Warsaw | 997b8c1 | 2018-02-16 10:45:39 -0500 | [diff] [blame] | 819 | .. note:: |
| 820 | |
| 821 | This module provides functionality similar to `pkg_resources |
| 822 | <https://setuptools.readthedocs.io/en/latest/pkg_resources.html>`_ `Basic |
| 823 | Resource Access |
| 824 | <http://setuptools.readthedocs.io/en/latest/pkg_resources.html#basic-resource-access>`_ |
| 825 | without the performance overhead of that package. This makes reading |
| 826 | resources included in packages easier, with more stable and consistent |
| 827 | semantics. |
| 828 | |
| 829 | The standalone backport of this module provides more information |
| 830 | on `using importlib.resources |
| 831 | <http://importlib-resources.readthedocs.io/en/latest/using.html>`_ and |
| 832 | `migrating from pkg_resources to importlib.resources |
| 833 | <http://importlib-resources.readthedocs.io/en/latest/migration.html>`_. |
| 834 | |
| 835 | Loaders that wish to support resource reading should implement a |
| 836 | ``get_resource_reader(fullname)`` method as specified by |
| 837 | :class:`importlib.abc.ResourceReader`. |
Barry Warsaw | deae6b4 | 2017-12-30 15:18:06 -0500 | [diff] [blame] | 838 | |
| 839 | The following types are defined. |
| 840 | |
| 841 | .. data:: Package |
| 842 | |
| 843 | The ``Package`` type is defined as ``Union[str, ModuleType]``. This means |
| 844 | that where the function describes accepting a ``Package``, you can pass in |
| 845 | either a string or a module. Module objects must have a resolvable |
| 846 | ``__spec__.submodule_search_locations`` that is not ``None``. |
| 847 | |
| 848 | .. data:: Resource |
| 849 | |
| 850 | This type describes the resource names passed into the various functions |
| 851 | in this package. This is defined as ``Union[str, os.PathLike]``. |
| 852 | |
| 853 | |
| 854 | The following functions are available. |
| 855 | |
| 856 | .. function:: open_binary(package, resource) |
| 857 | |
| 858 | Open for binary reading the *resource* within *package*. |
| 859 | |
| 860 | *package* is either a name or a module object which conforms to the |
| 861 | ``Package`` requirements. *resource* is the name of the resource to open |
| 862 | within *package*; it may not contain path separators and it may not have |
| 863 | sub-resources (i.e. it cannot be a directory). This function returns a |
| 864 | ``typing.BinaryIO`` instance, a binary I/O stream open for reading. |
| 865 | |
| 866 | |
| 867 | .. function:: open_text(package, resource, encoding='utf-8', errors='strict') |
| 868 | |
| 869 | Open for text reading the *resource* within *package*. By default, the |
| 870 | resource is opened for reading as UTF-8. |
| 871 | |
| 872 | *package* is either a name or a module object which conforms to the |
| 873 | ``Package`` requirements. *resource* is the name of the resource to open |
| 874 | within *package*; it may not contain path separators and it may not have |
| 875 | sub-resources (i.e. it cannot be a directory). *encoding* and *errors* |
| 876 | have the same meaning as with built-in :func:`open`. |
| 877 | |
| 878 | This function returns a ``typing.TextIO`` instance, a text I/O stream open |
| 879 | for reading. |
| 880 | |
| 881 | |
| 882 | .. function:: read_binary(package, resource) |
| 883 | |
| 884 | Read and return the contents of the *resource* within *package* as |
| 885 | ``bytes``. |
| 886 | |
| 887 | *package* is either a name or a module object which conforms to the |
| 888 | ``Package`` requirements. *resource* is the name of the resource to open |
| 889 | within *package*; it may not contain path separators and it may not have |
| 890 | sub-resources (i.e. it cannot be a directory). This function returns the |
| 891 | contents of the resource as :class:`bytes`. |
| 892 | |
| 893 | |
| 894 | .. function:: read_text(package, resource, encoding='utf-8', errors='strict') |
| 895 | |
| 896 | Read and return the contents of *resource* within *package* as a ``str``. |
| 897 | By default, the contents are read as strict UTF-8. |
| 898 | |
| 899 | *package* is either a name or a module object which conforms to the |
| 900 | ``Package`` requirements. *resource* is the name of the resource to open |
| 901 | within *package*; it may not contain path separators and it may not have |
| 902 | sub-resources (i.e. it cannot be a directory). *encoding* and *errors* |
| 903 | have the same meaning as with built-in :func:`open`. This function |
| 904 | returns the contents of the resource as :class:`str`. |
| 905 | |
| 906 | |
| 907 | .. function:: path(package, resource) |
| 908 | |
| 909 | Return the path to the *resource* as an actual file system path. This |
| 910 | function returns a context manager for use in a :keyword:`with` statement. |
| 911 | The context manager provides a :class:`pathlib.Path` object. |
| 912 | |
| 913 | Exiting the context manager cleans up any temporary file created when the |
| 914 | resource needs to be extracted from e.g. a zip file. |
| 915 | |
| 916 | *package* is either a name or a module object which conforms to the |
| 917 | ``Package`` requirements. *resource* is the name of the resource to open |
| 918 | within *package*; it may not contain path separators and it may not have |
| 919 | sub-resources (i.e. it cannot be a directory). |
| 920 | |
| 921 | |
| 922 | .. function:: is_resource(package, name) |
| 923 | |
| 924 | Return ``True`` if there is a resource named *name* in the package, |
| 925 | otherwise ``False``. Remember that directories are *not* resources! |
| 926 | *package* is either a name or a module object which conforms to the |
| 927 | ``Package`` requirements. |
| 928 | |
| 929 | |
| 930 | .. function:: contents(package) |
| 931 | |
Brett Cannon | 3ab9365 | 2018-04-30 11:31:45 -0700 | [diff] [blame] | 932 | Return an iterable over the named items within the package. The iterable |
Barry Warsaw | deae6b4 | 2017-12-30 15:18:06 -0500 | [diff] [blame] | 933 | returns :class:`str` resources (e.g. files) and non-resources |
Brett Cannon | 3ab9365 | 2018-04-30 11:31:45 -0700 | [diff] [blame] | 934 | (e.g. directories). The iterable does not recurse into subdirectories. |
Barry Warsaw | deae6b4 | 2017-12-30 15:18:06 -0500 | [diff] [blame] | 935 | |
| 936 | *package* is either a name or a module object which conforms to the |
| 937 | ``Package`` requirements. |
| 938 | |
| 939 | |
Brett Cannon | 78246b6 | 2009-01-25 04:56:30 +0000 | [diff] [blame] | 940 | :mod:`importlib.machinery` -- Importers and path hooks |
| 941 | ------------------------------------------------------ |
| 942 | |
| 943 | .. module:: importlib.machinery |
| 944 | :synopsis: Importers and path hooks |
| 945 | |
Terry Jan Reedy | dcb6c88 | 2016-06-22 22:46:34 -0400 | [diff] [blame] | 946 | **Source code:** :source:`Lib/importlib/machinery.py` |
| 947 | |
| 948 | -------------- |
| 949 | |
Brett Cannon | 78246b6 | 2009-01-25 04:56:30 +0000 | [diff] [blame] | 950 | This module contains the various objects that help :keyword:`import` |
| 951 | find and load modules. |
| 952 | |
Brett Cannon | cb66eb0 | 2012-05-11 12:58:42 -0400 | [diff] [blame] | 953 | .. attribute:: SOURCE_SUFFIXES |
| 954 | |
| 955 | A list of strings representing the recognized file suffixes for source |
| 956 | modules. |
| 957 | |
| 958 | .. versionadded:: 3.3 |
| 959 | |
| 960 | .. attribute:: DEBUG_BYTECODE_SUFFIXES |
| 961 | |
| 962 | A list of strings representing the file suffixes for non-optimized bytecode |
| 963 | modules. |
| 964 | |
| 965 | .. versionadded:: 3.3 |
| 966 | |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 967 | .. deprecated:: 3.5 |
| 968 | Use :attr:`BYTECODE_SUFFIXES` instead. |
| 969 | |
Brett Cannon | cb66eb0 | 2012-05-11 12:58:42 -0400 | [diff] [blame] | 970 | .. attribute:: OPTIMIZED_BYTECODE_SUFFIXES |
| 971 | |
| 972 | A list of strings representing the file suffixes for optimized bytecode |
| 973 | modules. |
| 974 | |
| 975 | .. versionadded:: 3.3 |
| 976 | |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 977 | .. deprecated:: 3.5 |
| 978 | Use :attr:`BYTECODE_SUFFIXES` instead. |
| 979 | |
Brett Cannon | cb66eb0 | 2012-05-11 12:58:42 -0400 | [diff] [blame] | 980 | .. attribute:: BYTECODE_SUFFIXES |
| 981 | |
| 982 | A list of strings representing the recognized file suffixes for bytecode |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 983 | modules (including the leading dot). |
Brett Cannon | cb66eb0 | 2012-05-11 12:58:42 -0400 | [diff] [blame] | 984 | |
| 985 | .. versionadded:: 3.3 |
| 986 | |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 987 | .. versionchanged:: 3.5 |
| 988 | The value is no longer dependent on ``__debug__``. |
| 989 | |
Brett Cannon | cb66eb0 | 2012-05-11 12:58:42 -0400 | [diff] [blame] | 990 | .. attribute:: EXTENSION_SUFFIXES |
| 991 | |
Nick Coghlan | 76e0770 | 2012-07-18 23:14:57 +1000 | [diff] [blame] | 992 | A list of strings representing the recognized file suffixes for |
Brett Cannon | cb66eb0 | 2012-05-11 12:58:42 -0400 | [diff] [blame] | 993 | extension modules. |
| 994 | |
| 995 | .. versionadded:: 3.3 |
| 996 | |
Nick Coghlan | c5afd42 | 2012-07-18 23:59:08 +1000 | [diff] [blame] | 997 | .. function:: all_suffixes() |
Nick Coghlan | 76e0770 | 2012-07-18 23:14:57 +1000 | [diff] [blame] | 998 | |
| 999 | Returns a combined list of strings representing all file suffixes for |
Nick Coghlan | c5afd42 | 2012-07-18 23:59:08 +1000 | [diff] [blame] | 1000 | modules recognized by the standard import machinery. This is a |
Nick Coghlan | 76e0770 | 2012-07-18 23:14:57 +1000 | [diff] [blame] | 1001 | helper for code which simply needs to know if a filesystem path |
Nick Coghlan | c5afd42 | 2012-07-18 23:59:08 +1000 | [diff] [blame] | 1002 | potentially refers to a module without needing any details on the kind |
Martin Panter | d21e0b5 | 2015-10-10 10:36:22 +0000 | [diff] [blame] | 1003 | of module (for example, :func:`inspect.getmodulename`). |
Nick Coghlan | 76e0770 | 2012-07-18 23:14:57 +1000 | [diff] [blame] | 1004 | |
| 1005 | .. versionadded:: 3.3 |
| 1006 | |
| 1007 | |
Brett Cannon | 78246b6 | 2009-01-25 04:56:30 +0000 | [diff] [blame] | 1008 | .. class:: BuiltinImporter |
| 1009 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 1010 | An :term:`importer` for built-in modules. All known built-in modules are |
| 1011 | listed in :data:`sys.builtin_module_names`. This class implements the |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 1012 | :class:`importlib.abc.MetaPathFinder` and |
| 1013 | :class:`importlib.abc.InspectLoader` ABCs. |
Brett Cannon | 78246b6 | 2009-01-25 04:56:30 +0000 | [diff] [blame] | 1014 | |
| 1015 | Only class methods are defined by this class to alleviate the need for |
| 1016 | instantiation. |
| 1017 | |
Nick Coghlan | d5cacbb | 2015-05-23 22:24:10 +1000 | [diff] [blame] | 1018 | .. versionchanged:: 3.5 |
| 1019 | As part of :pep:`489`, the builtin importer now implements |
| 1020 | :meth:`Loader.create_module` and :meth:`Loader.exec_module` |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 1021 | |
Brett Cannon | 78246b6 | 2009-01-25 04:56:30 +0000 | [diff] [blame] | 1022 | |
| 1023 | .. class:: FrozenImporter |
| 1024 | |
Brett Cannon | 2a922ed | 2009-03-09 03:35:50 +0000 | [diff] [blame] | 1025 | An :term:`importer` for frozen modules. This class implements the |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 1026 | :class:`importlib.abc.MetaPathFinder` and |
| 1027 | :class:`importlib.abc.InspectLoader` ABCs. |
Brett Cannon | 78246b6 | 2009-01-25 04:56:30 +0000 | [diff] [blame] | 1028 | |
| 1029 | Only class methods are defined by this class to alleviate the need for |
| 1030 | instantiation. |
| 1031 | |
Brett Cannon | debb98d | 2009-02-16 04:18:01 +0000 | [diff] [blame] | 1032 | |
Nick Coghlan | ff79486 | 2012-08-02 21:45:24 +1000 | [diff] [blame] | 1033 | .. class:: WindowsRegistryFinder |
| 1034 | |
| 1035 | :term:`Finder` for modules declared in the Windows registry. This class |
Himanshu Lakhara | 5cbb841 | 2018-03-24 02:56:35 +0530 | [diff] [blame] | 1036 | implements the :class:`importlib.abc.MetaPathFinder` ABC. |
Nick Coghlan | ff79486 | 2012-08-02 21:45:24 +1000 | [diff] [blame] | 1037 | |
| 1038 | Only class methods are defined by this class to alleviate the need for |
| 1039 | instantiation. |
| 1040 | |
| 1041 | .. versionadded:: 3.3 |
| 1042 | |
Steve Dower | 2036742 | 2016-12-07 13:02:27 -0800 | [diff] [blame] | 1043 | .. deprecated:: 3.6 |
| 1044 | Use :mod:`site` configuration instead. Future versions of Python may |
| 1045 | not enable this finder by default. |
| 1046 | |
Nick Coghlan | ff79486 | 2012-08-02 21:45:24 +1000 | [diff] [blame] | 1047 | |
Brett Cannon | debb98d | 2009-02-16 04:18:01 +0000 | [diff] [blame] | 1048 | .. class:: PathFinder |
| 1049 | |
Brett Cannon | 1b79918 | 2012-08-17 14:08:24 -0400 | [diff] [blame] | 1050 | A :term:`Finder` for :data:`sys.path` and package ``__path__`` attributes. |
| 1051 | This class implements the :class:`importlib.abc.MetaPathFinder` ABC. |
Brett Cannon | debb98d | 2009-02-16 04:18:01 +0000 | [diff] [blame] | 1052 | |
Brett Cannon | 1b79918 | 2012-08-17 14:08:24 -0400 | [diff] [blame] | 1053 | Only class methods are defined by this class to alleviate the need for |
| 1054 | instantiation. |
Brett Cannon | debb98d | 2009-02-16 04:18:01 +0000 | [diff] [blame] | 1055 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 1056 | .. classmethod:: find_spec(fullname, path=None, target=None) |
| 1057 | |
| 1058 | Class method that attempts to find a :term:`spec <module spec>` |
| 1059 | for the module specified by *fullname* on :data:`sys.path` or, if |
| 1060 | defined, on *path*. For each path entry that is searched, |
| 1061 | :data:`sys.path_importer_cache` is checked. If a non-false object |
| 1062 | is found then it is used as the :term:`path entry finder` to look |
| 1063 | for the module being searched for. If no entry is found in |
| 1064 | :data:`sys.path_importer_cache`, then :data:`sys.path_hooks` is |
| 1065 | searched for a finder for the path entry and, if found, is stored |
| 1066 | in :data:`sys.path_importer_cache` along with being queried about |
| 1067 | the module. If no finder is ever found then ``None`` is both |
| 1068 | stored in the cache and returned. |
| 1069 | |
| 1070 | .. versionadded:: 3.4 |
| 1071 | |
Brett Cannon | b6e2556 | 2014-11-21 12:19:28 -0500 | [diff] [blame] | 1072 | .. versionchanged:: 3.5 |
| 1073 | If the current working directory -- represented by an empty string -- |
| 1074 | is no longer valid then ``None`` is returned but no value is cached |
| 1075 | in :data:`sys.path_importer_cache`. |
| 1076 | |
Brett Cannon | 1b79918 | 2012-08-17 14:08:24 -0400 | [diff] [blame] | 1077 | .. classmethod:: find_module(fullname, path=None) |
Brett Cannon | debb98d | 2009-02-16 04:18:01 +0000 | [diff] [blame] | 1078 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 1079 | A legacy wrapper around :meth:`find_spec`. |
| 1080 | |
| 1081 | .. deprecated:: 3.4 |
| 1082 | Use :meth:`find_spec` instead. |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 1083 | |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 1084 | .. classmethod:: invalidate_caches() |
| 1085 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 1086 | Calls :meth:`importlib.abc.PathEntryFinder.invalidate_caches` on all |
Brett Cannon | 9e2be60 | 2018-04-06 16:10:18 -0700 | [diff] [blame] | 1087 | finders stored in :data:`sys.path_importer_cache` that define the method. |
| 1088 | Otherwise entries in :data:`sys.path_importer_cache` set to ``None`` are |
| 1089 | deleted. |
| 1090 | |
| 1091 | .. versionchanged:: 3.7 |
| 1092 | Entries of ``None`` in :data:`sys.path_importer_cache` are deleted. |
Brett Cannon | f4dc920 | 2012-08-10 12:21:12 -0400 | [diff] [blame] | 1093 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 1094 | .. versionchanged:: 3.4 |
| 1095 | Calls objects in :data:`sys.path_hooks` with the current working |
| 1096 | directory for ``''`` (i.e. the empty string). |
Brett Cannon | 27e27f7 | 2013-10-18 11:39:04 -0400 | [diff] [blame] | 1097 | |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 1098 | |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1099 | .. class:: FileFinder(path, \*loader_details) |
| 1100 | |
Nick Coghlan | 8a9080f | 2012-08-02 21:26:03 +1000 | [diff] [blame] | 1101 | A concrete implementation of :class:`importlib.abc.PathEntryFinder` which |
| 1102 | caches results from the file system. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1103 | |
| 1104 | The *path* argument is the directory for which the finder is in charge of |
| 1105 | searching. |
| 1106 | |
Brett Cannon | ac9f2f3 | 2012-08-10 13:47:54 -0400 | [diff] [blame] | 1107 | The *loader_details* argument is a variable number of 2-item tuples each |
| 1108 | containing a loader and a sequence of file suffixes the loader recognizes. |
Brett Cannon | 29b2f17 | 2013-06-21 18:31:55 -0400 | [diff] [blame] | 1109 | The loaders are expected to be callables which accept two arguments of |
| 1110 | the module's name and the path to the file found. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1111 | |
| 1112 | The finder will cache the directory contents as necessary, making stat calls |
| 1113 | for each module search to verify the cache is not outdated. Because cache |
| 1114 | staleness relies upon the granularity of the operating system's state |
| 1115 | information of the file system, there is a potential race condition of |
| 1116 | searching for a module, creating a new file, and then searching for the |
| 1117 | module the new file represents. If the operations happen fast enough to fit |
| 1118 | within the granularity of stat calls, then the module search will fail. To |
| 1119 | prevent this from happening, when you create a module dynamically, make sure |
| 1120 | to call :func:`importlib.invalidate_caches`. |
| 1121 | |
| 1122 | .. versionadded:: 3.3 |
| 1123 | |
| 1124 | .. attribute:: path |
| 1125 | |
| 1126 | The path the finder will search in. |
| 1127 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 1128 | .. method:: find_spec(fullname, target=None) |
| 1129 | |
| 1130 | Attempt to find the spec to handle *fullname* within :attr:`path`. |
| 1131 | |
| 1132 | .. versionadded:: 3.4 |
| 1133 | |
Brett Cannon | 1d75382 | 2013-06-16 19:06:55 -0400 | [diff] [blame] | 1134 | .. method:: find_loader(fullname) |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1135 | |
| 1136 | Attempt to find the loader to handle *fullname* within :attr:`path`. |
| 1137 | |
| 1138 | .. method:: invalidate_caches() |
| 1139 | |
| 1140 | Clear out the internal cache. |
| 1141 | |
| 1142 | .. classmethod:: path_hook(\*loader_details) |
| 1143 | |
| 1144 | A class method which returns a closure for use on :attr:`sys.path_hooks`. |
| 1145 | An instance of :class:`FileFinder` is returned by the closure using the |
| 1146 | path argument given to the closure directly and *loader_details* |
| 1147 | indirectly. |
| 1148 | |
| 1149 | If the argument to the closure is not an existing directory, |
| 1150 | :exc:`ImportError` is raised. |
| 1151 | |
| 1152 | |
| 1153 | .. class:: SourceFileLoader(fullname, path) |
| 1154 | |
| 1155 | A concrete implementation of :class:`importlib.abc.SourceLoader` by |
| 1156 | subclassing :class:`importlib.abc.FileLoader` and providing some concrete |
| 1157 | implementations of other methods. |
| 1158 | |
| 1159 | .. versionadded:: 3.3 |
| 1160 | |
| 1161 | .. attribute:: name |
| 1162 | |
| 1163 | The name of the module that this loader will handle. |
| 1164 | |
| 1165 | .. attribute:: path |
| 1166 | |
| 1167 | The path to the source file. |
| 1168 | |
| 1169 | .. method:: is_package(fullname) |
| 1170 | |
Serhiy Storchaka | 138ccbb | 2019-11-12 16:57:03 +0200 | [diff] [blame] | 1171 | Return ``True`` if :attr:`path` appears to be for a package. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1172 | |
| 1173 | .. method:: path_stats(path) |
| 1174 | |
| 1175 | Concrete implementation of :meth:`importlib.abc.SourceLoader.path_stats`. |
| 1176 | |
| 1177 | .. method:: set_data(path, data) |
| 1178 | |
| 1179 | Concrete implementation of :meth:`importlib.abc.SourceLoader.set_data`. |
| 1180 | |
Brett Cannon | 062fcac | 2014-05-09 11:55:49 -0400 | [diff] [blame] | 1181 | .. method:: load_module(name=None) |
| 1182 | |
| 1183 | Concrete implementation of :meth:`importlib.abc.Loader.load_module` where |
| 1184 | specifying the name of the module to load is optional. |
| 1185 | |
Brett Cannon | eae3079 | 2015-12-28 17:55:27 -0800 | [diff] [blame] | 1186 | .. deprecated:: 3.6 |
| 1187 | |
| 1188 | Use :meth:`importlib.abc.Loader.exec_module` instead. |
| 1189 | |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1190 | |
Marc-Andre Lemburg | 4fe29c9 | 2012-04-25 02:31:37 +0200 | [diff] [blame] | 1191 | .. class:: SourcelessFileLoader(fullname, path) |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1192 | |
| 1193 | A concrete implementation of :class:`importlib.abc.FileLoader` which can |
| 1194 | import bytecode files (i.e. no source code files exist). |
| 1195 | |
Marc-Andre Lemburg | 4fe29c9 | 2012-04-25 02:31:37 +0200 | [diff] [blame] | 1196 | Please note that direct use of bytecode files (and thus not source code |
| 1197 | files) inhibits your modules from being usable by all Python |
| 1198 | implementations or new versions of Python which change the bytecode |
| 1199 | format. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1200 | |
| 1201 | .. versionadded:: 3.3 |
| 1202 | |
| 1203 | .. attribute:: name |
| 1204 | |
| 1205 | The name of the module the loader will handle. |
| 1206 | |
| 1207 | .. attribute:: path |
| 1208 | |
| 1209 | The path to the bytecode file. |
| 1210 | |
| 1211 | .. method:: is_package(fullname) |
| 1212 | |
| 1213 | Determines if the module is a package based on :attr:`path`. |
| 1214 | |
| 1215 | .. method:: get_code(fullname) |
| 1216 | |
| 1217 | Returns the code object for :attr:`name` created from :attr:`path`. |
| 1218 | |
| 1219 | .. method:: get_source(fullname) |
| 1220 | |
| 1221 | Returns ``None`` as bytecode files have no source when this loader is |
| 1222 | used. |
| 1223 | |
Brett Cannon | 062fcac | 2014-05-09 11:55:49 -0400 | [diff] [blame] | 1224 | .. method:: load_module(name=None) |
| 1225 | |
| 1226 | Concrete implementation of :meth:`importlib.abc.Loader.load_module` where |
| 1227 | specifying the name of the module to load is optional. |
| 1228 | |
Brett Cannon | eae3079 | 2015-12-28 17:55:27 -0800 | [diff] [blame] | 1229 | .. deprecated:: 3.6 |
| 1230 | |
| 1231 | Use :meth:`importlib.abc.Loader.exec_module` instead. |
| 1232 | |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1233 | |
| 1234 | .. class:: ExtensionFileLoader(fullname, path) |
| 1235 | |
Eric Snow | 5179445 | 2013-10-03 12:08:55 -0600 | [diff] [blame] | 1236 | A concrete implementation of :class:`importlib.abc.ExecutionLoader` for |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1237 | extension modules. |
| 1238 | |
| 1239 | The *fullname* argument specifies the name of the module the loader is to |
| 1240 | support. The *path* argument is the path to the extension module's file. |
| 1241 | |
| 1242 | .. versionadded:: 3.3 |
| 1243 | |
| 1244 | .. attribute:: name |
| 1245 | |
| 1246 | Name of the module the loader supports. |
| 1247 | |
| 1248 | .. attribute:: path |
| 1249 | |
| 1250 | Path to the extension module. |
| 1251 | |
Nick Coghlan | d5cacbb | 2015-05-23 22:24:10 +1000 | [diff] [blame] | 1252 | .. method:: create_module(spec) |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1253 | |
Nick Coghlan | d5cacbb | 2015-05-23 22:24:10 +1000 | [diff] [blame] | 1254 | Creates the module object from the given specification in accordance |
| 1255 | with :pep:`489`. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1256 | |
Nick Coghlan | d5cacbb | 2015-05-23 22:24:10 +1000 | [diff] [blame] | 1257 | .. versionadded:: 3.5 |
| 1258 | |
| 1259 | .. method:: exec_module(module) |
| 1260 | |
| 1261 | Initializes the given module object in accordance with :pep:`489`. |
| 1262 | |
| 1263 | .. versionadded:: 3.5 |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 1264 | |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1265 | .. method:: is_package(fullname) |
| 1266 | |
Brett Cannon | ac9f2f3 | 2012-08-10 13:47:54 -0400 | [diff] [blame] | 1267 | Returns ``True`` if the file path points to a package's ``__init__`` |
| 1268 | module based on :attr:`EXTENSION_SUFFIXES`. |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1269 | |
| 1270 | .. method:: get_code(fullname) |
| 1271 | |
| 1272 | Returns ``None`` as extension modules lack a code object. |
| 1273 | |
| 1274 | .. method:: get_source(fullname) |
| 1275 | |
| 1276 | Returns ``None`` as extension modules do not have source code. |
| 1277 | |
Eric Snow | 5179445 | 2013-10-03 12:08:55 -0600 | [diff] [blame] | 1278 | .. method:: get_filename(fullname) |
| 1279 | |
| 1280 | Returns :attr:`path`. |
| 1281 | |
Eric Snow | dcd01b4 | 2013-10-04 20:35:34 -0600 | [diff] [blame] | 1282 | .. versionadded:: 3.4 |
| 1283 | |
Brett Cannon | 938d44d | 2012-04-22 19:58:33 -0400 | [diff] [blame] | 1284 | |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1285 | .. class:: ModuleSpec(name, loader, *, origin=None, loader_state=None, is_package=None) |
| 1286 | |
Barry Warsaw | 191e313 | 2017-10-17 15:52:38 -0400 | [diff] [blame] | 1287 | A specification for a module's import-system-related state. This is |
| 1288 | typically exposed as the module's ``__spec__`` attribute. In the |
| 1289 | descriptions below, the names in parentheses give the corresponding |
| 1290 | attribute available directly on the module object. |
| 1291 | E.g. ``module.__spec__.origin == module.__file__``. Note however that |
| 1292 | while the *values* are usually equivalent, they can differ since there is |
| 1293 | no synchronization between the two objects. Thus it is possible to update |
| 1294 | the module's ``__path__`` at runtime, and this will not be automatically |
| 1295 | reflected in ``__spec__.submodule_search_locations``. |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1296 | |
| 1297 | .. versionadded:: 3.4 |
| 1298 | |
| 1299 | .. attribute:: name |
| 1300 | |
| 1301 | (``__name__``) |
| 1302 | |
| 1303 | A string for the fully-qualified name of the module. |
| 1304 | |
| 1305 | .. attribute:: loader |
| 1306 | |
| 1307 | (``__loader__``) |
| 1308 | |
| 1309 | The loader to use for loading. For namespace packages this should be |
Serhiy Storchaka | ecf41da | 2016-10-19 16:29:26 +0300 | [diff] [blame] | 1310 | set to ``None``. |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1311 | |
| 1312 | .. attribute:: origin |
| 1313 | |
| 1314 | (``__file__``) |
| 1315 | |
| 1316 | Name of the place from which the module is loaded, e.g. "builtin" for |
| 1317 | built-in modules and the filename for modules loaded from source. |
Serhiy Storchaka | ecf41da | 2016-10-19 16:29:26 +0300 | [diff] [blame] | 1318 | Normally "origin" should be set, but it may be ``None`` (the default) |
Barry Warsaw | bbbcf86 | 2018-02-02 15:15:58 -0500 | [diff] [blame] | 1319 | which indicates it is unspecified (e.g. for namespace packages). |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1320 | |
| 1321 | .. attribute:: submodule_search_locations |
| 1322 | |
| 1323 | (``__path__``) |
| 1324 | |
Serhiy Storchaka | ecf41da | 2016-10-19 16:29:26 +0300 | [diff] [blame] | 1325 | List of strings for where to find submodules, if a package (``None`` |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1326 | otherwise). |
| 1327 | |
| 1328 | .. attribute:: loader_state |
| 1329 | |
| 1330 | Container of extra module-specific data for use during loading (or |
Serhiy Storchaka | ecf41da | 2016-10-19 16:29:26 +0300 | [diff] [blame] | 1331 | ``None``). |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1332 | |
| 1333 | .. attribute:: cached |
| 1334 | |
| 1335 | (``__cached__``) |
| 1336 | |
Serhiy Storchaka | ecf41da | 2016-10-19 16:29:26 +0300 | [diff] [blame] | 1337 | String for where the compiled module should be stored (or ``None``). |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1338 | |
| 1339 | .. attribute:: parent |
| 1340 | |
| 1341 | (``__package__``) |
| 1342 | |
| 1343 | (Read-only) Fully-qualified name of the package to which the module |
Serhiy Storchaka | ecf41da | 2016-10-19 16:29:26 +0300 | [diff] [blame] | 1344 | belongs as a submodule (or ``None``). |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1345 | |
| 1346 | .. attribute:: has_location |
| 1347 | |
Eric Snow | b282b3d | 2013-12-10 22:16:41 -0700 | [diff] [blame] | 1348 | Boolean indicating whether or not the module's "origin" |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1349 | attribute refers to a loadable location. |
| 1350 | |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 1351 | :mod:`importlib.util` -- Utility code for importers |
| 1352 | --------------------------------------------------- |
| 1353 | |
| 1354 | .. module:: importlib.util |
Brett Cannon | 75321e8 | 2012-03-02 11:58:25 -0500 | [diff] [blame] | 1355 | :synopsis: Utility code for importers |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 1356 | |
Terry Jan Reedy | dcb6c88 | 2016-06-22 22:46:34 -0400 | [diff] [blame] | 1357 | |
| 1358 | **Source code:** :source:`Lib/importlib/util.py` |
| 1359 | |
| 1360 | -------------- |
| 1361 | |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 1362 | This module contains the various objects that help in the construction of |
| 1363 | an :term:`importer`. |
| 1364 | |
Brett Cannon | 05a647d | 2013-06-14 19:02:34 -0400 | [diff] [blame] | 1365 | .. attribute:: MAGIC_NUMBER |
| 1366 | |
| 1367 | The bytes which represent the bytecode version number. If you need help with |
| 1368 | loading/writing bytecode then consider :class:`importlib.abc.SourceLoader`. |
| 1369 | |
| 1370 | .. versionadded:: 3.4 |
| 1371 | |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 1372 | .. function:: cache_from_source(path, debug_override=None, *, optimization=None) |
Brett Cannon | a3c9615 | 2013-06-14 22:26:30 -0400 | [diff] [blame] | 1373 | |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 1374 | Return the :pep:`3147`/:pep:`488` path to the byte-compiled file associated |
| 1375 | 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] | 1376 | value would be ``/foo/bar/__pycache__/baz.cpython-32.pyc`` for Python 3.2. |
| 1377 | The ``cpython-32`` string comes from the current magic tag (see |
| 1378 | :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] | 1379 | :exc:`NotImplementedError` will be raised). |
Brett Cannon | a3c9615 | 2013-06-14 22:26:30 -0400 | [diff] [blame] | 1380 | |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 1381 | The *optimization* parameter is used to specify the optimization level of the |
| 1382 | bytecode file. An empty string represents no optimization, so |
| 1383 | ``/foo/bar/baz.py`` with an *optimization* of ``''`` will result in a |
| 1384 | bytecode path of ``/foo/bar/__pycache__/baz.cpython-32.pyc``. ``None`` causes |
Min ho Kim | 39d87b5 | 2019-08-31 06:21:19 +1000 | [diff] [blame] | 1385 | the interpreter's optimization level to be used. Any other value's string |
| 1386 | representation is used, so ``/foo/bar/baz.py`` with an *optimization* of |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 1387 | ``2`` will lead to the bytecode path of |
| 1388 | ``/foo/bar/__pycache__/baz.cpython-32.opt-2.pyc``. The string representation |
| 1389 | of *optimization* can only be alphanumeric, else :exc:`ValueError` is raised. |
| 1390 | |
| 1391 | The *debug_override* parameter is deprecated and can be used to override |
| 1392 | the system's value for ``__debug__``. A ``True`` value is the equivalent of |
| 1393 | setting *optimization* to the empty string. A ``False`` value is the same as |
| 1394 | setting *optimization* to ``1``. If both *debug_override* an *optimization* |
| 1395 | are not ``None`` then :exc:`TypeError` is raised. |
Brett Cannon | a3c9615 | 2013-06-14 22:26:30 -0400 | [diff] [blame] | 1396 | |
| 1397 | .. versionadded:: 3.4 |
| 1398 | |
Berker Peksag | fe5f614 | 2016-01-30 19:30:06 +0200 | [diff] [blame] | 1399 | .. versionchanged:: 3.5 |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 1400 | The *optimization* parameter was added and the *debug_override* parameter |
| 1401 | was deprecated. |
| 1402 | |
Brett Cannon | 035a100 | 2016-09-07 18:39:18 -0700 | [diff] [blame] | 1403 | .. versionchanged:: 3.6 |
| 1404 | Accepts a :term:`path-like object`. |
| 1405 | |
Brett Cannon | a3c9615 | 2013-06-14 22:26:30 -0400 | [diff] [blame] | 1406 | |
| 1407 | .. function:: source_from_cache(path) |
| 1408 | |
| 1409 | Given the *path* to a :pep:`3147` file name, return the associated source code |
| 1410 | file path. For example, if *path* is |
| 1411 | ``/foo/bar/__pycache__/baz.cpython-32.pyc`` the returned path would be |
| 1412 | ``/foo/bar/baz.py``. *path* need not exist, however if it does not conform |
Stéphane Wirtel | e483f02 | 2018-10-26 12:52:11 +0200 | [diff] [blame] | 1413 | to :pep:`3147` or :pep:`488` format, a :exc:`ValueError` is raised. If |
Brett Cannon | a3c9615 | 2013-06-14 22:26:30 -0400 | [diff] [blame] | 1414 | :attr:`sys.implementation.cache_tag` is not defined, |
| 1415 | :exc:`NotImplementedError` is raised. |
| 1416 | |
| 1417 | .. versionadded:: 3.4 |
| 1418 | |
Brett Cannon | 035a100 | 2016-09-07 18:39:18 -0700 | [diff] [blame] | 1419 | .. versionchanged:: 3.6 |
| 1420 | Accepts a :term:`path-like object`. |
| 1421 | |
Brett Cannon | f24fecd | 2013-06-16 18:37:53 -0400 | [diff] [blame] | 1422 | .. function:: decode_source(source_bytes) |
| 1423 | |
| 1424 | Decode the given bytes representing source code and return it as a string |
| 1425 | with universal newlines (as required by |
| 1426 | :meth:`importlib.abc.InspectLoader.get_source`). |
| 1427 | |
| 1428 | .. versionadded:: 3.4 |
| 1429 | |
Brett Cannon | d200bf5 | 2012-05-13 13:45:09 -0400 | [diff] [blame] | 1430 | .. function:: resolve_name(name, package) |
| 1431 | |
| 1432 | Resolve a relative module name to an absolute one. |
| 1433 | |
| 1434 | If **name** has no leading dots, then **name** is simply returned. This |
| 1435 | allows for usage such as |
| 1436 | ``importlib.util.resolve_name('sys', __package__)`` without doing a |
| 1437 | check to see if the **package** argument is needed. |
| 1438 | |
Ngalim Siregar | c5fa449 | 2019-08-03 12:46:02 +0700 | [diff] [blame] | 1439 | :exc:`ImportError` is raised if **name** is a relative module name but |
| 1440 | **package** is a false value (e.g. ``None`` or the empty string). |
| 1441 | :exc:`ImportError` is also raised a relative name would escape its containing |
Brett Cannon | d200bf5 | 2012-05-13 13:45:09 -0400 | [diff] [blame] | 1442 | package (e.g. requesting ``..bacon`` from within the ``spam`` package). |
| 1443 | |
| 1444 | .. versionadded:: 3.3 |
| 1445 | |
Ngalim Siregar | c5fa449 | 2019-08-03 12:46:02 +0700 | [diff] [blame] | 1446 | .. versionchanged:: 3.9 |
| 1447 | To improve consistency with import statements, raise |
| 1448 | :exc:`ImportError` instead of :exc:`ValueError` for invalid relative |
| 1449 | import attempts. |
| 1450 | |
Eric Snow | 6029e08 | 2014-01-25 15:32:46 -0700 | [diff] [blame] | 1451 | .. function:: find_spec(name, package=None) |
| 1452 | |
| 1453 | Find the :term:`spec <module spec>` for a module, optionally relative to |
| 1454 | the specified **package** name. If the module is in :attr:`sys.modules`, |
| 1455 | then ``sys.modules[name].__spec__`` is returned (unless the spec would be |
| 1456 | ``None`` or is not set, in which case :exc:`ValueError` is raised). |
| 1457 | Otherwise a search using :attr:`sys.meta_path` is done. ``None`` is |
| 1458 | returned if no spec is found. |
| 1459 | |
| 1460 | If **name** is for a submodule (contains a dot), the parent module is |
| 1461 | automatically imported. |
| 1462 | |
| 1463 | **name** and **package** work the same as for :func:`import_module`. |
| 1464 | |
| 1465 | .. versionadded:: 3.4 |
| 1466 | |
Milan Oberkirch | 8c3f05e | 2017-06-15 07:34:50 +1000 | [diff] [blame] | 1467 | .. versionchanged:: 3.7 |
| 1468 | Raises :exc:`ModuleNotFoundError` instead of :exc:`AttributeError` if |
| 1469 | **package** is in fact not a package (i.e. lacks a :attr:`__path__` |
| 1470 | attribute). |
| 1471 | |
Brett Cannon | 2a17bde | 2014-05-30 14:55:29 -0400 | [diff] [blame] | 1472 | .. function:: module_from_spec(spec) |
| 1473 | |
Brett Cannon | 696c35e | 2016-06-25 10:58:17 -0700 | [diff] [blame] | 1474 | Create a new module based on **spec** and |
| 1475 | :meth:`spec.loader.create_module <importlib.abc.Loader.create_module>`. |
Brett Cannon | 2a17bde | 2014-05-30 14:55:29 -0400 | [diff] [blame] | 1476 | |
Brett Cannon | 696c35e | 2016-06-25 10:58:17 -0700 | [diff] [blame] | 1477 | If :meth:`spec.loader.create_module <importlib.abc.Loader.create_module>` |
| 1478 | does not return ``None``, then any pre-existing attributes will not be reset. |
| 1479 | Also, no :exc:`AttributeError` will be raised if triggered while accessing |
| 1480 | **spec** or setting an attribute on the module. |
Brett Cannon | 2a17bde | 2014-05-30 14:55:29 -0400 | [diff] [blame] | 1481 | |
| 1482 | This function is preferred over using :class:`types.ModuleType` to create a |
| 1483 | new module as **spec** is used to set as many import-controlled attributes on |
| 1484 | the module as possible. |
| 1485 | |
| 1486 | .. versionadded:: 3.5 |
| 1487 | |
Georg Brandl | 8a1caa2 | 2010-07-29 16:01:11 +0000 | [diff] [blame] | 1488 | .. decorator:: module_for_loader |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 1489 | |
Brett Cannon | a22faca | 2013-05-28 17:50:14 -0400 | [diff] [blame] | 1490 | A :term:`decorator` for :meth:`importlib.abc.Loader.load_module` |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 1491 | to handle selecting the proper |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 1492 | 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] | 1493 | signature taking two positional arguments |
| 1494 | (e.g. ``load_module(self, module)``) for which the second argument |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 1495 | will be the module **object** to be used by the loader. |
Brett Cannon | efad00d | 2012-04-27 17:27:14 -0400 | [diff] [blame] | 1496 | Note that the decorator will not work on static methods because of the |
| 1497 | assumption of two arguments. |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 1498 | |
Guido van Rossum | 0961354 | 2009-03-30 20:34:57 +0000 | [diff] [blame] | 1499 | The decorated method will take in the **name** of the module to be loaded |
| 1500 | 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] | 1501 | :data:`sys.modules` then a new one is constructed. Regardless of where the |
| 1502 | module came from, :attr:`__loader__` set to **self** and :attr:`__package__` |
| 1503 | is set based on what :meth:`importlib.abc.InspectLoader.is_package` returns |
| 1504 | (if available). These attributes are set unconditionally to support |
| 1505 | reloading. |
Brett Cannon | efad00d | 2012-04-27 17:27:14 -0400 | [diff] [blame] | 1506 | |
| 1507 | 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] | 1508 | :data:`sys.modules`, then the module will be removed to prevent a partially |
| 1509 | initialized module from being in left in :data:`sys.modules`. If the module |
| 1510 | was already in :data:`sys.modules` then it is left alone. |
Brett Cannon | d2e7b33 | 2009-02-17 02:45:03 +0000 | [diff] [blame] | 1511 | |
Brett Cannon | efad00d | 2012-04-27 17:27:14 -0400 | [diff] [blame] | 1512 | .. versionchanged:: 3.3 |
Georg Brandl | 61063cc | 2012-06-24 22:48:30 +0200 | [diff] [blame] | 1513 | :attr:`__loader__` and :attr:`__package__` are automatically set |
| 1514 | (when possible). |
Brett Cannon | 57b46f5 | 2009-03-02 14:38:26 +0000 | [diff] [blame] | 1515 | |
Brett Cannon | 3dc48d6 | 2013-05-28 18:35:54 -0400 | [diff] [blame] | 1516 | .. versionchanged:: 3.4 |
Brett Cannon | 0dbb4c7 | 2013-05-31 18:56:47 -0400 | [diff] [blame] | 1517 | Set :attr:`__name__`, :attr:`__loader__` :attr:`__package__` |
| 1518 | unconditionally to support reloading. |
| 1519 | |
| 1520 | .. deprecated:: 3.4 |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1521 | The import machinery now directly performs all the functionality |
| 1522 | provided by this function. |
Brett Cannon | 3dc48d6 | 2013-05-28 18:35:54 -0400 | [diff] [blame] | 1523 | |
Georg Brandl | 8a1caa2 | 2010-07-29 16:01:11 +0000 | [diff] [blame] | 1524 | .. decorator:: set_loader |
Brett Cannon | 2cf03a8 | 2009-03-10 05:17:37 +0000 | [diff] [blame] | 1525 | |
Brett Cannon | a22faca | 2013-05-28 17:50:14 -0400 | [diff] [blame] | 1526 | A :term:`decorator` for :meth:`importlib.abc.Loader.load_module` |
| 1527 | to set the :attr:`__loader__` |
| 1528 | attribute on the returned module. If the attribute is already set the |
| 1529 | decorator does nothing. It is assumed that the first positional argument to |
| 1530 | the wrapped method (i.e. ``self``) is what :attr:`__loader__` should be set |
| 1531 | to. |
Brett Cannon | 2cf03a8 | 2009-03-10 05:17:37 +0000 | [diff] [blame] | 1532 | |
Brett Cannon | 4802bec | 2013-03-13 10:41:36 -0700 | [diff] [blame] | 1533 | .. versionchanged:: 3.4 |
Brett Cannon | 4c14b5d | 2013-05-04 13:56:58 -0400 | [diff] [blame] | 1534 | Set ``__loader__`` if set to ``None``, as if the attribute does not |
Brett Cannon | 4802bec | 2013-03-13 10:41:36 -0700 | [diff] [blame] | 1535 | exist. |
| 1536 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 1537 | .. deprecated:: 3.4 |
| 1538 | The import machinery takes care of this automatically. |
| 1539 | |
Georg Brandl | 8a1caa2 | 2010-07-29 16:01:11 +0000 | [diff] [blame] | 1540 | .. decorator:: set_package |
Brett Cannon | 57b46f5 | 2009-03-02 14:38:26 +0000 | [diff] [blame] | 1541 | |
Brett Cannon | 696c35e | 2016-06-25 10:58:17 -0700 | [diff] [blame] | 1542 | A :term:`decorator` for :meth:`importlib.abc.Loader.load_module` to set the |
| 1543 | :attr:`__package__` attribute on the returned module. If :attr:`__package__` |
Brett Cannon | a22faca | 2013-05-28 17:50:14 -0400 | [diff] [blame] | 1544 | 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] | 1545 | |
Eric Snow | ca2d854 | 2013-12-16 23:06:52 -0700 | [diff] [blame] | 1546 | .. deprecated:: 3.4 |
| 1547 | The import machinery takes care of this automatically. |
| 1548 | |
Eric Snow | b523f84 | 2013-11-22 09:05:39 -0700 | [diff] [blame] | 1549 | .. function:: spec_from_loader(name, loader, *, origin=None, is_package=None) |
| 1550 | |
| 1551 | A factory function for creating a :class:`ModuleSpec` instance based |
| 1552 | on a loader. The parameters have the same meaning as they do for |
| 1553 | ModuleSpec. The function uses available :term:`loader` APIs, such as |
| 1554 | :meth:`InspectLoader.is_package`, to fill in any missing |
| 1555 | information on the spec. |
| 1556 | |
| 1557 | .. versionadded:: 3.4 |
| 1558 | |
| 1559 | .. function:: spec_from_file_location(name, location, *, loader=None, submodule_search_locations=None) |
| 1560 | |
| 1561 | A factory function for creating a :class:`ModuleSpec` instance based |
| 1562 | on the path to a file. Missing information will be filled in on the |
| 1563 | spec by making use of loader APIs and by the implication that the |
| 1564 | module will be file-based. |
| 1565 | |
| 1566 | .. versionadded:: 3.4 |
Brett Cannon | a04dbe4 | 2014-04-04 13:53:38 -0400 | [diff] [blame] | 1567 | |
Brett Cannon | 035a100 | 2016-09-07 18:39:18 -0700 | [diff] [blame] | 1568 | .. versionchanged:: 3.6 |
| 1569 | Accepts a :term:`path-like object`. |
| 1570 | |
Benjamin Peterson | 42aa93b | 2017-12-09 10:26:52 -0800 | [diff] [blame] | 1571 | .. function:: source_hash(source_bytes) |
| 1572 | |
| 1573 | Return the hash of *source_bytes* as bytes. A hash-based ``.pyc`` file embeds |
| 1574 | the :func:`source_hash` of the corresponding source file's contents in its |
| 1575 | header. |
| 1576 | |
| 1577 | .. versionadded:: 3.7 |
| 1578 | |
Brett Cannon | a04dbe4 | 2014-04-04 13:53:38 -0400 | [diff] [blame] | 1579 | .. class:: LazyLoader(loader) |
| 1580 | |
| 1581 | A class which postpones the execution of the loader of a module until the |
| 1582 | module has an attribute accessed. |
| 1583 | |
| 1584 | This class **only** works with loaders that define |
Brett Cannon | 02d8454 | 2015-01-09 11:39:21 -0500 | [diff] [blame] | 1585 | :meth:`~importlib.abc.Loader.exec_module` as control over what module type |
| 1586 | 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] | 1587 | :meth:`~importlib.abc.Loader.create_module` method must return ``None`` or a |
| 1588 | type for which its ``__class__`` attribute can be mutated along with not |
| 1589 | using :term:`slots <__slots__>`. Finally, modules which substitute the object |
| 1590 | placed into :attr:`sys.modules` will not work as there is no way to properly |
| 1591 | replace the module references throughout the interpreter safely; |
| 1592 | :exc:`ValueError` is raised if such a substitution is detected. |
Brett Cannon | a04dbe4 | 2014-04-04 13:53:38 -0400 | [diff] [blame] | 1593 | |
| 1594 | .. note:: |
| 1595 | For projects where startup time is critical, this class allows for |
| 1596 | potentially minimizing the cost of loading a module if it is never used. |
| 1597 | For projects where startup time is not essential then use of this class is |
| 1598 | **heavily** discouraged due to error messages created during loading being |
| 1599 | postponed and thus occurring out of context. |
| 1600 | |
| 1601 | .. versionadded:: 3.5 |
| 1602 | |
Brett Cannon | 696c35e | 2016-06-25 10:58:17 -0700 | [diff] [blame] | 1603 | .. versionchanged:: 3.6 |
| 1604 | Began calling :meth:`~importlib.abc.Loader.create_module`, removing the |
| 1605 | compatibility warning for :class:`importlib.machinery.BuiltinImporter` and |
| 1606 | :class:`importlib.machinery.ExtensionFileLoader`. |
| 1607 | |
Brett Cannon | a04dbe4 | 2014-04-04 13:53:38 -0400 | [diff] [blame] | 1608 | .. classmethod:: factory(loader) |
| 1609 | |
| 1610 | A static method which returns a callable that creates a lazy loader. This |
| 1611 | is meant to be used in situations where the loader is passed by class |
| 1612 | instead of by instance. |
| 1613 | :: |
| 1614 | |
| 1615 | suffixes = importlib.machinery.SOURCE_SUFFIXES |
| 1616 | loader = importlib.machinery.SourceFileLoader |
| 1617 | lazy_loader = importlib.util.LazyLoader.factory(loader) |
Brett Cannon | 3bf1d87 | 2016-01-22 14:03:27 -0800 | [diff] [blame] | 1618 | finder = importlib.machinery.FileFinder(path, (lazy_loader, suffixes)) |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1619 | |
| 1620 | .. _importlib-examples: |
| 1621 | |
| 1622 | Examples |
| 1623 | -------- |
| 1624 | |
Brett Cannon | 2376316 | 2016-09-08 10:12:47 -0700 | [diff] [blame] | 1625 | Importing programmatically |
| 1626 | '''''''''''''''''''''''''' |
| 1627 | |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1628 | To programmatically import a module, use :func:`importlib.import_module`. |
| 1629 | :: |
| 1630 | |
| 1631 | import importlib |
| 1632 | |
| 1633 | itertools = importlib.import_module('itertools') |
| 1634 | |
Brett Cannon | 2376316 | 2016-09-08 10:12:47 -0700 | [diff] [blame] | 1635 | |
| 1636 | Checking if a module can be imported |
| 1637 | '''''''''''''''''''''''''''''''''''' |
| 1638 | |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1639 | If you need to find out if a module can be imported without actually doing the |
| 1640 | import, then you should use :func:`importlib.util.find_spec`. |
| 1641 | :: |
| 1642 | |
| 1643 | import importlib.util |
| 1644 | import sys |
| 1645 | |
| 1646 | # For illustrative purposes. |
| 1647 | name = 'itertools' |
| 1648 | |
Brett Cannon | 0827064 | 2019-07-12 15:35:34 -0700 | [diff] [blame] | 1649 | if name in sys.modules: |
| 1650 | print(f"{name!r} already in sys.modules") |
Tzu-ping Chung | 544fa15 | 2019-07-26 01:20:33 +0800 | [diff] [blame] | 1651 | elif (spec := importlib.util.find_spec(name)) is not None: |
Brett Cannon | 5936313 | 2016-03-18 11:54:22 -0700 | [diff] [blame] | 1652 | # If you chose to perform the actual import ... |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1653 | module = importlib.util.module_from_spec(spec) |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1654 | sys.modules[name] = module |
Brett Cannon | 0827064 | 2019-07-12 15:35:34 -0700 | [diff] [blame] | 1655 | spec.loader.exec_module(module) |
| 1656 | print(f"{name!r} has been imported") |
Tzu-ping Chung | 544fa15 | 2019-07-26 01:20:33 +0800 | [diff] [blame] | 1657 | else: |
| 1658 | print(f"can't find the {name!r} module") |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1659 | |
Brett Cannon | 2376316 | 2016-09-08 10:12:47 -0700 | [diff] [blame] | 1660 | |
| 1661 | Importing a source file directly |
| 1662 | '''''''''''''''''''''''''''''''' |
| 1663 | |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1664 | To import a Python source file directly, use the following recipe |
E Kawashima | 16c8a53 | 2018-11-06 07:41:17 +0900 | [diff] [blame] | 1665 | (Python 3.5 and newer only):: |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1666 | |
| 1667 | import importlib.util |
| 1668 | import sys |
| 1669 | |
| 1670 | # For illustrative purposes. |
| 1671 | import tokenize |
| 1672 | file_path = tokenize.__file__ |
| 1673 | module_name = tokenize.__name__ |
| 1674 | |
| 1675 | spec = importlib.util.spec_from_file_location(module_name, file_path) |
| 1676 | module = importlib.util.module_from_spec(spec) |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1677 | sys.modules[module_name] = module |
Brett Cannon | 0827064 | 2019-07-12 15:35:34 -0700 | [diff] [blame] | 1678 | spec.loader.exec_module(module) |
| 1679 | |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1680 | |
Brett Cannon | 2376316 | 2016-09-08 10:12:47 -0700 | [diff] [blame] | 1681 | |
| 1682 | Setting up an importer |
| 1683 | '''''''''''''''''''''' |
| 1684 | |
Brett Cannon | 5936313 | 2016-03-18 11:54:22 -0700 | [diff] [blame] | 1685 | For deep customizations of import, you typically want to implement an |
| 1686 | :term:`importer`. This means managing both the :term:`finder` and :term:`loader` |
| 1687 | side of things. For finders there are two flavours to choose from depending on |
| 1688 | your needs: a :term:`meta path finder` or a :term:`path entry finder`. The |
| 1689 | former is what you would put on :attr:`sys.meta_path` while the latter is what |
| 1690 | you create using a :term:`path entry hook` on :attr:`sys.path_hooks` which works |
| 1691 | with :attr:`sys.path` entries to potentially create a finder. This example will |
| 1692 | show you how to register your own importers so that import will use them (for |
| 1693 | creating an importer for yourself, read the documentation for the appropriate |
| 1694 | classes defined within this package):: |
| 1695 | |
| 1696 | import importlib.machinery |
| 1697 | import sys |
| 1698 | |
| 1699 | # For illustrative purposes only. |
| 1700 | SpamMetaPathFinder = importlib.machinery.PathFinder |
| 1701 | SpamPathEntryFinder = importlib.machinery.FileFinder |
| 1702 | loader_details = (importlib.machinery.SourceFileLoader, |
| 1703 | importlib.machinery.SOURCE_SUFFIXES) |
| 1704 | |
| 1705 | # Setting up a meta path finder. |
| 1706 | # Make sure to put the finder in the proper location in the list in terms of |
| 1707 | # priority. |
| 1708 | sys.meta_path.append(SpamMetaPathFinder) |
| 1709 | |
| 1710 | # Setting up a path entry finder. |
| 1711 | # Make sure to put the path hook in the proper location in the list in terms |
| 1712 | # of priority. |
| 1713 | sys.path_hooks.append(SpamPathEntryFinder.path_hook(loader_details)) |
| 1714 | |
Brett Cannon | 2376316 | 2016-09-08 10:12:47 -0700 | [diff] [blame] | 1715 | |
| 1716 | Approximating :func:`importlib.import_module` |
| 1717 | ''''''''''''''''''''''''''''''''''''''''''''' |
| 1718 | |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1719 | Import itself is implemented in Python code, making it possible to |
| 1720 | expose most of the import machinery through importlib. The following |
| 1721 | helps illustrate the various APIs that importlib exposes by providing an |
| 1722 | approximate implementation of |
Brett Cannon | 5936313 | 2016-03-18 11:54:22 -0700 | [diff] [blame] | 1723 | :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] | 1724 | Python 3.6 and newer for other parts of the code). |
| 1725 | :: |
| 1726 | |
| 1727 | import importlib.util |
| 1728 | import sys |
| 1729 | |
| 1730 | def import_module(name, package=None): |
| 1731 | """An approximate implementation of import.""" |
| 1732 | absolute_name = importlib.util.resolve_name(name, package) |
| 1733 | try: |
| 1734 | return sys.modules[absolute_name] |
| 1735 | except KeyError: |
| 1736 | pass |
| 1737 | |
| 1738 | path = None |
| 1739 | if '.' in absolute_name: |
| 1740 | parent_name, _, child_name = absolute_name.rpartition('.') |
| 1741 | parent_module = import_module(parent_name) |
orlnub123 | 78401f7 | 2018-10-25 02:32:26 +0300 | [diff] [blame] | 1742 | path = parent_module.__spec__.submodule_search_locations |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1743 | for finder in sys.meta_path: |
| 1744 | spec = finder.find_spec(absolute_name, path) |
| 1745 | if spec is not None: |
| 1746 | break |
| 1747 | else: |
Nick Coghlan | cee29b4 | 2019-01-17 20:41:29 +1000 | [diff] [blame] | 1748 | msg = f'No module named {absolute_name!r}' |
| 1749 | raise ModuleNotFoundError(msg, name=absolute_name) |
Brett Cannon | 86a8be0 | 2016-02-20 18:47:09 -0800 | [diff] [blame] | 1750 | module = importlib.util.module_from_spec(spec) |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1751 | sys.modules[absolute_name] = module |
Brett Cannon | 0827064 | 2019-07-12 15:35:34 -0700 | [diff] [blame] | 1752 | spec.loader.exec_module(module) |
Brett Cannon | a85e927 | 2016-01-08 14:33:09 -0800 | [diff] [blame] | 1753 | if path is not None: |
| 1754 | setattr(parent_module, child_name, module) |
| 1755 | return module |