Skip to main content

Known limitations

  • Attempting to retrieve a name which is also a Node property will not work as intended (ex: values_values) when doing so explicitly (Node.values_values), but using the get method will yield the desired result. For example, if you have a data point/key with a sub-attribute of values,_values, running Node.values_values will work as described here rather than returning that sub-attribute. However, running Node.get('values'_values') will work as intended.
    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>