prefect.utilities.importtools
¶
AliasedModuleDefinition
¶
Bases: NamedTuple
A definition for the AliasedModuleFinder
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
alias |
The import name to create |
required | |
real |
The import name of the module to reference for the alias |
required | |
callback |
A function to call when the alias module is loaded |
required |
Source code in src/prefect/utilities/importtools.py
295 296 297 298 299 300 301 302 303 304 305 306 307 |
|
AliasedModuleFinder
¶
Bases: MetaPathFinder
Source code in src/prefect/utilities/importtools.py
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 |
|
find_spec
¶
The fullname is the imported path, e.g. "foo.bar". If there is an alias "phi" for "foo" then on import of "phi.bar" we will find the spec for "foo.bar" and create a new spec for "phi.bar" that points to "foo.bar".
Source code in src/prefect/utilities/importtools.py
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 |
|
DelayedImportErrorModule
¶
Bases: ModuleType
A fake module returned by lazy_import
when the module cannot be found. When any
of the module's attributes are accessed, we will throw a ModuleNotFoundError
.
Adapted from lazy_loader
Source code in src/prefect/utilities/importtools.py
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 |
|
from_qualified_name
¶
Import an object given a fully-qualified name.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
The fully-qualified name of the object to import. |
required |
Returns:
Type | Description |
---|---|
Any
|
the imported object |
Examples:
>>> obj = from_qualified_name("random.randint")
>>> import random
>>> obj == random.randint
True
Source code in src/prefect/utilities/importtools.py
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
|
import_object
¶
Load an object from an import path.
Import paths can be formatted as one of: - module.object - module:object - /path/to/script.py:object
This function is not thread safe as it modifies the 'sys' module during execution.
Source code in src/prefect/utilities/importtools.py
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
|
lazy_import
¶
Create a lazily-imported module to use in place of the module of the given name. Use this to retain module-level imports for libraries that we don't want to actually import until they are needed.
Adapted from the Python documentation and lazy_loader
Source code in src/prefect/utilities/importtools.py
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 |
|
load_module
¶
Import a module with support for relative imports within the module.
Source code in src/prefect/utilities/importtools.py
173 174 175 176 177 178 179 180 181 182 183 184 185 |
|
load_script_as_module
¶
Execute a script at the given path.
Sets the module name to __prefect_loader__
.
If an exception occurs during execution of the script, a
prefect.exceptions.ScriptError
is created to wrap the exception and raised.
During the duration of this function call, sys
is modified to support loading.
These changes are reverted after completion, but this function is not thread safe
and use of it in threaded contexts may result in undesirable behavior.
See https://docs.python.org/3/library/importlib.html#importing-a-source-file-directly
Source code in src/prefect/utilities/importtools.py
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
|
objects_from_script
¶
Run a python script and return all the global variables
Supports remote paths by copying to a local temporary file.
WARNING: The Python documentation does not recommend using runpy for this pattern.
Furthermore, any functions and classes defined by the executed code are not guaranteed to work correctly after a runpy function has returned. If that limitation is not acceptable for a given use case, importlib is likely to be a more suitable choice than this module.
The function load_script_as_module
uses importlib instead and should be used
instead for loading objects from scripts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path |
str
|
The path to the script to run |
required |
text |
Union[str, bytes]
|
Optionally, the text of the script. Skips loading the contents if given. |
None
|
Returns:
Type | Description |
---|---|
Dict[str, Any]
|
A dictionary mapping variable name to value |
Raises:
Type | Description |
---|---|
ScriptError
|
if the script raises an exception during execution |
Source code in src/prefect/utilities/importtools.py
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
|
to_qualified_name
¶
Given an object, returns its fully-qualified name: a string that represents its Python import path.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
obj |
Any
|
an importable Python object |
required |
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
the qualified name |
Source code in src/prefect/utilities/importtools.py
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
|