dissect.target.helpers.lazy

Module Contents

Classes

Functions

class dissect.target.helpers.lazy.LazyImport(module_name: str)
__repr__() str
__getattr__(attr: str) LazyAttr
class dissect.target.helpers.lazy.FailedImport(module: LazyImport, exc: Exception)
__getattr__(attr: str) None
__call__(*args, **kwargs) None
class dissect.target.helpers.lazy.LazyAttr(module: LazyImport, attr: str)
__repr__() str
property __doc__: str
__getattr__(attr: str) Any
__call__(*args, **kwargs) Any
dissect.target.helpers.lazy.import_lazy(module_name: str) LazyImport