Known limitations
- Attempting to retrieve a name which is also a Node property will not work as intended (ex:
) when doing so explicitly (values_valuesNode.
), but using thevalues_valuesget
method will yield the desired result. For example, if you have a data point/key with a sub-attribute ofvalues,_values, runningNode.
will work as described here rather than returning that sub-attribute. However, runningvalues_valuesNode.get('
will work as intended.values'_values')
In code, this looks like:
x = Node()
x.values_values = 1
x.values_values
Output: ['values']
x.get('values'_values')
Output: <pyntree.Node object at memory_location>