mode.utils.imports
Importing utilities.
FactoryMapping
Bases: FastUserDict, Generic[_T]
Class plugin system.
This is an utility to maintain a mapping from name to fully qualified Python attribute path, and also supporting the use of these in URLs.
>>> # Specifying the type enables mypy to know that
>>> # this factory returns Driver subclasses.
>>> drivers: FactoryMapping[Type[Driver]]
>>> drivers = FactoryMapping({
... 'rabbitmq': 'my.drivers.rabbitmq:Driver',
... 'kafka': 'my.drivers.kafka:Driver',
... 'redis': 'my.drivers.redis:Driver',
... })
>>> drivers.by_url('rabbitmq://localhost:9090')
<class 'my.drivers.rabbitmq.Driver'>
>>> drivers.by_name('redis')
<class 'my.drivers.redis.Driver'>
Source code in mode/utils/imports.py
68 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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | |
by_url(url)
Get class associated with URL (scheme is used as alias key).
Source code in mode/utils/imports.py
106 107 108 109 | |
ParsedSymbol
Bases: NamedTuple
Tuple returned by parse_symbol.
Source code in mode/utils/imports.py
157 158 159 160 161 | |
cwd_in_path()
Context adding the current working directory to sys.path.
Source code in mode/utils/imports.py
392 393 394 395 396 397 398 399 400 401 402 403 404 | |
import_from_cwd(module, *, imp=None, package=None)
Import module, temporarily including modules in the current directory.
Modules located in the current directory has
precedence over modules located in sys.path.
Source code in mode/utils/imports.py
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 | |
load_extension_class_names(namespace)
Get setuptools entrypoint extension class names.
If the entrypoint is defined in setup.py as:
entry_points={
'faust.codecs': [
'msgpack = faust_msgpack:msgpack',
],
Iterating over the 'faust.codecs' namespace will yield the name:
>>> list(load_extension_class_names('faust.codecs'))
[('msgpack', 'faust_msgpack:msgpack')]
Source code in mode/utils/imports.py
356 357 358 359 360 361 362 363 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 | |
load_extension_classes(namespace)
Yield extension classes for setuptools entrypoint namespace.
If an entrypoint is defined in setup.py:
entry_points={
'faust.codecs': [
'msgpack = faust_msgpack:msgpack',
],
Iterating over the 'faust.codecs' namespace will yield
the actual attributes specified in the path (faust_msgpack:msgpack):
from faust_msgpack import msgpack
attrs = list(load_extension_classes('faust.codecs'))
assert msgpack in attrs
Source code in mode/utils/imports.py
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 | |
parse_symbol(s, *, package=None, strict_separator=':', relative_separator='.')
Parse symbol_by_name argument into components.
Returns:
| Name | Type | Description |
|---|---|---|
ParsedSymbol |
ParsedSymbol
|
Tuple of |
Raises:
| Type | Description |
|---|---|
ValueError
|
if relative import (arg starts with '.') and
no |
Examples:
>>> parse_symbol('mode.services')
ParsedSymbol(module_name='mode.services', attribute_name=None)
>>> parse_symbol('.services', package='mode')
ParsedSymbol(module_name='.services', attribute_name=None)
>>> parse_symbol('mode.services.Service')
ParsedSymbol(module_name='mode.services', attribute_name='Service')
>>> parse_symbol('mode.services:Service')
ParsedSymbol(module_name='mode.services', attribute_name='Service')
Source code in mode/utils/imports.py
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 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 215 216 217 218 219 220 221 222 223 224 225 226 227 | |
smart_import(path, imp=None)
Import module if module, otherwise same as symbol_by_name.
Source code in mode/utils/imports.py
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 | |
symbol_by_name(name, aliases=None, imp=None, package=None, sep='.', default=None, **kwargs)
Get symbol by qualified name.
The name should be the full dot-separated path to the class:
modulename.ClassName
Example:
mazecache.backends.redis.RedisBackend
^- class name
or using ':' to separate module and symbol:
mazecache.backends.redis:RedisBackend
If aliases is provided, a dict containing short name/long name
mappings, the name is looked up in the aliases first.
Examples:
>>> symbol_by_name('mazecache.backends.redis:RedisBackend')
<class 'mazecache.backends.redis.RedisBackend'>
>>> symbol_by_name('default', {
... 'default': 'mazecache.backends.redis:RedisBackend'})
<class 'mazecache.backends.redis.RedisBackend'>
# Does not try to look up non-string names.
>>> from mazecache.backends.redis import RedisBackend
>>> symbol_by_name(RedisBackend) is RedisBackend
True
Source code in mode/utils/imports.py
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 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 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 | |