spenserblack / nested-attrs

Just some small helpers for nested attributes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

nested-attrs

PyPI 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!

About

Just some small helpers for nested attributes

License:MIT License


Languages

Language:Python 100.0%