Skip to content

edsnlp.utils.extensions

rgetattr(obj, attr, *args)

Get attribute recursively

PARAMETER DESCRIPTION
obj

An object

TYPE: Any

attr

The name of the attribute to get. Can contain dots.

TYPE: str

Source code in edsnlp/utils/extensions.py
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
def rgetattr(obj: Any, attr: str, *args: List[Any]) -> Any:
    """
    Get attribute recursively

    Parameters
    ----------
    obj : Any
        An object
    attr : str
        The name of the attribute to get. Can contain dots.
    """

    def _getattr(obj, attr):
        return None if obj is None else getattr(obj, attr, *args)

    return functools.reduce(_getattr, [obj] + attr.split("."))