nested-attrs

Just some small helpers for nested attributes


Keywords
attr, attrs, nested, delattr, getattr, hasattr, python, python3, setattr
License
MIT
Install
pip install nested-attrs==0.1.0

Documentation

nested-attrs

CI codecov

Just some small helpers for nested attributes.

Example

from nested_attrs import ngetattr as getattr
from nested_attrs import nsetattr as setattr

setattr(x, 'y.z', 'Hello, World!')
getattr(x, 'y.z') # 'Hello, World!