TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/alex-ber/AlexBerUtils/llms.txt
Use this file to discover all available pages before exploring further.
importer module provides utilities for dynamically resolving Python constructs from their fully-qualified string names. It supports PEP 420 implicit namespace packages and is used internally by init_app_conf and stdlogging to allow class names to be supplied as configuration strings.
importer
Resolves a fully-qualified dotted string to the corresponding Python construct (class, function, module, etc.).Fully-qualified dotted name of the Python construct to resolve (e.g.
'alexber.utils.init_app_conf.AppConfParser').ImportError — if any component of the path cannot be imported. AttributeError — if a component exists in the module but cannot be retrieved.
Only compile-time constructs are supported. Instances are never returned; use
new_instance() to create instances.new_instance
Resolves a dotted string name and, if it refers to a class, instantiates it with the supplied arguments.Fully-qualified dotted name of the class (or other construct) to resolve.
Positional arguments forwarded to the class constructor (
__new__ / __init__).Keyword arguments forwarded to the class constructor.
