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
298 299 300 301 302 303 304 305 306 307 308 309 310 |
|
AliasedModuleFinder
Bases: MetaPathFinder
Source code in src/prefect/utilities/importtools.py
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 341 342 343 |
|
__init__(aliases)
See AliasedModuleDefinition
for alias specification.
Aliases apply to all modules nested within an alias.
Source code in src/prefect/utilities/importtools.py
314 315 316 317 318 319 320 |
|
find_spec(fullname, path=None, target=None)
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
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 |
|
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
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
|
from_qualified_name(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
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 67 68 69 70 |
|
import_object(import_path)
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
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
|
lazy_import(name, error_on_import=False, help_message='')
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.
NOTE: Lazy-loading a subpackage can cause the subpackage to be imported
twice if another non-lazy import also imports the subpackage. For example,
using both lazy_import("docker.errors")
and import docker.errors
in the
same codebase will import docker.errors
twice and can lead to unexpected
behavior, e.g. type check failures and import-time side effects running
twice.
Adapted from the Python documentation and lazy_loader
Source code in src/prefect/utilities/importtools.py
245 246 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 293 294 295 |
|
load_module(module_name)
Import a module with support for relative imports within the module.
Source code in src/prefect/utilities/importtools.py
177 178 179 180 181 182 183 184 185 186 187 188 189 |
|
load_script_as_module(path)
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
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 171 172 173 174 |
|
objects_from_script(path, text=None)
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
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 124 125 126 127 |
|
safe_load_namespace(source_code, filepath=None)
Safely load a namespace from source code, optionally handling relative imports.
If a filepath
is provided, sys.path
is modified to support relative imports.
Changes to sys.path
are reverted after completion, but this function is not thread safe
and use of it in threaded contexts may result in undesirable behavior.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
source_code
|
str
|
The source code to load |
required |
filepath
|
Optional[str]
|
Optional file path of the source code. If provided, enables relative imports. |
None
|
Returns:
Type | Description |
---|---|
Dict[str, Any]
|
The namespace loaded from the source code. |
Source code in src/prefect/utilities/importtools.py
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 |
|
to_qualified_name(obj)
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
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
|