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