Skip to main content

Getting nodes

Syntax:

Node.get(*children)

There are two ways to retrieve a child Node:

root_node.get('child')
root_node.child

You can also retrieve deeper nodes like so:

root_node.a.b.c
root_node.get('a').b.get('c')

Notice that it doesn't particularly matter whether you use the .get() method or simply access the Node as an attribute.

Remember, getting a node means accessing the child node object - to get the value, see Getting values.